From 14f2653119690f3fa8728bab1cb70a9f80642cd9 Mon Sep 17 00:00:00 2001 From: acanas Date: Thu, 14 Mar 2024 20:46:27 +0100 Subject: [PATCH] Version 23.68: Mar 14, 2024 New order in list of actions. --- .settings/language.settings.xml | 2 +- swad_ID.c | 2 +- swad_action.c | 4 +- swad_action.h | 21 +- swad_action_list.c | 3271 +++++---- swad_action_list.h | 3206 +++++---- swad_browser.c | 2 +- swad_browser.h | 2 +- swad_changelog.h | 3 +- swad_country.c | 2 +- swad_error.c | 2 +- swad_form.c | 4 +- swad_global.c | 2 +- swad_hierarchy.c | 2 +- swad_hierarchy.h | 2 +- swad_layout.c | 16 +- swad_log.c | 2 +- swad_main.c | 12 +- swad_menu.c | 138 +- swad_menu.h | 2 + swad_parameter.c | 4 +- swad_photo.c | 12 +- swad_record.c | 4 +- swad_statistic.c | 4 +- swad_text_action.c | 11536 +++++++++++++++--------------- swad_user.c | 2 +- 26 files changed, 9157 insertions(+), 9102 deletions(-) diff --git a/.settings/language.settings.xml b/.settings/language.settings.xml index e341e836..0cc70ddb 100644 --- a/.settings/language.settings.xml +++ b/.settings/language.settings.xml @@ -5,7 +5,7 @@ - + diff --git a/swad_ID.c b/swad_ID.c index 30cfbd06..c86e83b7 100644 --- a/swad_ID.c +++ b/swad_ID.c @@ -312,7 +312,7 @@ void ID_WriteUsrIDs (struct Usr_Data *UsrDat,const char *Anchor) bool ICanConfirmUsrID = ICanSeeUsrID && Usr_ItsMe (UsrDat->UsrCod) == Usr_OTHER && // Not me !Frm_CheckIfInside () && // Not inside another form - Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB; // Only in main browser tab + Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB; // Only in main browser tab for (NumID = 0; NumID < UsrDat->IDs.Num; diff --git a/swad_action.c b/swad_action.c index b7a7148b..5f395143 100644 --- a/swad_action.c +++ b/swad_action.c @@ -153,7 +153,7 @@ Act_Content_t Act_GetContentType (Act_Action_t Action) Act_BrowserTab_t Act_GetBrowserTab (Act_Action_t Action) { if (Action < 0 || Action >= ActLst_NUM_ACTIONS) - return Act_BRW_UNK_TAB; + return Act_UNK_TAB; return ActLst_Actions[Action].BrowserTab; } @@ -191,7 +191,7 @@ const char *Act_GetIcon (Act_Action_t Action) if (Action < 0 || Action >= ActLst_NUM_ACTIONS) return NULL; - return Ico_GetIcon (ActLst_Actions[Action].Icon); + return Ico_GetIcon (Mnu_GetIcon (Action)); } /*****************************************************************************/ diff --git a/swad_action.h b/swad_action.h index 02502b97..7aa5a83a 100644 --- a/swad_action.h +++ b/swad_action.h @@ -57,16 +57,16 @@ typedef enum typedef enum { - Act_BRW_UNK_TAB, // Unknown tab - Act_BRW_1ST_TAB, // The main (original, first) tab in the browser - Act_BRW_NEW_TAB, // A new (second) blank tab in the browser - Act_BRW_2ND_TAB, // The second tab in the browser - Act_AJAX_NORMAL, // Update a zone of the page using AJAX - Act_AJAX_RFRESH, // Update a zone of the page using AJAX, with auto-refresh - Act_UPLOAD_FILE, // Upload a file. Do not write HTML content. Write Status code instead for Dropzone.js - Act_DOWNLD_FILE, // Download a file in a new tab. Do not write HTML content. - Act_204_NO_CONT, // Do not write HTML content. HTTP will return Status 204 No Content - Act_WEB_SERVICE, // Web service. Send output to client using SOAP. + Act_UNK_TAB, // Unknown tab + Act_1ST_TAB, // The main (original, first) tab in the browser + Act_NEW_TAB, // A new (second) blank tab in the browser + Act_2ND_TAB, // The second tab in the browser + Act_AJAX_NR, // Update a zone of the page using AJAX + Act_AJAX_RF, // Update a zone of the page using AJAX, with auto-refresh + Act_UPL_FIL, // Upload a file. Do not write HTML content. Write Status code instead for Dropzone.js + Act_DWN_FIL, // Download a file in a new tab. Do not write HTML content. + Act_204_NOC, // Do not write HTML content. HTTP will return Status 204 No Content + Act_WEB_SVC, // Web service. Send output to client using SOAP. } Act_BrowserTab_t; typedef signed int Act_Action_t; // Must be a signed type, because -1 is used to indicate obsolete action @@ -88,7 +88,6 @@ struct Act_Actions Act_BrowserTab_t BrowserTab; void (*FunctionPriori) (); void (*FunctionPosteriori) (); - const char *Icon; }; /*****************************************************************************/ diff --git a/swad_action_list.c b/swad_action_list.c index 832f3b26..939f1e50 100644 --- a/swad_action_list.c +++ b/swad_action_list.c @@ -127,1771 +127,1706 @@ const struct Act_Actions ActLst_Actions[ActLst_NUM_ACTIONS] = { // TabUnk ****************************************************************** // Actions not in menu: - [ActAll ] = { 645,-1,TabUnk,ActAll ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,NULL ,NULL}, // Used for statistics - [ActUnk ] = { 194,-1,TabUnk,ActUnk ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,NULL ,NULL}, - [ActMnu ] = { 2,-1,TabUnk,ActMnu ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,NULL ,NULL}, - [ActRefCon ] = { 845,-1,TabUnk,ActRefCon ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_AJAX_RFRESH,NULL ,Lay_RefreshNotifsAndConnected ,NULL}, - [ActWebSvc ] = { 892,-1,TabUnk,ActWebSvc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_WEB_SERVICE,NULL ,API_WebService ,NULL}, + [ActAll ] = { 645,-1,TabUnk,ActAll ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,NULL }, // Used for statistics + [ActUnk ] = { 194,-1,TabUnk,ActUnk ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,NULL }, + [ActMnu ] = { 2,-1,TabUnk,ActMnu ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,NULL }, + [ActRefCon ] = { 845,-1,TabUnk,ActRefCon ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_AJAX_RF,NULL ,Lay_RefreshNotifsAndConnected }, + [ActWebSvc ] = { 892,-1,TabUnk,ActWebSvc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_WEB_SVC,NULL ,API_WebService }, // TabStr ****************************************************************** - [ActFrmLogIn ] = {1521, 0,TabStr,ActFrmLogIn , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_WriteLandingPage ,"power-off" }, - [ActReqSch ] = { 627, 1,TabStr,ActReqSch ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Sch_ReqSysSearch ,"search" }, - [ActSeeGblTL ] = {1490, 2,TabStr,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,TmlWho_GetParWho ,Tml_ShowTimelineGbl ,"comment-dots" }, - [ActSeeSocPrf ] = {1520, 3,TabStr,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prf_SeeSocialProfiles ,"user-circle" }, - [ActSeeCal ] = {1622, 4,TabStr,ActSeeCal ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cal_ShowCalendar ,"calendar" }, - [ActSeeNtf ] = { 990, 5,TabStr,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ntf_ShowMyNotifications ,"bell" }, + // Log in + [ActFrmLogIn ] = {1521, 0,TabStr,ActFrmLogIn , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_WriteLandingPage }, + [ActLogIn ] = { 6,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_WelcomeUsr }, + [ActLogInNew ] = {1585,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_WelcomeUsr }, + [ActLogInLan ] = {1077,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_WelcomeUsr }, + [ActAnnSee ] = {1234,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ann_MarkAnnouncementAsSeen }, + [ActReqSndNewPwd ] = { 665,-1,TabUnk,ActFrmLogIn , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pwd_ShowFormSendNewPwd }, + [ActSndNewPwd ] = { 633,-1,TabUnk,ActFrmLogIn , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pwd_ChkIdLoginAndSendNewPwd }, + [ActLogOut ] = { 10,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Ses_CloseSession ,Usr_Logout }, - [ActLogIn ] = { 6,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_WelcomeUsr ,NULL}, - [ActLogInNew ] = {1585,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_WelcomeUsr ,NULL}, - [ActLogInLan ] = {1077,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_WelcomeUsr ,NULL}, - [ActAnnSee ] = {1234,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_MarkAnnouncementAsSeen ,NULL}, - [ActReqSndNewPwd ] = { 665,-1,TabUnk,ActFrmLogIn , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pwd_ShowFormSendNewPwd ,NULL}, - [ActSndNewPwd ] = { 633,-1,TabUnk,ActFrmLogIn , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pwd_ChkIdLoginAndSendNewPwd ,NULL}, - [ActLogOut ] = { 10,-1,TabUnk,ActFrmLogIn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Ses_CloseSession ,Usr_Logout ,NULL}, + // Search + [ActReqSch ] = { 627, 1,TabStr,ActReqSch ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Sch_ReqSysSearch }, + [ActSch ] = { 628,-1,TabUnk,ActReqSch ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Sch_GetParsSearch ,Sch_SysSearch }, - [ActSch ] = { 628,-1,TabUnk,ActReqSch ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Sch_GetParsSearch ,Sch_SysSearch ,NULL}, + // Timeline + [ActSeeGblTL ] = {1490, 2,TabStr,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,TmlWho_GetParWho ,Tml_ShowTimelineGbl }, + [ActRefNewPubGblTL ] = {1509,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_AJAX_RF,TmlWho_GetParWho ,Tml_RefreshNewTimelineGbl }, + [ActRefOldPubGblTL ] = {1510,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,TmlWho_GetParWho ,Tml_RefreshOldTimelineGbl }, + [ActRcvPstGblTL ] = {1492,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,TmlWho_GetParWho ,TmlPst_ReceivePostGbl }, + [ActRcvComGblTL ] = {1503,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,TmlWho_GetParWho ,TmlCom_ReceiveCommGbl }, + [ActShoHidComGblTL ] = {1806,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlCom_ShowHiddenCommsGbl }, + [ActAllShaNotGblTL ] = {1766,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlSha_ShowAllSharersNoteGbl }, + [ActAllFavNotGblTL ] = {1767,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_ShowAllFaversNoteGbl }, + [ActAllFavComGblTL ] = {1768,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_ShowAllFaversComGbl }, + [ActShaNotGblTL ] = {1495,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlSha_ShaNoteGbl }, + [ActUnsNotGblTL ] = {1496,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlSha_UnsNoteGbl }, + [ActFavNotGblTL ] = {1512,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_FavNoteGbl }, + [ActUnfNotGblTL ] = {1513,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_UnfNoteGbl }, + [ActFavComGblTL ] = {1516,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_FavCommGbl }, + [ActUnfComGblTL ] = {1517,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_UnfCommGbl }, + [ActReqRemPubGblTL ] = {1494,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,TmlWho_GetParWho ,TmlNot_ReqRemNoteGbl }, + [ActRemPubGblTL ] = {1493,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,TmlWho_GetParWho ,TmlNot_RemoveNoteGbl }, + [ActReqRemComGblTL ] = {1505,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,TmlWho_GetParWho ,TmlCom_ReqRemComGbl }, + [ActRemComGblTL ] = {1507,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,TmlWho_GetParWho ,TmlCom_RemoveComGbl }, - [ActRefNewPubGblTL ] = {1509,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_AJAX_RFRESH,TmlWho_GetParWho ,Tml_RefreshNewTimelineGbl ,NULL}, - [ActRefOldPubGblTL ] = {1510,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,TmlWho_GetParWho ,Tml_RefreshOldTimelineGbl ,NULL}, - [ActRcvPstGblTL ] = {1492,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,TmlWho_GetParWho ,TmlPst_ReceivePostGbl ,NULL}, - [ActRcvComGblTL ] = {1503,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,TmlWho_GetParWho ,TmlCom_ReceiveCommGbl ,NULL}, - [ActShoHidComGblTL ] = {1806,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlCom_ShowHiddenCommsGbl ,NULL}, - [ActAllShaNotGblTL ] = {1766,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlSha_ShowAllSharersNoteGbl ,NULL}, - [ActAllFavNotGblTL ] = {1767,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_ShowAllFaversNoteGbl ,NULL}, - [ActAllFavComGblTL ] = {1768,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_ShowAllFaversComGbl ,NULL}, - [ActShaNotGblTL ] = {1495,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlSha_ShaNoteGbl ,NULL}, - [ActUnsNotGblTL ] = {1496,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlSha_UnsNoteGbl ,NULL}, - [ActFavNotGblTL ] = {1512,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_FavNoteGbl ,NULL}, - [ActUnfNotGblTL ] = {1513,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_UnfNoteGbl ,NULL}, - [ActFavComGblTL ] = {1516,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_FavCommGbl ,NULL}, - [ActUnfComGblTL ] = {1517,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_UnfCommGbl ,NULL}, - [ActReqRemPubGblTL ] = {1494,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,TmlWho_GetParWho ,TmlNot_ReqRemNoteGbl ,NULL}, - [ActRemPubGblTL ] = {1493,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,TmlWho_GetParWho ,TmlNot_RemoveNoteGbl ,NULL}, - [ActReqRemComGblTL ] = {1505,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,TmlWho_GetParWho ,TmlCom_ReqRemComGbl ,NULL}, - [ActRemComGblTL ] = {1507,-1,TabUnk,ActSeeGblTL ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,TmlWho_GetParWho ,TmlCom_RemoveComGbl ,NULL}, + // Profiles + [ActSeeSocPrf ] = {1520, 3,TabStr,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prf_SeeSocialProfiles }, + [ActReqOthPubPrf ] = {1401,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prf_ReqUserProfile }, + [ActRefOldPubUsrTL ] = {1511,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,Tml_RefreshOldTimelineUsr }, + [ActRcvPstUsrTL ] = {1498,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,TmlPst_ReceivePostUsr }, + [ActRcvComUsrTL ] = {1504,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,TmlCom_ReceiveCommUsr }, + [ActShoHidComUsrTL ] = {1807,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlCom_ShowHiddenCommsUsr }, + [ActAllShaNotUsrTL ] = {1769,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlSha_ShowAllSharersNoteUsr }, + [ActAllFavNotUsrTL ] = {1770,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_ShowAllFaversNoteUsr }, + [ActAllFavComUsrTL ] = {1771,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_ShowAllFaversComUsr }, + [ActShaNotUsrTL ] = {1499,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlSha_ShaNoteUsr }, + [ActUnsNotUsrTL ] = {1500,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlSha_UnsNoteUsr }, + [ActFavNotUsrTL ] = {1514,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_FavNoteUsr }, + [ActUnfNotUsrTL ] = {1515,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_UnfNoteUsr }, + [ActFavComUsrTL ] = {1518,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_FavCommUsr }, + [ActUnfComUsrTL ] = {1519,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NR,NULL ,TmlFav_UnfCommUsr }, + [ActReqRemPubUsrTL ] = {1501,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,TmlNot_ReqRemNoteUsr }, + [ActRemPubUsrTL ] = {1502,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,TmlNot_RemoveNoteUsr }, + [ActReqRemComUsrTL ] = {1506,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,TmlCom_ReqRemComUsr }, + [ActRemComUsrTL ] = {1508,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,TmlCom_RemoveComUsr }, + [ActSeeOthPubPrf ] = {1402,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prf_GetUsrDatAndShowUserProfile}, + [ActCalFig ] = {1405,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prf_CalculateFigures }, + [ActFolUsr ] = {1410,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Fol_FollowUsr1 ,Fol_FollowUsr2 }, + [ActUnfUsr ] = {1411,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Fol_UnfollowUsr1 ,Fol_UnfollowUsr2 }, + [ActSeeFlg ] = {1412,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_ListFollowing }, + [ActSeeFlr ] = {1413,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_ListFollowers }, + [ActSeeUsrAgd ] = {1611,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ShowUsrAgenda }, - [ActReqOthPubPrf ] = {1401,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prf_ReqUserProfile ,NULL}, + // Calendar + [ActSeeCal ] = {1622, 4,TabStr,ActSeeCal ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cal_ShowCalendar }, + [ActPrnCal ] = {1623,-1,TabUnk,ActSeeCal ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_NEW_TAB,NULL ,Cal_PrintCalendar }, + [ActChgCal1stDay ] = {1624,-1,TabUnk,ActSeeCal ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Cal_ShowCalendar }, - [ActRefOldPubUsrTL ] = {1511,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,Tml_RefreshOldTimelineUsr ,NULL}, - [ActRcvPstUsrTL ] = {1498,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,TmlPst_ReceivePostUsr ,NULL}, - [ActRcvComUsrTL ] = {1504,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,TmlCom_ReceiveCommUsr ,NULL}, - [ActShoHidComUsrTL ] = {1807,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlCom_ShowHiddenCommsUsr ,NULL}, - [ActAllShaNotUsrTL ] = {1769,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlSha_ShowAllSharersNoteUsr ,NULL}, - [ActAllFavNotUsrTL ] = {1770,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_ShowAllFaversNoteUsr ,NULL}, - [ActAllFavComUsrTL ] = {1771,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_ShowAllFaversComUsr ,NULL}, - [ActShaNotUsrTL ] = {1499,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlSha_ShaNoteUsr ,NULL}, - [ActUnsNotUsrTL ] = {1500,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlSha_UnsNoteUsr ,NULL}, - [ActFavNotUsrTL ] = {1514,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_FavNoteUsr ,NULL}, - [ActUnfNotUsrTL ] = {1515,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_UnfNoteUsr ,NULL}, - [ActFavComUsrTL ] = {1518,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_FavCommUsr ,NULL}, - [ActUnfComUsrTL ] = {1519,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,TmlFav_UnfCommUsr ,NULL}, - [ActReqRemPubUsrTL ] = {1501,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TmlNot_ReqRemNoteUsr ,NULL}, - [ActRemPubUsrTL ] = {1502,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TmlNot_RemoveNoteUsr ,NULL}, - [ActReqRemComUsrTL ] = {1506,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TmlCom_ReqRemComUsr ,NULL}, - [ActRemComUsrTL ] = {1508,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TmlCom_RemoveComUsr ,NULL}, - - [ActSeeOthPubPrf ] = {1402,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prf_GetUsrDatAndShowUserProfile,NULL}, - [ActCalFig ] = {1405,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prf_CalculateFigures ,NULL}, - - [ActFolUsr ] = {1410,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Fol_FollowUsr1 ,Fol_FollowUsr2 ,NULL}, - [ActUnfUsr ] = {1411,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Fol_UnfollowUsr1 ,Fol_UnfollowUsr2 ,NULL}, - [ActSeeFlg ] = {1412,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_ListFollowing ,NULL}, - [ActSeeFlr ] = {1413,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_ListFollowers ,NULL}, - - [ActSeeUsrAgd ] = {1611,-1,TabUnk,ActSeeSocPrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ShowUsrAgenda ,NULL}, - - [ActPrnCal ] = {1623,-1,TabUnk,ActSeeCal ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Cal_PrintCalendar ,NULL}, - [ActChgCal1stDay ] = {1624,-1,TabUnk,ActSeeCal ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Cal_ShowCalendar ,NULL}, - - [ActSeeNewNtf ] = { 991,-1,TabUnk,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ntf_ShowMyNotifications ,NULL}, - [ActMrkNtfSee ] = {1146,-1,TabUnk,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ntf_MarkAllNotifAsSeen ,NULL}, - - [ActSeeMai ] = { 855,-1,TabUnk,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_SeeMailDomains ,NULL}, - [ActEdiMai ] = { 856,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_EditMailDomains ,NULL}, - [ActNewMai ] = { 857,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Mai_ReceiveFormNewMailDomain ,Mai_ContEditAfterChgMai ,NULL}, - [ActRemMai ] = { 860,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Mai_RemoveMailDomain ,Mai_ContEditAfterChgMai ,NULL}, - [ActRenMaiSho ] = { 858,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Mai_RenameMailDomainShort ,Mai_ContEditAfterChgMai ,NULL}, - [ActRenMaiFul ] = { 859,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Mai_RenameMailDomainFull ,Mai_ContEditAfterChgMai ,NULL}, + // Notifications + [ActSeeNtf ] = { 990, 5,TabStr,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ntf_ShowMyNotifications }, + [ActSeeNewNtf ] = { 991,-1,TabUnk,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ntf_ShowMyNotifications }, + [ActMrkNtfSee ] = {1146,-1,TabUnk,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ntf_MarkAllNotifAsSeen }, + [ActSeeMai ] = { 855,-1,TabUnk,ActSeeNtf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_SeeMailDomains }, + [ActEdiMai ] = { 856,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_EditMailDomains }, + [ActNewMai ] = { 857,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Mai_ReceiveFormNewMailDomain,Mai_ContEditAfterChgMai }, + [ActRemMai ] = { 860,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Mai_RemoveMailDomain ,Mai_ContEditAfterChgMai }, + [ActRenMaiSho ] = { 858,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Mai_RenameMailDomainShort ,Mai_ContEditAfterChgMai }, + [ActRenMaiFul ] = { 859,-1,TabUnk,ActSeeNtf ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Mai_RenameMailDomainFull ,Mai_ContEditAfterChgMai }, // TabSys ****************************************************************** - // Actions in menu: - [ActSeeSysInf ] = {1818, 0,TabSys,ActSeeSysInf , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,SysCfg_ShowConfiguration ,"info" }, - [ActSeeCty ] = { 862, 1,TabSys,ActSeeCty , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Cty_ListCountries1 ,Cty_ListCountries2 ,"globe-americas" }, - [ActSeePen ] = {1060, 2,TabSys,ActSeePen , 0, 0, 0, 0, 0, 0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Hie_SeePending ,"sitemap" }, - [ActSeeLnk ] = { 748, 3,TabSys,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Lnk_SeeLinks ,"up-right-from-square" }, - [ActSeePlg ] = { 777, 4,TabSys,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Plg_ListPlugins ,"puzzle-piece" }, - [ActMtn ] = {1820, 5,TabSys,ActMtn , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mtn_Maintenance ,"tools" }, + // System info + [ActSeeSysInf ] = {1818, 0,TabSys,ActSeeSysInf , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,SysCfg_ShowConfiguration }, + [ActPrnSysInf ] = {1819,-1,TabUnk,ActSeeSysInf , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_NEW_TAB,NULL ,SysCfg_PrintConfiguration }, - // Actions not in menu: - [ActPrnSysInf ] = {1819,-1,TabUnk,ActSeeSysInf , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,SysCfg_PrintConfiguration ,NULL}, + // Countries + [ActSeeCty ] = { 862, 1,TabSys,ActSeeCty , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Cty_ListCountries1 ,Cty_ListCountries2 }, + [ActEdiCty ] = { 863,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cty_EditCountries }, + [ActNewCty ] = { 864,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Cty_ReceiveFormNewCountry ,Cty_ContEditAfterChgCty }, + [ActRemCty ] = { 893,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Cty_RemoveCountry ,Cty_ContEditAfterChgCty }, + [ActRenCty ] = { 866,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Cty_RenameCountry ,Cty_ContEditAfterChgCty }, + [ActChgCtyWWW ] = {1157,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Cty_ChangeCtyWWW ,Cty_ContEditAfterChgCty }, - [ActEdiCty ] = { 863,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cty_EditCountries ,NULL}, - [ActNewCty ] = { 864,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Cty_ReceiveFormNewCountry ,Cty_ContEditAfterChgCty ,NULL}, - [ActRemCty ] = { 893,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Cty_RemoveCountry ,Cty_ContEditAfterChgCty ,NULL}, - [ActRenCty ] = { 866,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Cty_RenameCountry ,Cty_ContEditAfterChgCty ,NULL}, - [ActChgCtyWWW ] = {1157,-1,TabUnk,ActSeeCty , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Cty_ChangeCtyWWW ,Cty_ContEditAfterChgCty ,NULL}, + // Pending + [ActSeePen ] = {1060, 2,TabSys,ActSeePen , 0, 0, 0, 0, 0, 0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Hie_SeePending }, - [ActSeeBan ] = {1137,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x3FF,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ban_ShowAllBanners ,NULL}, - [ActEdiBan ] = {1138,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ban_EditBanners ,NULL}, - [ActNewBan ] = {1139,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_ReceiveFormNewBanner ,Ban_ContEditAfterChgBan ,NULL}, - [ActRemBan ] = {1140,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_RemoveBanner ,Ban_ContEditAfterChgBan ,NULL}, - [ActUnhBan ] = {1212,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_UnhideBanner ,Ban_ContEditAfterChgBan ,NULL}, - [ActHidBan ] = {1213,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_HideBanner ,Ban_ContEditAfterChgBan ,NULL}, - [ActRenBanSho ] = {1141,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_RenameBannerShort ,Ban_ContEditAfterChgBan ,NULL}, - [ActRenBanFul ] = {1142,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_RenameBannerFull ,Ban_ContEditAfterChgBan ,NULL}, - [ActChgBanImg ] = {1144,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_ChangeBannerImg ,Ban_ContEditAfterChgBan ,NULL}, - [ActChgBanWWW ] = {1143,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ban_ChangeBannerWWW ,Ban_ContEditAfterChgBan ,NULL}, - [ActClkBan ] = {1145,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_DOWNLD_FILE,Ban_ClickOnBanner ,NULL ,NULL}, + // Links + [ActSeeLnk ] = { 748, 3,TabSys,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Lnk_SeeLinks }, + [ActEdiLnk ] = { 749,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Lnk_EditLinks }, + [ActNewLnk ] = { 750,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Lnk_ReceiveFormNewLink ,Lnk_ContEditAfterChgLnk }, + [ActRemLnk ] = { 897,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Lnk_RemoveLink ,Lnk_ContEditAfterChgLnk }, + [ActRenLnkSho ] = { 753,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Lnk_RenameLinkShort ,Lnk_ContEditAfterChgLnk }, + [ActRenLnkFul ] = { 751,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Lnk_RenameLinkFull ,Lnk_ContEditAfterChgLnk }, + [ActChgLnkWWW ] = { 752,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Lnk_ChangeLinkWWW ,Lnk_ContEditAfterChgLnk }, + [ActSeeBan ] = {1137,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x3FF,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ban_ShowAllBanners }, + [ActEdiBan ] = {1138,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ban_EditBanners }, + [ActNewBan ] = {1139,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_ReceiveFormNewBanner ,Ban_ContEditAfterChgBan }, + [ActRemBan ] = {1140,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_RemoveBanner ,Ban_ContEditAfterChgBan }, + [ActUnhBan ] = {1212,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_UnhideBanner ,Ban_ContEditAfterChgBan }, + [ActHidBan ] = {1213,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_HideBanner ,Ban_ContEditAfterChgBan }, + [ActRenBanSho ] = {1141,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_RenameBannerShort ,Ban_ContEditAfterChgBan }, + [ActRenBanFul ] = {1142,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_RenameBannerFull ,Ban_ContEditAfterChgBan }, + [ActChgBanImg ] = {1144,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_ChangeBannerImg ,Ban_ContEditAfterChgBan }, + [ActChgBanWWW ] = {1143,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Ban_ChangeBannerWWW ,Ban_ContEditAfterChgBan }, + [ActClkBan ] = {1145,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x3C7,Act_CONT_NORM,Act_DWN_FIL,Ban_ClickOnBanner ,NULL }, - [ActEdiLnk ] = { 749,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Lnk_EditLinks ,NULL}, - [ActNewLnk ] = { 750,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Lnk_ReceiveFormNewLink ,Lnk_ContEditAfterChgLnk ,NULL}, - [ActRemLnk ] = { 897,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Lnk_RemoveLink ,Lnk_ContEditAfterChgLnk ,NULL}, - [ActRenLnkSho ] = { 753,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Lnk_RenameLinkShort ,Lnk_ContEditAfterChgLnk ,NULL}, - [ActRenLnkFul ] = { 751,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Lnk_RenameLinkFull ,Lnk_ContEditAfterChgLnk ,NULL}, - [ActChgLnkWWW ] = { 752,-1,TabUnk,ActSeeLnk , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Lnk_ChangeLinkWWW ,Lnk_ContEditAfterChgLnk ,NULL}, + // Plugins + [ActSeePlg ] = { 777, 4,TabSys,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Plg_ListPlugins }, + [ActEdiPlg ] = { 778,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Plg_EditPlugins }, + [ActNewPlg ] = { 779,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_ReceiveFormNewPlg ,Plg_ContEditAfterChgPlg }, + [ActRemPlg ] = { 889,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_RemovePlugin ,Plg_ContEditAfterChgPlg }, + [ActRenPlg ] = { 782,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_RenamePlugin ,Plg_ContEditAfterChgPlg }, + [ActChgPlgDes ] = { 888,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_ChangePlgDescription ,Plg_ContEditAfterChgPlg }, + [ActChgPlgLog ] = { 781,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_ChangePlgLogo ,Plg_ContEditAfterChgPlg }, + [ActChgPlgAppKey ] = { 986,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_ChangePlgAppKey ,Plg_ContEditAfterChgPlg }, + [ActChgPlgURL ] = { 783,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_ChangePlgURL ,Plg_ContEditAfterChgPlg }, + [ActChgPlgIP ] = { 780,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,Plg_ChangePlgIP ,Plg_ContEditAfterChgPlg }, - [ActEdiPlg ] = { 778,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Plg_EditPlugins ,NULL}, - [ActNewPlg ] = { 779,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_ReceiveFormNewPlg ,Plg_ContEditAfterChgPlg ,NULL}, - [ActRemPlg ] = { 889,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_RemovePlugin ,Plg_ContEditAfterChgPlg ,NULL}, - [ActRenPlg ] = { 782,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_RenamePlugin ,Plg_ContEditAfterChgPlg ,NULL}, - [ActChgPlgDes ] = { 888,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_ChangePlgDescription ,Plg_ContEditAfterChgPlg ,NULL}, - [ActChgPlgLog ] = { 781,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_ChangePlgLogo ,Plg_ContEditAfterChgPlg ,NULL}, - [ActChgPlgAppKey ] = { 986,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_ChangePlgAppKey ,Plg_ContEditAfterChgPlg ,NULL}, - [ActChgPlgURL ] = { 783,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_ChangePlgURL ,Plg_ContEditAfterChgPlg ,NULL}, - [ActChgPlgIP ] = { 780,-1,TabUnk,ActSeePlg , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Plg_ChangePlgIP ,Plg_ContEditAfterChgPlg ,NULL}, - - [ActSetUp ] = { 840,-1,TabUnk,ActMtn , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mtn_SetUp ,NULL}, - [ActReqRemOldCrs ] = {1109,-1,TabUnk,ActMtn , 0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mtn_RemoveOldCrss ,NULL}, - [ActRemOldCrs ] = {1110,-1,TabUnk,ActMtn , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Crs_RemoveOldCrss ,NULL}, + // Maintenance + [ActMtn ] = {1820, 5,TabSys,ActMtn , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mtn_Maintenance }, + [ActSetUp ] = { 840,-1,TabUnk,ActMtn , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mtn_SetUp }, + [ActReqRemOldCrs ] = {1109,-1,TabUnk,ActMtn , 0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mtn_RemoveOldCrss }, + [ActRemOldCrs ] = {1110,-1,TabUnk,ActMtn , 0, 0, 0, 0, 0, 0,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Crs_RemoveOldCrss }, // TabCty ****************************************************************** - // Actions in menu: - [ActSeeCtyInf ] = {1155, 0,TabCty,ActSeeCtyInf , 0, 0, 0, 0, 0,0x3C7, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtyCfg_ShowConfiguration ,"info" }, - [ActSeeIns ] = { 696, 1,TabCty,ActSeeIns , 0, 0, 0, 0, 0,0x3C7, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ins_ShowInssOfCurrentCty ,"university" }, + // Country info + [ActSeeCtyInf ] = {1155, 0,TabCty,ActSeeCtyInf , 0, 0, 0, 0, 0,0x3C7, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtyCfg_ShowConfiguration }, + [ActPrnCtyInf ] = {1156,-1,TabUnk,ActSeeCtyInf , 0, 0, 0, 0, 0,0x3C7, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,CtyCfg_PrintConfiguration }, + [ActChgCtyMapAtt ] = {1158,-1,TabUnk,ActSeeCtyInf , 0, 0, 0, 0, 0,0x200, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtyCfg_ChangeCtyMapAttr }, - // Actions not in menu: - [ActPrnCtyInf ] = {1156,-1,TabUnk,ActSeeCtyInf , 0, 0, 0, 0, 0,0x3C7, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,CtyCfg_PrintConfiguration ,NULL}, - [ActChgCtyMapAtt ] = {1158,-1,TabUnk,ActSeeCtyInf , 0, 0, 0, 0, 0,0x200, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtyCfg_ChangeCtyMapAttr ,NULL}, - - [ActEdiIns ] = { 697,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ins_EditInstitutions ,NULL}, - [ActReqIns ] = {1210,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_ReceiveFormReqIns ,Ins_ContEditAfterChgIns ,NULL}, - [ActNewIns ] = { 698,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x200, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_ReceiveFormNewIns ,Ins_ContEditAfterChgIns ,NULL}, - [ActRemIns ] = { 759,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_RemoveInstitution ,Ins_ContEditAfterChgIns ,NULL}, - [ActRenInsSho ] = { 702,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_RenameInsShort ,Ins_ContEditAfterChgIns ,NULL}, - [ActRenInsFul ] = { 701,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_RenameInsFull ,Ins_ContEditAfterChgIns ,NULL}, - [ActChgInsWWW ] = { 700,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_ChangeInsWWW ,Ins_ContEditAfterChgIns ,NULL}, - [ActChgInsSta ] = {1211,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ins_ChangeInsStatus ,Ins_ContEditAfterChgIns ,NULL}, + // Institutions + [ActSeeIns ] = { 696, 1,TabCty,ActSeeIns , 0, 0, 0, 0, 0,0x3C7, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ins_ShowInssOfCurrentCty }, + [ActEdiIns ] = { 697,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ins_EditInstitutions }, + [ActReqIns ] = {1210,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_ReceiveFormReqIns ,Ins_ContEditAfterChgIns }, + [ActNewIns ] = { 698,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x200, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_ReceiveFormNewIns ,Ins_ContEditAfterChgIns }, + [ActRemIns ] = { 759,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_RemoveInstitution ,Ins_ContEditAfterChgIns }, + [ActRenInsSho ] = { 702,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_RenameInsShort ,Ins_ContEditAfterChgIns }, + [ActRenInsFul ] = { 701,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_RenameInsFull ,Ins_ContEditAfterChgIns }, + [ActChgInsWWW ] = { 700,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_ChangeInsWWW ,Ins_ContEditAfterChgIns }, + [ActChgInsSta ] = {1211,-1,TabUnk,ActSeeIns , 0, 0, 0, 0, 0,0x3C6, 0,Act_CONT_NORM,Act_1ST_TAB,Ins_ChangeInsStatus ,Ins_ContEditAfterChgIns }, // TabIns ****************************************************************** - // Actions in menu: - [ActSeeInsInf ] = {1153, 0,TabIns,ActSeeInsInf , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,InsCfg_ShowConfiguration ,"info" }, - [ActSeeCtr ] = { 676, 1,TabIns,ActSeeCtr , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ctr_ShowCtrsOfCurrentIns ,"building" }, - [ActSeePlc ] = { 703, 2,TabIns,ActSeePlc , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Plc_SeeAllPlaces ,"map-marker-alt" }, - [ActSeeDpt ] = { 675, 3,TabIns,ActSeeDpt , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Dpt_SeeAllDepts ,"users" }, - [ActSeeHld ] = { 707, 4,TabIns,ActSeeHld , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Hld_SeeAllHolidays ,"calendar-day" }, + // Institution info + [ActSeeInsInf ] = {1153, 0,TabIns,ActSeeInsInf , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,InsCfg_ShowConfiguration }, + [ActPrnInsInf ] = {1154,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,InsCfg_PrintConfiguration }, + [ActChgInsCtyCfg ] = {1590,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x200, 0, 0,Act_CONT_NORM,Act_1ST_TAB,InsCfg_ChangeInsCty ,InsCfg_ContEditAfterChgIns }, + [ActRenInsShoCfg ] = {1592,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x200, 0, 0,Act_CONT_NORM,Act_1ST_TAB,InsCfg_RenameInsShort ,InsCfg_ContEditAfterChgIns }, + [ActRenInsFulCfg ] = {1591,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x200, 0, 0,Act_CONT_NORM,Act_1ST_TAB,InsCfg_RenameInsFull ,InsCfg_ContEditAfterChgIns }, + [ActChgInsWWWCfg ] = {1593,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,InsCfg_ChangeInsWWW }, + [ActReqInsLog ] = {1245,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,InsCfg_ReqLogo }, + [ActRecInsLog ] = { 699,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_1ST_TAB,InsCfg_ReceiveLogo ,InsCfg_ShowConfiguration }, + [ActRemInsLog ] = {1341,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_1ST_TAB,InsCfg_RemoveLogo ,InsCfg_ShowConfiguration }, - // Actions not in menu: - [ActPrnInsInf ] = {1154,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,InsCfg_PrintConfiguration ,NULL}, - [ActChgInsCtyCfg ] = {1590,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x200, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,InsCfg_ChangeInsCty ,InsCfg_ContEditAfterChgIns ,NULL}, - [ActRenInsShoCfg ] = {1592,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x200, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,InsCfg_RenameInsShort ,InsCfg_ContEditAfterChgIns ,NULL}, - [ActRenInsFulCfg ] = {1591,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x200, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,InsCfg_RenameInsFull ,InsCfg_ContEditAfterChgIns ,NULL}, - [ActChgInsWWWCfg ] = {1593,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,InsCfg_ChangeInsWWW ,NULL}, - [ActReqInsLog ] = {1245,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,InsCfg_ReqLogo ,NULL}, - [ActRecInsLog ] = { 699,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,InsCfg_ReceiveLogo ,InsCfg_ShowConfiguration ,NULL}, - [ActRemInsLog ] = {1341,-1,TabUnk,ActSeeInsInf , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,InsCfg_RemoveLogo ,InsCfg_ShowConfiguration ,NULL}, + // Centers + [ActSeeCtr ] = { 676, 1,TabIns,ActSeeCtr , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ctr_ShowCtrsOfCurrentIns }, + [ActEdiCtr ] = { 681,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ctr_EditCenters }, + [ActReqCtr ] = {1208,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_ReceiveFormReqCtr ,Ctr_ContEditAfterChgCtr }, + [ActNewCtr ] = { 685,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_ReceiveFormNewCtr ,Ctr_ContEditAfterChgCtr }, + [ActRemCtr ] = { 686,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_RemoveCenter ,Ctr_ContEditAfterChgCtr }, + [ActChgCtrPlc ] = { 706,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_ChangeCtrPlc ,Ctr_ContEditAfterChgCtr }, + [ActRenCtrSho ] = { 682,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_RenameCenterShort ,Ctr_ContEditAfterChgCtr }, + [ActRenCtrFul ] = { 684,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_RenameCenterFull ,Ctr_ContEditAfterChgCtr }, + [ActChgCtrWWW ] = { 683,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_ChangeCtrWWW ,Ctr_ContEditAfterChgCtr }, + [ActChgCtrSta ] = {1209,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Ctr_ChangeCtrStatus ,Ctr_ContEditAfterChgCtr }, - [ActEdiCtr ] = { 681,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ctr_EditCenters ,NULL}, - [ActReqCtr ] = {1208,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_ReceiveFormReqCtr ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActNewCtr ] = { 685,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_ReceiveFormNewCtr ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActRemCtr ] = { 686,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_RemoveCenter ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActChgCtrPlc ] = { 706,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_ChangeCtrPlc ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActRenCtrSho ] = { 682,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_RenameCenterShort ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActRenCtrFul ] = { 684,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_RenameCenterFull ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActChgCtrWWW ] = { 683,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x3C6, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_ChangeCtrWWW ,Ctr_ContEditAfterChgCtr ,NULL}, - [ActChgCtrSta ] = {1209,-1,TabUnk,ActSeeCtr , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Ctr_ChangeCtrStatus ,Ctr_ContEditAfterChgCtr ,NULL}, + // Places + [ActSeePlc ] = { 703, 2,TabIns,ActSeePlc , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Plc_SeeAllPlaces }, + [ActEdiPlc ] = { 704,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Plc_EditPlaces }, + [ActNewPlc ] = { 705,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Plc_ReceiveFormNewPlace ,Plc_ContEditAfterChgPlc }, + [ActRemPlc ] = { 776,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Plc_RemovePlace ,Plc_ContEditAfterChgPlc }, + [ActRenPlcSho ] = { 894,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Plc_RenamePlaceShort ,Plc_ContEditAfterChgPlc }, + [ActRenPlcFul ] = { 895,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Plc_RenamePlaceFull ,Plc_ContEditAfterChgPlc }, - [ActEdiPlc ] = { 704,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Plc_EditPlaces ,NULL}, - [ActNewPlc ] = { 705,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Plc_ReceiveFormNewPlace ,Plc_ContEditAfterChgPlc ,NULL}, - [ActRemPlc ] = { 776,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Plc_RemovePlace ,Plc_ContEditAfterChgPlc ,NULL}, - [ActRenPlcSho ] = { 894,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Plc_RenamePlaceShort ,Plc_ContEditAfterChgPlc ,NULL}, - [ActRenPlcFul ] = { 895,-1,TabUnk,ActSeePlc , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Plc_RenamePlaceFull ,Plc_ContEditAfterChgPlc ,NULL}, + // Departments + [ActSeeDpt ] = { 675, 3,TabIns,ActSeeDpt , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Dpt_SeeAllDepts }, + [ActEdiDpt ] = { 677,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Dpt_EditDepartments }, + [ActNewDpt ] = { 687,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dpt_ReceiveFormNewDpt ,Dpt_ContEditAfterChgDpt }, + [ActRemDpt ] = { 690,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dpt_RemoveDepartment ,Dpt_ContEditAfterChgDpt }, + [ActChgDptIns ] = { 721,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dpt_ChangeDepartIns ,Dpt_ContEditAfterChgDpt }, + [ActRenDptSho ] = { 688,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dpt_RenameDepartShort ,Dpt_ContEditAfterChgDpt }, + [ActRenDptFul ] = { 689,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dpt_RenameDepartFull ,Dpt_ContEditAfterChgDpt }, + [ActChgDptWWW ] = { 691,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dpt_ChangeDptWWW ,Dpt_ContEditAfterChgDpt }, - [ActEdiDpt ] = { 677,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Dpt_EditDepartments ,NULL}, - [ActNewDpt ] = { 687,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dpt_ReceiveFormNewDpt ,Dpt_ContEditAfterChgDpt ,NULL}, - [ActRemDpt ] = { 690,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dpt_RemoveDepartment ,Dpt_ContEditAfterChgDpt ,NULL}, - [ActChgDptIns ] = { 721,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dpt_ChangeDepartIns ,Dpt_ContEditAfterChgDpt ,NULL}, - [ActRenDptSho ] = { 688,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dpt_RenameDepartShort ,Dpt_ContEditAfterChgDpt ,NULL}, - [ActRenDptFul ] = { 689,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dpt_RenameDepartFull ,Dpt_ContEditAfterChgDpt ,NULL}, - [ActChgDptWWW ] = { 691,-1,TabUnk,ActSeeDpt , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dpt_ChangeDptWWW ,Dpt_ContEditAfterChgDpt ,NULL}, - - [ActEdiHld ] = { 713,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Hld_EditHolidays ,NULL}, - [ActNewHld ] = { 714,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_ReceiveFormNewHoliday ,Hld_ContEditAfterChgHld ,NULL}, - [ActRemHld ] = { 716,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_RemoveHoliday ,Hld_ContEditAfterChgHld ,NULL}, - [ActChgHldPlc ] = { 896,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_ChangeHolidayPlace ,Hld_ContEditAfterChgHld ,NULL}, - [ActChgHldTyp ] = { 715,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_ChangeHolidayType ,Hld_ContEditAfterChgHld ,NULL}, - [ActChgHldStrDat ] = { 717,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_ChangeStartDate ,Hld_ContEditAfterChgHld ,NULL}, - [ActChgHldEndDat ] = { 718,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_ChangeEndDate ,Hld_ContEditAfterChgHld ,NULL}, - [ActRenHld ] = { 766,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Hld_RenameHoliday ,Hld_ContEditAfterChgHld ,NULL}, + // Holidays + [ActSeeHld ] = { 707, 4,TabIns,ActSeeHld , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Hld_SeeAllHolidays }, + [ActEdiHld ] = { 713,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Hld_EditHolidays }, + [ActNewHld ] = { 714,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_ReceiveFormNewHoliday ,Hld_ContEditAfterChgHld }, + [ActRemHld ] = { 716,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_RemoveHoliday ,Hld_ContEditAfterChgHld }, + [ActChgHldPlc ] = { 896,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_ChangeHolidayPlace ,Hld_ContEditAfterChgHld }, + [ActChgHldTyp ] = { 715,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_ChangeHolidayType ,Hld_ContEditAfterChgHld }, + [ActChgHldStrDat ] = { 717,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_ChangeStartDate ,Hld_ContEditAfterChgHld }, + [ActChgHldEndDat ] = { 718,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_ChangeEndDate ,Hld_ContEditAfterChgHld }, + [ActRenHld ] = { 766,-1,TabUnk,ActSeeHld , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Hld_RenameHoliday ,Hld_ContEditAfterChgHld }, // TabCtr ****************************************************************** - // Actions in menu: - [ActSeeCtrInf ] = {1151, 0,TabCtr,ActSeeCtrInf , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ShowConfiguration ,"info" }, - [ActSeeDeg ] = {1011, 1,TabCtr,ActSeeDeg , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Deg_ShowDegsOfCurrentCtr ,"graduation-cap" }, - [ActSeeBld ] = {1838, 2,TabCtr,ActSeeBld , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Bld_SeeBuildings ,"building" }, - [ActSeeRoo ] = {1744, 2,TabCtr,ActSeeRoo , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Roo_SeeRooms ,"chalkboard-teacher" }, + // Center info + [ActSeeCtrInf ] = {1151, 0,TabCtr,ActSeeCtrInf , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ShowConfiguration }, + [ActPrnCtrInf ] = {1152,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,CtrCfg_PrintConfiguration }, + [ActChgCtrInsCfg ] = {1589,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CtrCfg_ChangeCtrIns ,CtrCfg_ContEditAfterChgCtr }, + [ActRenCtrShoCfg ] = {1595,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x300, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CtrCfg_RenameCenterShort ,CtrCfg_ContEditAfterChgCtr }, + [ActRenCtrFulCfg ] = {1594,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x300, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CtrCfg_RenameCenterFull ,CtrCfg_ContEditAfterChgCtr }, + [ActChgCtrPlcCfg ] = {1648,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ChangeCtrPlc }, + [ActChgCtrLatCfg ] = {1815,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ChangeCtrLatitude }, + [ActChgCtrLgtCfg ] = {1816,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ChangeCtrLongitude }, + [ActChgCtrAltCfg ] = {1817,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ChangeCtrAltitude }, + [ActChgCtrWWWCfg ] = {1596,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ChangeCtrWWW }, + [ActReqCtrLog ] = {1244,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ReqLogo }, + [ActRecCtrLog ] = {1051,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,CtrCfg_ReceiveLogo ,CtrCfg_ShowConfiguration }, + [ActRemCtrLog ] = {1342,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,CtrCfg_RemoveLogo ,CtrCfg_ShowConfiguration }, + [ActReqCtrPho ] = {1160,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ReqPhoto }, + [ActRecCtrPho ] = {1161,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,CtrCfg_ReceivePhoto }, + [ActChgCtrPhoAtt ] = {1159,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CtrCfg_ChangeCtrPhotoAttr }, - // Actions not in menu: - [ActPrnCtrInf ] = {1152,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,CtrCfg_PrintConfiguration ,NULL}, - [ActChgCtrInsCfg ] = {1589,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CtrCfg_ChangeCtrIns ,CtrCfg_ContEditAfterChgCtr ,NULL}, - [ActRenCtrShoCfg ] = {1595,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x300, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CtrCfg_RenameCenterShort ,CtrCfg_ContEditAfterChgCtr ,NULL}, - [ActRenCtrFulCfg ] = {1594,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x300, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CtrCfg_RenameCenterFull ,CtrCfg_ContEditAfterChgCtr ,NULL}, - [ActChgCtrPlcCfg ] = {1648,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ChangeCtrPlc ,NULL}, - [ActChgCtrLatCfg ] = {1815,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ChangeCtrLatitude ,NULL}, - [ActChgCtrLgtCfg ] = {1816,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ChangeCtrLongitude ,NULL}, - [ActChgCtrAltCfg ] = {1817,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ChangeCtrAltitude ,NULL}, - [ActChgCtrWWWCfg ] = {1596,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ChangeCtrWWW ,NULL}, - [ActReqCtrLog ] = {1244,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ReqLogo ,NULL}, - [ActRecCtrLog ] = {1051,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,CtrCfg_ReceiveLogo ,CtrCfg_ShowConfiguration ,NULL}, - [ActRemCtrLog ] = {1342,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,CtrCfg_RemoveLogo ,CtrCfg_ShowConfiguration ,NULL}, - [ActReqCtrPho ] = {1160,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ReqPhoto ,NULL}, - [ActRecCtrPho ] = {1161,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,CtrCfg_ReceivePhoto ,NULL}, - [ActChgCtrPhoAtt ] = {1159,-1,TabUnk,ActSeeCtrInf , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CtrCfg_ChangeCtrPhotoAttr ,NULL}, + // Degrees + [ActSeeDeg ] = {1011, 1,TabCtr,ActSeeDeg , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Deg_ShowDegsOfCurrentCtr }, + [ActEdiDeg ] = { 536,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Deg_EditDegrees }, + [ActReqDeg ] = {1206,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_ReceiveFormReqDeg ,Deg_ContEditAfterChgDeg }, + [ActNewDeg ] = { 540,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_ReceiveFormNewDeg ,Deg_ContEditAfterChgDeg }, + [ActRemDeg ] = { 542,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_RemoveDegree ,Deg_ContEditAfterChgDeg }, + [ActRenDegSho ] = { 546,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_RenameDegreeShort ,Deg_ContEditAfterChgDeg }, + [ActRenDegFul ] = { 547,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_RenameDegreeFull ,Deg_ContEditAfterChgDeg }, + [ActChgDegTyp ] = { 544,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_ChangeDegreeType ,Deg_ContEditAfterChgDeg }, + [ActChgDegWWW ] = { 554,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_ChangeDegWWW ,Deg_ContEditAfterChgDeg }, + [ActChgDegSta ] = {1207,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Deg_ChangeDegStatus ,Deg_ContEditAfterChgDeg }, + [ActSeeDegTyp ] = {1013,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,DegTyp_SeeDegreeTypesInDegTab }, + [ActEdiDegTyp ] = { 573,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,DegTyp_GetAndEditDegreeTypes }, + [ActNewDegTyp ] = { 537,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,DegTyp_ReceiveFormNewDegreeType,DegTyp_ContEditAfterChgDegTyp}, + [ActRemDegTyp ] = { 545,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,DegTyp_RemoveDegreeType ,DegTyp_ContEditAfterChgDegTyp }, + [ActRenDegTyp ] = { 538,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,DegTyp_RenameDegreeType ,DegTyp_ContEditAfterChgDegTyp }, - [ActSeeDegTyp ] = {1013,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,DegTyp_SeeDegreeTypesInDegTab ,NULL}, - [ActEdiDegTyp ] = { 573,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,DegTyp_GetAndEditDegreeTypes ,NULL}, - [ActNewDegTyp ] = { 537,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,DegTyp_ReceiveFormNewDegreeType,DegTyp_ContEditAfterChgDegTyp ,NULL}, - [ActRemDegTyp ] = { 545,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,DegTyp_RemoveDegreeType ,DegTyp_ContEditAfterChgDegTyp ,NULL}, - [ActRenDegTyp ] = { 538,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x200, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,DegTyp_RenameDegreeType ,DegTyp_ContEditAfterChgDegTyp ,NULL}, + // Buildings + [ActSeeBld ] = {1838, 2,TabCtr,ActSeeBld , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Bld_SeeBuildings }, + [ActEdiBld ] = {1839,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Bld_EditBuildings }, + [ActNewBld ] = {1840,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Bld_ReceiveFormNewBuilding ,Bld_ContEditAfterChgBuilding }, + [ActRemBld ] = {1841,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Bld_RemoveBuilding ,Bld_ContEditAfterChgBuilding }, + [ActRenBldSho ] = {1842,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Bld_RenameBuildingShort ,Bld_ContEditAfterChgBuilding }, + [ActRenBldFul ] = {1843,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Bld_RenameBuildingFull ,Bld_ContEditAfterChgBuilding }, + [ActRenBldLoc ] = {1844,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Bld_ChangeBuildingLocation ,Bld_ContEditAfterChgBuilding }, - [ActEdiDeg ] = { 536,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Deg_EditDegrees ,NULL}, - [ActReqDeg ] = {1206,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_ReceiveFormReqDeg ,Deg_ContEditAfterChgDeg ,NULL}, - [ActNewDeg ] = { 540,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_ReceiveFormNewDeg ,Deg_ContEditAfterChgDeg ,NULL}, - [ActRemDeg ] = { 542,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_RemoveDegree ,Deg_ContEditAfterChgDeg ,NULL}, - [ActRenDegSho ] = { 546,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_RenameDegreeShort ,Deg_ContEditAfterChgDeg ,NULL}, - [ActRenDegFul ] = { 547,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_RenameDegreeFull ,Deg_ContEditAfterChgDeg ,NULL}, - [ActChgDegTyp ] = { 544,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_ChangeDegreeType ,Deg_ContEditAfterChgDeg ,NULL}, - [ActChgDegWWW ] = { 554,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_ChangeDegWWW ,Deg_ContEditAfterChgDeg ,NULL}, - [ActChgDegSta ] = {1207,-1,TabUnk,ActSeeDeg , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Deg_ChangeDegStatus ,Deg_ContEditAfterChgDeg ,NULL}, - - [ActEdiBld ] = {1839,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Bld_EditBuildings ,NULL}, - [ActNewBld ] = {1840,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Bld_ReceiveFormNewBuilding ,Bld_ContEditAfterChgBuilding ,NULL}, - [ActRemBld ] = {1841,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Bld_RemoveBuilding ,Bld_ContEditAfterChgBuilding ,NULL}, - [ActRenBldSho ] = {1842,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Bld_RenameBuildingShort ,Bld_ContEditAfterChgBuilding ,NULL}, - [ActRenBldFul ] = {1843,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Bld_RenameBuildingFull ,Bld_ContEditAfterChgBuilding ,NULL}, - [ActRenBldLoc ] = {1844,-1,TabUnk,ActSeeBld , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Bld_ChangeBuildingLocation ,Bld_ContEditAfterChgBuilding ,NULL}, - - [ActEdiRoo ] = {1745,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Roo_EditRooms ,NULL}, - [ActNewRoo ] = {1746,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_ReceiveFormNewRoom ,Roo_ContEditAfterChgRoom ,NULL}, - [ActRemRoo ] = {1747,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_RemoveRoom ,Roo_ContEditAfterChgRoom ,NULL}, - [ActChgRooBld ] = {1845,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_ChangeBuilding ,Roo_ContEditAfterChgRoom ,NULL}, - [ActChgRooFlo ] = {1846,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_ChangeFloor ,Roo_ContEditAfterChgRoom ,NULL}, - [ActChgRooTyp ] = {1847,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_ChangeType ,Roo_ContEditAfterChgRoom ,NULL}, - [ActRenRooSho ] = {1748,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_RenameRoomShort ,Roo_ContEditAfterChgRoom ,NULL}, - [ActRenRooFul ] = {1749,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_RenameRoomFull ,Roo_ContEditAfterChgRoom ,NULL}, - [ActChgRooMaxUsr ] = {1750,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_ChangeCapacity ,Roo_ContEditAfterChgRoom ,NULL}, - [ActChgRooMAC ] = {1911,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Roo_ChangeMAC ,Roo_ContEditAfterChgRoom ,NULL}, + // Rooms + [ActSeeRoo ] = {1744, 2,TabCtr,ActSeeRoo , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Roo_SeeRooms }, + [ActEdiRoo ] = {1745,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Roo_EditRooms }, + [ActNewRoo ] = {1746,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_ReceiveFormNewRoom ,Roo_ContEditAfterChgRoom }, + [ActRemRoo ] = {1747,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_RemoveRoom ,Roo_ContEditAfterChgRoom }, + [ActChgRooBld ] = {1845,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_ChangeBuilding ,Roo_ContEditAfterChgRoom }, + [ActChgRooFlo ] = {1846,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_ChangeFloor ,Roo_ContEditAfterChgRoom }, + [ActChgRooTyp ] = {1847,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_ChangeType ,Roo_ContEditAfterChgRoom }, + [ActRenRooSho ] = {1748,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_RenameRoomShort ,Roo_ContEditAfterChgRoom }, + [ActRenRooFul ] = {1749,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_RenameRoomFull ,Roo_ContEditAfterChgRoom }, + [ActChgRooMaxUsr ] = {1750,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_ChangeCapacity ,Roo_ContEditAfterChgRoom }, + [ActChgRooMAC ] = {1911,-1,TabUnk,ActSeeRoo , 0, 0, 0,0x3C6, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Roo_ChangeMAC ,Roo_ContEditAfterChgRoom }, // TabDeg ****************************************************************** - // Actions in menu: - [ActSeeDegInf ] = {1149, 0,TabDeg,ActSeeDegInf , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,DegCfg_ShowConfiguration ,"info" }, - [ActSeeCrs ] = {1009, 1,TabDeg,ActSeeCrs , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Crs_ShowCrssOfCurrentDeg ,"chalkboard-teacher" }, + // Degree info + [ActSeeDegInf ] = {1149, 0,TabDeg,ActSeeDegInf , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,DegCfg_ShowConfiguration }, + [ActPrnDegInf ] = {1150,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,DegCfg_PrintConfiguration }, + [ActChgDegCtrCfg ] = {1588,-1,TabUnk,ActSeeDegInf , 0, 0,0x300, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,DegCfg_ChangeDegCtr ,DegCfg_ContEditAfterChgDeg }, + [ActRenDegShoCfg ] = {1598,-1,TabUnk,ActSeeDegInf , 0, 0,0x380, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,DegCfg_RenameDegreeShort ,DegCfg_ContEditAfterChgDeg }, + [ActRenDegFulCfg ] = {1597,-1,TabUnk,ActSeeDegInf , 0, 0,0x380, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,DegCfg_RenameDegreeFull ,DegCfg_ContEditAfterChgDeg }, + [ActChgDegWWWCfg ] = {1599,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,DegCfg_ChangeDegWWW }, + [ActReqDegLog ] = {1246,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,DegCfg_ReqLogo }, + [ActRecDegLog ] = { 553,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,DegCfg_ReceiveLogo ,DegCfg_ShowConfiguration }, + [ActRemDegLog ] = {1343,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,DegCfg_RemoveLogo ,DegCfg_ShowConfiguration }, - // Actions not in menu: - [ActPrnDegInf ] = {1150,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,DegCfg_PrintConfiguration ,NULL}, - [ActChgDegCtrCfg ] = {1588,-1,TabUnk,ActSeeDegInf , 0, 0,0x300, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,DegCfg_ChangeDegCtr ,DegCfg_ContEditAfterChgDeg ,NULL}, - [ActRenDegShoCfg ] = {1598,-1,TabUnk,ActSeeDegInf , 0, 0,0x380, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,DegCfg_RenameDegreeShort ,DegCfg_ContEditAfterChgDeg ,NULL}, - [ActRenDegFulCfg ] = {1597,-1,TabUnk,ActSeeDegInf , 0, 0,0x380, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,DegCfg_RenameDegreeFull ,DegCfg_ContEditAfterChgDeg ,NULL}, - [ActChgDegWWWCfg ] = {1599,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,DegCfg_ChangeDegWWW ,NULL}, - [ActReqDegLog ] = {1246,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,DegCfg_ReqLogo ,NULL}, - [ActRecDegLog ] = { 553,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,DegCfg_ReceiveLogo ,DegCfg_ShowConfiguration ,NULL}, - [ActRemDegLog ] = {1343,-1,TabUnk,ActSeeDegInf , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,DegCfg_RemoveLogo ,DegCfg_ShowConfiguration ,NULL}, - - [ActEdiCrs ] = { 555,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Crs_EditCourses ,NULL}, - [ActReqCrs ] = {1053,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_ReceiveFormReqCrs ,Crs_ContEditAfterChgCrs ,NULL}, - [ActNewCrs ] = { 556,-1,TabUnk,ActSeeCrs , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_ReceiveFormNewCrs ,Crs_ContEditAfterChgCrs ,NULL}, - [ActRemCrs ] = { 560,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_RemoveCourse ,Crs_ContEditAfterChgCrs ,NULL}, - [ActChgInsCrsCod ] = {1025,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_ChangeInsCrsCod ,Crs_ContEditAfterChgCrs ,NULL}, - [ActChgCrsYea ] = { 561,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_ChangeCrsYear ,Crs_ContEditAfterChgCrs ,NULL}, - [ActRenCrsSho ] = { 563,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_RenameCourseShort ,Crs_ContEditAfterChgCrs ,NULL}, - [ActRenCrsFul ] = { 564,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_RenameCourseFull ,Crs_ContEditAfterChgCrs ,NULL}, - [ActChgCrsSta ] = {1055,-1,TabUnk,ActSeeCrs , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Crs_ChangeCrsStatus ,Crs_ContEditAfterChgCrs ,NULL}, + // Courses + [ActSeeCrs ] = {1009, 1,TabDeg,ActSeeCrs , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Crs_ShowCrssOfCurrentDeg }, + [ActEdiCrs ] = { 555,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Crs_EditCourses }, + [ActReqCrs ] = {1053,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_ReceiveFormReqCrs ,Crs_ContEditAfterChgCrs }, + [ActNewCrs ] = { 556,-1,TabUnk,ActSeeCrs , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_ReceiveFormNewCrs ,Crs_ContEditAfterChgCrs }, + [ActRemCrs ] = { 560,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_RemoveCourse ,Crs_ContEditAfterChgCrs }, + [ActChgInsCrsCod ] = {1025,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_ChangeInsCrsCod ,Crs_ContEditAfterChgCrs }, + [ActChgCrsYea ] = { 561,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_ChangeCrsYear ,Crs_ContEditAfterChgCrs }, + [ActRenCrsSho ] = { 563,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_RenameCourseShort ,Crs_ContEditAfterChgCrs }, + [ActRenCrsFul ] = { 564,-1,TabUnk,ActSeeCrs , 0, 0,0x3C6, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_RenameCourseFull ,Crs_ContEditAfterChgCrs }, + [ActChgCrsSta ] = {1055,-1,TabUnk,ActSeeCrs , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Crs_ChangeCrsStatus ,Crs_ContEditAfterChgCrs }, // TabCrs ****************************************************************** - // Actions in menu: - [ActSeeCrsInf ] = { 847, 0,TabCrs,ActSeeCrsInf ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Crs_ShowIntroduction ,"info" }, - [ActSeePrg ] = {1821, 1,TabCrs,ActSeePrg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ShowCourseProgram ,"clipboard-list" }, - [ActSeeTchGui ] = { 784, 2,TabCrs,ActSeeTchGui ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,"book-open" }, - [ActSeeSyl ] = {1242, 3,TabCrs,ActSeeSyl ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,"list-ol" }, - [ActSeeBib ] = { 32, 4,TabCrs,ActSeeBib ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,"book" }, - [ActSeeFAQ ] = { 54, 5,TabCrs,ActSeeFAQ ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,"question" }, - [ActSeeCrsLnk ] = { 9, 6,TabCrs,ActSeeCrsLnk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,"up-right-from-square" }, - [ActSeeAss ] = { 15, 7,TabCrs,ActSeeAss ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,"check" }, - [ActSeeCrsTT ] = { 25, 8,TabCrs,ActSeeCrsTT ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tmt_ShowClassTimeTable ,"clock" }, + // Course info + [ActSeeCrsInf ] = { 847, 0,TabCrs,ActSeeCrsInf ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Crs_ShowIntroduction }, + [ActPrnCrsInf ] = {1028,-1,TabUnk,ActSeeCrsInf ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,CrsCfg_PrintConfiguration }, + [ActChgCrsDegCfg ] = {1587,-1,TabUnk,ActSeeCrsInf ,0x380,0x380, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CrsCfg_ChangeCrsDeg ,CrsCfg_ContEditAfterChgCrs }, + [ActRenCrsShoCfg ] = {1601,-1,TabUnk,ActSeeCrsInf ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CrsCfg_RenameCourseShort ,CrsCfg_ContEditAfterChgCrs }, + [ActRenCrsFulCfg ] = {1600,-1,TabUnk,ActSeeCrsInf ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CrsCfg_RenameCourseFull ,CrsCfg_ContEditAfterChgCrs }, + [ActChgInsCrsCodCfg ] = {1024,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CrsCfg_ChangeInsCrsCod ,CrsCfg_ContEditAfterChgCrs }, + [ActChgCrsYeaCfg ] = {1573,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,CrsCfg_ChangeCrsYear ,CrsCfg_ContEditAfterChgCrs }, + [ActEdiCrsInf ] = { 848,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActChgFrcReaCrsInf ] = { 877,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaCrsInf ] = { 878,-1,TabUnk,ActSeeCrsInf ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcCrsInf ] = { 849,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLCrsInf ] = { 854,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagCrsInf ] = { 853,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorCrsInf ] = { 852,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditorCourseInfo }, + [ActPlaTxtEdiCrsInf ] = { 850,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiCrsInf ] = {1093,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtCrsInf ] = { 851,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtCrsInf ] = {1101,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - // Actions not in menu: - [ActPrnCrsInf ] = {1028,-1,TabUnk,ActSeeCrsInf ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,CrsCfg_PrintConfiguration ,NULL}, - [ActChgCrsDegCfg ] = {1587,-1,TabUnk,ActSeeCrsInf ,0x380,0x380, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CrsCfg_ChangeCrsDeg ,CrsCfg_ContEditAfterChgCrs ,NULL}, - [ActRenCrsShoCfg ] = {1601,-1,TabUnk,ActSeeCrsInf ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CrsCfg_RenameCourseShort ,CrsCfg_ContEditAfterChgCrs ,NULL}, - [ActRenCrsFulCfg ] = {1600,-1,TabUnk,ActSeeCrsInf ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CrsCfg_RenameCourseFull ,CrsCfg_ContEditAfterChgCrs ,NULL}, - [ActChgInsCrsCodCfg ] = {1024,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CrsCfg_ChangeInsCrsCod ,CrsCfg_ContEditAfterChgCrs ,NULL}, - [ActChgCrsYeaCfg ] = {1573,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,CrsCfg_ChangeCrsYear ,CrsCfg_ContEditAfterChgCrs ,NULL}, - [ActEdiCrsInf ] = { 848,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, + // Program + [ActSeePrg ] = {1821, 1,TabCrs,ActSeePrg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ShowCourseProgram }, + [ActEdiPrg ] = {1926, 1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_EditCourseProgram }, + [ActSeePrgItm ] = {1927,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ViewItemAfterEdit }, + [ActFrmChgPrgItm ] = {1823,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ReqChangeItem }, + [ActFrmNewPrgItm ] = {1822,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ReqCreateItem }, + [ActChgPrgItm ] = {1826,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ReceiveFormChgItem }, + [ActNewPrgItm ] = {1825,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ReceiveFormNewItem }, + [ActReqRemPrgItm ] = {1827,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ReqRemItem }, + [ActRemPrgItm ] = {1828,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_RemoveItem }, + [ActHidPrgItm ] = {1829,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_HideItem }, + [ActUnhPrgItm ] = {1830,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_UnhideItem }, + [ActUp_PrgItm ] = {1831,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_MoveUpItem }, + [ActDwnPrgItm ] = {1832,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_MoveDownItem }, + [ActLftPrgItm ] = {1834,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_MoveLeftItem }, + [ActRgtPrgItm ] = {1833,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_MoveRightItem }, + [ActExpSeePrgItm ] = {1944,-1,TabUnk,ActSeePrg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ExpandItem }, + [ActExpEdiPrgItm ] = {1946,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ExpandItem }, + [ActConSeePrgItm ] = {1945,-1,TabUnk,ActSeePrg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ContractItem }, + [ActConEdiPrgItm ] = {1947,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prg_ContractItem }, + [ActSeeRscCli_InPrg ] = {1970,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_ViewResourceClipboard }, + [ActRemRscCli_InPrg ] = {1971,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_RemoveResourceClipboard }, + [ActFrmSeePrgRsc ] = {1925,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_ViewResourcesAfterEdit }, + [ActFrmEdiPrgRsc ] = {1918,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_EditResources }, + [ActNewPrgRsc ] = {1929,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_CreateResource }, + [ActRenPrgRsc ] = {1928,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_RenameResource }, + [ActReqRemPrgRsc ] = {1919,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_ReqRemResource }, + [ActRemPrgRsc ] = {1920,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_RemoveResource }, + [ActHidPrgRsc ] = {1921,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_HideResource }, + [ActUnhPrgRsc ] = {1922,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_UnhideResource }, + [ActUp_PrgRsc ] = {1923,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_MoveUpResource }, + [ActDwnPrgRsc ] = {1924,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_MoveDownResource }, + [ActFrmChgLnkPrgRsc ] = {1932,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_EditProgramWithClipboard}, + [ActChgLnkPrgRsc ] = {1933,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrgRsc_ChangeLink }, - [ActEdiPrg ] = {1926, 1,TabCrs,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_EditCourseProgram ,NULL}, - [ActSeePrgItm ] = {1927,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ViewItemAfterEdit ,NULL}, - [ActFrmChgPrgItm ] = {1823,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ReqChangeItem ,NULL}, - [ActFrmNewPrgItm ] = {1822,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ReqCreateItem ,NULL}, - [ActChgPrgItm ] = {1826,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ReceiveFormChgItem ,NULL}, - [ActNewPrgItm ] = {1825,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ReceiveFormNewItem ,NULL}, - [ActReqRemPrgItm ] = {1827,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ReqRemItem ,NULL}, - [ActRemPrgItm ] = {1828,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_RemoveItem ,NULL}, - [ActHidPrgItm ] = {1829,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_HideItem ,NULL}, - [ActUnhPrgItm ] = {1830,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_UnhideItem ,NULL}, - [ActUp_PrgItm ] = {1831,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_MoveUpItem ,NULL}, - [ActDwnPrgItm ] = {1832,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_MoveDownItem ,NULL}, - [ActLftPrgItm ] = {1834,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_MoveLeftItem ,NULL}, - [ActRgtPrgItm ] = {1833,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_MoveRightItem ,NULL}, - [ActExpSeePrgItm ] = {1944,-1,TabUnk,ActSeePrg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ExpandItem ,NULL}, - [ActExpEdiPrgItm ] = {1946,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ExpandItem ,NULL}, - [ActConSeePrgItm ] = {1945,-1,TabUnk,ActSeePrg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ContractItem ,NULL}, - [ActConEdiPrgItm ] = {1947,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prg_ContractItem ,NULL}, + // Teaching guide + [ActSeeTchGui ] = { 784, 2,TabCrs,ActSeeTchGui ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActEdiTchGui ] = { 785,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActChgFrcReaTchGui ] = { 870,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaTchGui ] = { 886,-1,TabUnk,ActSeeTchGui ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcTchGui ] = { 789,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLTchGui ] = { 791,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagTchGui ] = { 788,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorTchGui ] = { 786,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditorTeachingGuide }, + [ActPlaTxtEdiTchGui ] = { 787,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiTchGui ] = {1094,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtTchGui ] = { 790,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtTchGui ] = {1102,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - [ActSeeRscCli_InPrg ] = {1970,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_ViewResourceClipboard ,NULL}, - [ActRemRscCli_InPrg ] = {1971,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_RemoveResourceClipboard ,NULL}, - [ActFrmSeePrgRsc ] = {1925,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_ViewResourcesAfterEdit ,NULL}, - [ActFrmEdiPrgRsc ] = {1918,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_EditResources ,NULL}, - [ActNewPrgRsc ] = {1929,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_CreateResource ,NULL}, - [ActRenPrgRsc ] = {1928,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_RenameResource ,NULL}, - [ActReqRemPrgRsc ] = {1919,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_ReqRemResource ,NULL}, - [ActRemPrgRsc ] = {1920,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_RemoveResource ,NULL}, - [ActHidPrgRsc ] = {1921,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_HideResource ,NULL}, - [ActUnhPrgRsc ] = {1922,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_UnhideResource ,NULL}, - [ActUp_PrgRsc ] = {1923,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_MoveUpResource ,NULL}, - [ActDwnPrgRsc ] = {1924,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_MoveDownResource ,NULL}, - [ActFrmChgLnkPrgRsc ] = {1932,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_EditProgramWithClipboard,NULL}, - [ActChgLnkPrgRsc ] = {1933,-1,TabUnk,ActSeePrg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrgRsc_ChangeLink ,NULL}, + // Syllabus + [ActSeeSyl ] = {1242, 3,TabCrs,ActSeeSyl ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActSeeSylLec ] = { 28,-1,TabUnk,ActSeeSyl ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActSeeSylPra ] = { 20,-1,TabUnk,ActSeeSyl ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActEdiSylLec ] = { 44,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActEdiSylPra ] = { 74,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActDelItmSylLec ] = { 218,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_RemoveItemSyllabus }, + [ActDelItmSylPra ] = { 183,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_RemoveItemSyllabus }, + [ActUp_IteSylLec ] = { 221,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_UpItemSyllabus }, + [ActUp_IteSylPra ] = { 213,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_UpItemSyllabus }, + [ActDwnIteSylLec ] = { 220,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_DownItemSyllabus }, + [ActDwnIteSylPra ] = { 212,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_DownItemSyllabus }, + [ActRgtIteSylLec ] = { 223,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_RightItemSyllabus }, + [ActRgtIteSylPra ] = { 215,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_RightItemSyllabus }, + [ActLftIteSylLec ] = { 222,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_LeftItemSyllabus }, + [ActLftIteSylPra ] = { 214,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_LeftItemSyllabus }, + [ActInsIteSylLec ] = { 217,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_InsertItemSyllabus }, + [ActInsIteSylPra ] = { 181,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_InsertItemSyllabus }, + [ActModIteSylLec ] = { 211,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_ModifyItemSyllabus }, + [ActModIteSylPra ] = { 216,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_ModifyItemSyllabus }, + [ActChgFrcReaSylLec ] = { 871,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgFrcReaSylPra ] = { 872,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaSylLec ] = { 880,-1,TabUnk,ActSeeSyl ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActChgHavReaSylPra ] = { 887,-1,TabUnk,ActSeeSyl ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcSylLec ] = { 378,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActSelInfSrcSylPra ] = { 382,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLSylLec ] = { 403,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvURLSylPra ] = { 402,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagSylLec ] = { 381,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActRcvPagSylPra ] = { 383,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorSylLec ] = { 372,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_EditSyllabus }, + [ActEditorSylPra ] = { 371,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Syl_EditSyllabus }, + [ActPlaTxtEdiSylLec ] = { 379,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActPlaTxtEdiSylPra ] = { 389,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiSylLec ] = {1095,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRchTxtEdiSylPra ] = {1096,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtSylLec ] = { 394,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvPlaTxtSylPra ] = { 396,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtSylLec ] = {1103,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, + [ActRcvRchTxtSylPra ] = {1104,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - [ActEdiTchGui ] = { 785,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, + // Bibliography + [ActSeeBib ] = { 32, 4,TabCrs,ActSeeBib ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActEdiBib ] = { 76,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActChgFrcReaBib ] = { 873,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaBib ] = { 884,-1,TabUnk,ActSeeBib ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcBib ] = { 370,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLBib ] = { 224,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagBib ] = { 185,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorBib ] = { 376,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditorBibliography }, + [ActPlaTxtEdiBib ] = { 377,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiBib ] = {1097,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtBib ] = { 398,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtBib ] = {1105,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - [ActSeeSylLec ] = { 28,-1,TabUnk,ActSeeSyl ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,NULL}, - [ActSeeSylPra ] = { 20,-1,TabUnk,ActSeeSyl ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ShowInfo ,NULL}, - [ActEdiSylLec ] = { 44,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, - [ActEdiSylPra ] = { 74,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, - [ActDelItmSylLec ] = { 218,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_RemoveItemSyllabus ,NULL}, - [ActDelItmSylPra ] = { 183,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_RemoveItemSyllabus ,NULL}, - [ActUp_IteSylLec ] = { 221,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_UpItemSyllabus ,NULL}, - [ActUp_IteSylPra ] = { 213,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_UpItemSyllabus ,NULL}, - [ActDwnIteSylLec ] = { 220,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_DownItemSyllabus ,NULL}, - [ActDwnIteSylPra ] = { 212,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_DownItemSyllabus ,NULL}, - [ActRgtIteSylLec ] = { 223,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_RightItemSyllabus ,NULL}, - [ActRgtIteSylPra ] = { 215,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_RightItemSyllabus ,NULL}, - [ActLftIteSylLec ] = { 222,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_LeftItemSyllabus ,NULL}, - [ActLftIteSylPra ] = { 214,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_LeftItemSyllabus ,NULL}, - [ActInsIteSylLec ] = { 217,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_InsertItemSyllabus ,NULL}, - [ActInsIteSylPra ] = { 181,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_InsertItemSyllabus ,NULL}, - [ActModIteSylLec ] = { 211,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_ModifyItemSyllabus ,NULL}, - [ActModIteSylPra ] = { 216,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_ModifyItemSyllabus ,NULL}, + // FAQ + [ActSeeFAQ ] = { 54, 5,TabCrs,ActSeeFAQ ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActEdiFAQ ] = { 109,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActChgFrcReaFAQ ] = { 874,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaFAQ ] = { 879,-1,TabUnk,ActSeeFAQ ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcFAQ ] = { 380,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLFAQ ] = { 234,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagFAQ ] = { 219,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorFAQ ] = { 404,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditorFAQ }, + [ActPlaTxtEdiFAQ ] = { 405,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiFAQ ] = {1098,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtFAQ ] = { 406,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtFAQ ] = {1106,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - [ActEdiBib ] = { 76,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, - [ActEdiFAQ ] = { 109,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, - [ActEdiCrsLnk ] = { 96,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, - [ActEdiAss ] = { 69,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_FormsToSelSendInfo ,NULL}, + // Links + [ActSeeCrsLnk ] = { 9, 6,TabCrs,ActSeeCrsLnk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActEdiCrsLnk ] = { 96,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActChgFrcReaCrsLnk ] = { 875,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaCrsLnk ] = { 885,-1,TabUnk,ActSeeCrsLnk ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcCrsLnk ] = { 385,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLCrsLnk ] = { 182,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagCrsLnk ] = { 164,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorCrsLnk ] = { 388,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditorLinks }, + [ActPlaTxtEdiCrsLnk ] = { 400,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiCrsLnk ] = {1099,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtCrsLnk ] = { 401,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtCrsLnk ] = {1107,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - [ActChgFrcReaCrsInf ] = { 877,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaTchGui ] = { 870,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaSylLec ] = { 871,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaSylPra ] = { 872,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaBib ] = { 873,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaFAQ ] = { 874,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaCrsLnk ] = { 875,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, - [ActChgFrcReaAss ] = { 883,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeForceReadInfo ,NULL}, + // Assessment + [ActSeeAss ] = { 15, 7,TabCrs,ActSeeAss ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ShowInfo }, + [ActEdiAss ] = { 69,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_FormsToSelSendInfo }, + [ActChgFrcReaAss ] = { 883,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeForceReadInfo }, + [ActChgHavReaAss ] = { 898,-1,TabUnk,ActSeeAss ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo }, + [ActSelInfSrcAss ] = { 384,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_SetInfoSrc }, + [ActRcvURLAss ] = { 235,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_ReceiveURLInfo }, + [ActRcvPagAss ] = { 184,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Inf_ReceivePagInfo }, + [ActEditorAss ] = { 386,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditorAssessment }, + [ActPlaTxtEdiAss ] = { 387,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditPlainTxtInfo }, + [ActRchTxtEdiAss ] = {1100,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_EditRichTxtInfo }, + [ActRcvPlaTxtAss ] = { 397,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo }, + [ActRcvRchTxtAss ] = {1108,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo }, - [ActChgHavReaCrsInf ] = { 878,-1,TabUnk,ActSeeCrsInf ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaTchGui ] = { 886,-1,TabUnk,ActSeeTchGui ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaSylLec ] = { 880,-1,TabUnk,ActSeeSyl ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaSylPra ] = { 887,-1,TabUnk,ActSeeSyl ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaBib ] = { 884,-1,TabUnk,ActSeeBib ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaFAQ ] = { 879,-1,TabUnk,ActSeeFAQ ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaCrsLnk ] = { 885,-1,TabUnk,ActSeeCrsLnk ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - [ActChgHavReaAss ] = { 898,-1,TabUnk,ActSeeAss ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ChangeIHaveReadInfo ,NULL}, - - [ActSelInfSrcCrsInf ] = { 849,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcTchGui ] = { 789,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcSylLec ] = { 378,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcSylPra ] = { 382,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcBib ] = { 370,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcFAQ ] = { 380,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcCrsLnk ] = { 385,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - [ActSelInfSrcAss ] = { 384,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_SetInfoSrc ,NULL}, - - [ActRcvURLCrsInf ] = { 854,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLTchGui ] = { 791,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLSylLec ] = { 403,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLSylPra ] = { 402,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLBib ] = { 224,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLFAQ ] = { 234,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLCrsLnk ] = { 182,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - [ActRcvURLAss ] = { 235,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_ReceiveURLInfo ,NULL}, - - [ActRcvPagCrsInf ] = { 853,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagTchGui ] = { 788,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagSylLec ] = { 381,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagSylPra ] = { 383,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagBib ] = { 185,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagFAQ ] = { 219,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagCrsLnk ] = { 164,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - [ActRcvPagAss ] = { 184,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Inf_ReceivePagInfo ,NULL}, - - [ActEditorCrsInf ] = { 852,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditorCourseInfo ,NULL}, - [ActEditorTchGui ] = { 786,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditorTeachingGuide ,NULL}, - [ActEditorSylLec ] = { 372,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_EditSyllabus ,NULL}, - [ActEditorSylPra ] = { 371,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Syl_EditSyllabus ,NULL}, - [ActEditorBib ] = { 376,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditorBibliography ,NULL}, - [ActEditorFAQ ] = { 404,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditorFAQ ,NULL}, - [ActEditorCrsLnk ] = { 388,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditorLinks ,NULL}, - [ActEditorAss ] = { 386,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditorAssessment ,NULL}, - - [ActPlaTxtEdiCrsInf ] = { 850,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiTchGui ] = { 787,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiSylLec ] = { 379,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiSylPra ] = { 389,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiBib ] = { 377,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiFAQ ] = { 405,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiCrsLnk ] = { 400,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - [ActPlaTxtEdiAss ] = { 387,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditPlainTxtInfo ,NULL}, - - [ActRchTxtEdiCrsInf ] = {1093,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiTchGui ] = {1094,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiSylLec ] = {1095,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiSylPra ] = {1096,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiBib ] = {1097,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiFAQ ] = {1098,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiCrsLnk ] = {1099,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - [ActRchTxtEdiAss ] = {1100,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_EditRichTxtInfo ,NULL}, - - [ActRcvPlaTxtCrsInf ] = { 851,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtTchGui ] = { 790,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtSylLec ] = { 394,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtSylPra ] = { 396,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtBib ] = { 398,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtFAQ ] = { 406,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtCrsLnk ] = { 401,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - [ActRcvPlaTxtAss ] = { 397,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, - - [ActRcvRchTxtCrsInf ] = {1101,-1,TabUnk,ActSeeCrsInf ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtTchGui ] = {1102,-1,TabUnk,ActSeeTchGui ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtSylLec ] = {1103,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtSylPra ] = {1104,-1,TabUnk,ActSeeSyl ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtBib ] = {1105,-1,TabUnk,ActSeeBib ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtFAQ ] = {1106,-1,TabUnk,ActSeeFAQ ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtCrsLnk ] = {1107,-1,TabUnk,ActSeeCrsLnk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - [ActRcvRchTxtAss ] = {1108,-1,TabUnk,ActSeeAss ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL}, - - [ActPrnCrsTT ] = { 152,-1,TabUnk,ActSeeCrsTT ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Tmt_ShowClassTimeTable ,NULL}, - [ActEdiCrsTT ] = { 45,-1,TabUnk,ActSeeCrsTT ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tmt_EditCrsTimeTable ,NULL}, - [ActChgCrsTT ] = { 53,-1,TabUnk,ActSeeCrsTT ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tmt_EditCrsTimeTable ,NULL}, - [ActChgCrsTT1stDay ] = {1486,-1,TabUnk,ActSeeCrsTT ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Tmt_ShowClassTimeTable ,NULL}, + // Timetable + [ActSeeCrsTT ] = { 25, 8,TabCrs,ActSeeCrsTT ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tmt_ShowClassTimeTable }, + [ActPrnCrsTT ] = { 152,-1,TabUnk,ActSeeCrsTT ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Tmt_ShowClassTimeTable }, + [ActEdiCrsTT ] = { 45,-1,TabUnk,ActSeeCrsTT ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tmt_EditCrsTimeTable }, + [ActChgCrsTT ] = { 53,-1,TabUnk,ActSeeCrsTT ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tmt_EditCrsTimeTable }, + [ActChgCrsTT1stDay ] = {1486,-1,TabUnk,ActSeeCrsTT ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Tmt_ShowClassTimeTable }, // TabAss ****************************************************************** - // Actions in menu: - [ActSeeAllAsg ] = { 801, 0,TabAss,ActSeeAllAsg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_SeeAssignments ,"edit" }, - [ActSeeAllPrj ] = {1674, 1,TabAss,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_SeeAllProjects ,"file-invoice" }, - [ActSeeAllCfe ] = { 85, 2,TabAss,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cfe_ListCallsForExamsSee ,"bullhorn" }, - [ActEdiTstQst ] = { 104, 3,TabAss,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToPastAndNow ,Qst_ReqEditQsts ,"clipboard-question" }, - [ActReqTst ] = { 103, 4,TabAss,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tst_ReqTest ,"check" }, - [ActSeeAllExa ] = {1848, 5,TabAss,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_SeeAllExams ,"file-signature" }, - [ActSeeAllGam ] = {1649, 6,TabAss,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_SeeAllGames ,"gamepad" }, - [ActSeeAllRub ] = {1951, 7,TabAss,ActSeeAllRub ,0x200,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_SeeAllRubrics ,"tasks" }, + // Assignments + [ActSeeAllAsg ] = { 801, 0,TabAss,ActSeeAllAsg ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_SeeAssignments }, + [ActFrmNewAsg ] = { 812,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_ReqCreatOrEditAsg }, + [ActEdiOneAsg ] = { 814,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_ReqCreatOrEditAsg }, + [ActSeeOneAsg ] = {1942,-1,TabUnk,ActSeeAllAsg ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_SeeOneAssignment }, + [ActPrnOneAsg ] = {1637,-1,TabUnk,ActSeeAllAsg ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Asg_PrintOneAssignment }, + [ActNewAsg ] = { 803,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_ReceiveFormAssignment }, + [ActChgAsg ] = { 815,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_ReceiveFormAssignment }, + [ActReqRemAsg ] = { 813,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_ReqRemAssignment }, + [ActRemAsg ] = { 806,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_RemoveAssignment }, + [ActHidAsg ] = { 964,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_HideAssignment }, + [ActUnhAsg ] = { 965,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Asg_UnhideAssignment }, + [ActReqLnkAsg ] = {1943,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,AsgRsc_GetLinkToAssignment }, - // Actions not in menu: - [ActFrmNewAsg ] = { 812,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_ReqCreatOrEditAsg ,NULL}, - [ActEdiOneAsg ] = { 814,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_ReqCreatOrEditAsg ,NULL}, - [ActSeeOneAsg ] = {1942,-1,TabUnk,ActSeeAllAsg ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_SeeOneAssignment ,NULL}, - [ActPrnOneAsg ] = {1637,-1,TabUnk,ActSeeAllAsg ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Asg_PrintOneAssignment ,NULL}, - [ActNewAsg ] = { 803,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_ReceiveFormAssignment ,NULL}, - [ActChgAsg ] = { 815,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_ReceiveFormAssignment ,NULL}, - [ActReqRemAsg ] = { 813,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_ReqRemAssignment ,NULL}, - [ActRemAsg ] = { 806,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_RemoveAssignment ,NULL}, - [ActHidAsg ] = { 964,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_HideAssignment ,NULL}, - [ActUnhAsg ] = { 965,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Asg_UnhideAssignment ,NULL}, - [ActReqLnkAsg ] = {1943,-1,TabUnk,ActSeeAllAsg ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,AsgRsc_GetLinkToAssignment ,NULL}, + // Projects + [ActSeeAllPrj ] = {1674, 1,TabAss,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_SeeAllProjects }, + [ActCfgPrj ] = {1803,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrjCfg_ShowFormConfig }, + [ActChgNETCanCrePrj ] = {1804,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrjCfg_ChangeNETCanCreate }, + [ActChgRubPrj ] = {1977,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrjCfg_ChangeRubricsOfType }, + [ActReqUsrPrj ] = {1805,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ListUsrsToSelect }, + [ActSeeTblAllPrj ] = {1696,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Prj_ShowTableSelectedPrjs }, + [ActReqLckAllPrj ] = {1775,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqLockSelectedPrjsEdition }, + [ActReqUnlAllPrj ] = {1776,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqUnloSelectedPrjsEdition }, + [ActLckAllPrj ] = {1777,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_LockSelectedPrjsEdition }, + [ActUnlAllPrj ] = {1778,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_UnloSelectedPrjsEdition }, + [ActFrmNewPrj ] = {1675,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqCreatePrj }, + [ActEdiOnePrj ] = {1676,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqEditPrj }, + [ActSeeOnePrj ] = {1949,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActPrnOnePrj ] = {1677,-1,TabUnk,ActSeeAllPrj ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Prj_PrintOneProject }, + [ActNewPrj ] = {1678,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReceiveFormProject }, + [ActChgPrj ] = {1679,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReceiveFormProject }, + [ActReqRemPrj ] = {1680,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqRemProject }, + [ActRemPrj ] = {1681,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_RemoveProject }, + [ActHidPrj ] = {1682,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_HideProject }, + [ActUnhPrj ] = {1683,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_UnhideProject }, + [ActLckPrj ] = {1773,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NR,NULL ,Prj_LockProjectEdition }, + [ActUnlPrj ] = {1774,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NR,NULL ,Prj_UnloProjectEdition }, + [ActChgPrjRev ] = {1950,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ChangeReviewStatus }, + [ActReqAddStdPrj ] = {1684,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqAddStds }, + [ActReqAddTutPrj ] = {1685,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqAddTuts }, + [ActReqAddEvlPrj ] = {1686,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqAddEvls }, + [ActAddStdPrj ] = {1687,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_GetSelectedUsrsAndAddStds }, + [ActAddTutPrj ] = {1688,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_GetSelectedUsrsAndAddTuts }, + [ActAddEvlPrj ] = {1689,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_GetSelectedUsrsAndAddEvls }, + [ActReqRemStdPrj ] = {1690,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqRemStd }, + [ActReqRemTutPrj ] = {1691,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqRemTut }, + [ActReqRemEvlPrj ] = {1692,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ReqRemEvl }, + [ActRemStdPrj ] = {1693,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_RemStd }, + [ActRemTutPrj ] = {1694,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_RemTut }, + [ActRemEvlPrj ] = {1695,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_RemEvl }, + [ActChgPrjSco ] = {1974,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prj_ChangeCriterionScore }, + [ActReqLnkPrj ] = {1948,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,PrjRsc_GetLinkToProject }, + [ActAdmDocPrj ] = {1697,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilDocPrj ] = {1698,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilDocPrj ] = {1699,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolDocPrj ] = {1700,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopDocPrj ] = {1701,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasDocPrj ] = {1702,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreDocPrj ] = {1703,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreDocPrj ] = {1704,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolDocPrj ] = {1705,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkDocPrj ] = {1706,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolDocPrj ] = {1707,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilDocPrjDZ ] = {1708,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilDocPrjCla ] = {1709,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpDocPrj ] = {1710,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConDocPrj ] = {1711,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPDocPrj ] = {1712,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatDocPrj ] = {1713,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatDocPrj ] = {1714,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowDocPrj ] = {1715,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActAdmAssPrj ] = {1716,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilAssPrj ] = {1717,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilAssPrj ] = {1718,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolAssPrj ] = {1719,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopAssPrj ] = {1720,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasAssPrj ] = {1721,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreAssPrj ] = {1722,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreAssPrj ] = {1723,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolAssPrj ] = {1724,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkAssPrj ] = {1725,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolAssPrj ] = {1726,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilAssPrjDZ ] = {1727,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilAssPrjCla ] = {1728,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAssPrj ] = {1729,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAssPrj ] = {1730,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAssPrj ] = {1731,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatAssPrj ] = {1732,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAssPrj ] = {1733,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAssPrj ] = {1734,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActCfgPrj ] = {1803,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrjCfg_ShowFormConfig ,NULL}, - [ActChgNETCanCrePrj ] = {1804,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrjCfg_ChangeNETCanCreate ,NULL}, - [ActChgRubPrj ] = {1977,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrjCfg_ChangeRubricsOfType ,NULL}, - [ActReqUsrPrj ] = {1805,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ListUsrsToSelect ,NULL}, - [ActSeeTblAllPrj ] = {1696,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Prj_ShowTableSelectedPrjs ,NULL}, - [ActReqLckAllPrj ] = {1775,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqLockSelectedPrjsEdition ,NULL}, - [ActReqUnlAllPrj ] = {1776,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqUnloSelectedPrjsEdition ,NULL}, - [ActLckAllPrj ] = {1777,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_LockSelectedPrjsEdition ,NULL}, - [ActUnlAllPrj ] = {1778,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_UnloSelectedPrjsEdition ,NULL}, - [ActFrmNewPrj ] = {1675,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqCreatePrj ,NULL}, - [ActEdiOnePrj ] = {1676,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqEditPrj ,NULL}, - [ActSeeOnePrj ] = {1949,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActPrnOnePrj ] = {1677,-1,TabUnk,ActSeeAllPrj ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Prj_PrintOneProject ,NULL}, - [ActNewPrj ] = {1678,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReceiveFormProject ,NULL}, - [ActChgPrj ] = {1679,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReceiveFormProject ,NULL}, - [ActReqRemPrj ] = {1680,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqRemProject ,NULL}, - [ActRemPrj ] = {1681,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_RemoveProject ,NULL}, - [ActHidPrj ] = {1682,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_HideProject ,NULL}, - [ActUnhPrj ] = {1683,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_UnhideProject ,NULL}, - [ActLckPrj ] = {1773,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,Prj_LockProjectEdition ,NULL}, - [ActUnlPrj ] = {1774,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,Prj_UnloProjectEdition ,NULL}, - [ActChgPrjRev ] = {1950,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ChangeReviewStatus ,NULL}, - [ActReqAddStdPrj ] = {1684,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqAddStds ,NULL}, - [ActReqAddTutPrj ] = {1685,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqAddTuts ,NULL}, - [ActReqAddEvlPrj ] = {1686,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqAddEvls ,NULL}, - [ActAddStdPrj ] = {1687,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_GetSelectedUsrsAndAddStds ,NULL}, - [ActAddTutPrj ] = {1688,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_GetSelectedUsrsAndAddTuts ,NULL}, - [ActAddEvlPrj ] = {1689,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_GetSelectedUsrsAndAddEvls ,NULL}, - [ActReqRemStdPrj ] = {1690,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqRemStd ,NULL}, - [ActReqRemTutPrj ] = {1691,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqRemTut ,NULL}, - [ActReqRemEvlPrj ] = {1692,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ReqRemEvl ,NULL}, - [ActRemStdPrj ] = {1693,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_RemStd ,NULL}, - [ActRemTutPrj ] = {1694,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_RemTut ,NULL}, - [ActRemEvlPrj ] = {1695,-1,TabUnk,ActSeeAllPrj ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_RemEvl ,NULL}, - [ActChgPrjSco ] = {1974,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prj_ChangeCriterionScore ,NULL}, - [ActReqLnkPrj ] = {1948,-1,TabUnk,ActSeeAllPrj ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,PrjRsc_GetLinkToProject ,NULL}, + // Calls for exams + [ActSeeAllCfe ] = { 85, 2,TabAss,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cfe_ListCallsForExamsSee }, + [ActSeeOneCfe ] = {1572,-1,TabUnk,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cfe_ListCallsForExamsCod }, + [ActSeeDatCfe ] = {1571,-1,TabUnk,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cfe_ListCallsForExamsDay }, + [ActEdiCfe ] = { 91,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cfe_PutFrmEditACallForExam }, + [ActRcvCfe ] = { 110,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Cfe_ReceiveCallForExam1 ,Cfe_ReceiveCallForExam2 }, + [ActPrnCfe ] = { 179,-1,TabUnk,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Cfe_PrintCallForExam }, + [ActReqRemCfe ] = {1619,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cfe_ReqRemCallForExam }, + [ActRemCfe ] = { 187,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Cfe_RemoveCallForExam1 ,Cfe_RemoveCallForExam2 }, + [ActHidCfe ] = {1620,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Cfe_HideCallForExam ,Cfe_ListCallsForExamsEdit }, + [ActUnhCfe ] = {1621,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Cfe_UnhideCallForExam ,Cfe_ListCallsForExamsEdit }, + [ActReqLnkCfe ] = {1934,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,CfeRsc_GetLinkToCallForExam }, - [ActAdmDocPrj ] = {1697,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilDocPrj ] = {1698,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilDocPrj ] = {1699,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolDocPrj ] = {1700,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopDocPrj ] = {1701,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasDocPrj ] = {1702,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreDocPrj ] = {1703,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreDocPrj ] = {1704,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolDocPrj ] = {1705,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkDocPrj ] = {1706,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolDocPrj ] = {1707,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilDocPrjDZ ] = {1708,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilDocPrjCla ] = {1709,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpDocPrj ] = {1710,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConDocPrj ] = {1711,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPDocPrj ] = {1712,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatDocPrj ] = {1713,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatDocPrj ] = {1714,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowDocPrj ] = {1715,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Questions + [ActEdiTstQst ] = { 104, 3,TabAss,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToPastAndNow,Qst_ReqEditQsts }, + [ActEdiOneTstQst ] = { 105,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_ShowFormEditOneQst }, + [ActReqImpTstQst ] = {1007,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,QstImp_ShowFormImpQstsFromXML }, + [ActImpTstQst ] = {1008,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,QstImp_ImpQstsFromXML }, + [ActLstTstQst ] = { 132,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_ListQuestionsToEdit }, + [ActNewTstQst ] = { 126,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Qst_ReceiveQst }, + [ActChgTstQst ] = {1975,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Qst_ReceiveQst }, + [ActReqRemSevTstQst ] = {1835,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_ReqRemSelectedQsts }, + [ActRemSevTstQst ] = {1836,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_RemoveSelectedQsts }, + [ActReqRemOneTstQst ] = {1523,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_ReqRemOneQst }, + [ActRemOneTstQst ] = { 133,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_RemoveOneQst }, + [ActChgShfTstQst ] = { 455,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Qst_ChangeShuffleQst }, + [ActEdiTag ] = {1907,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tag_ShowFormEditTags }, + [ActEnaTag ] = { 453,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tag_EnableTag }, + [ActDisTag ] = { 452,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tag_DisableTag }, + [ActRenTag ] = { 143,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tag_RenameTag }, - [ActAdmAssPrj ] = {1716,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilAssPrj ] = {1717,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilAssPrj ] = {1718,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolAssPrj ] = {1719,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopAssPrj ] = {1720,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasAssPrj ] = {1721,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreAssPrj ] = {1722,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreAssPrj ] = {1723,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolAssPrj ] = {1724,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkAssPrj ] = {1725,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolAssPrj ] = {1726,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilAssPrjDZ ] = {1727,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilAssPrjCla ] = {1728,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAssPrj ] = {1729,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAssPrj ] = {1730,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAssPrj ] = {1731,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatAssPrj ] = {1732,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAssPrj ] = {1733,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAssPrj ] = {1734,-1,TabUnk,ActSeeAllPrj ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Test + [ActReqTst ] = { 103, 4,TabAss,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tst_ReqTest }, + [ActSeeTst ] = { 29,-1,TabUnk,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tst_ShowNewTest }, + [ActReqAssTst ] = {1837,-1,TabUnk,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tst_ReceiveTestDraft }, + [ActAssTst ] = { 98,-1,TabUnk,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tst_AssessTest }, + [ActCfgTst ] = { 451,-1,TabUnk,ActReqTst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,TstCfg_CheckAndShowFormConfig }, + [ActRcvCfgTst ] = { 454,-1,TabUnk,ActReqTst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,TstCfg_ReceiveConfigTst }, + [ActReqSeeMyTstRes ] = {1083,-1,TabUnk,ActReqTst ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToPastAndNow,TstPrn_SelDatesToSeeMyPrints}, + [ActSeeMyTstResCrs ] = {1084,-1,TabUnk,ActReqTst ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,TstPrn_ShowMyPrints }, + [ActSeeOneTstResMe ] = {1085,-1,TabUnk,ActReqTst ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,TstPrn_ShowOnePrint }, + [ActReqSeeUsrTstRes ] = {1080,-1,TabUnk,ActReqTst ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToPastAndNow,TstPrn_SelUsrsToViewUsrsPrints}, + [ActSeeUsrTstResCrs ] = {1081,-1,TabUnk,ActReqTst ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,TstPrn_GetUsrsAndShowPrints }, + [ActSeeOneTstResOth ] = {1082,-1,TabUnk,ActReqTst ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,TstPrn_ShowOnePrint }, - [ActSeeOneCfe ] = {1572,-1,TabUnk,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cfe_ListCallsForExamsCod ,NULL}, - [ActSeeDatCfe ] = {1571,-1,TabUnk,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cfe_ListCallsForExamsDay ,NULL}, - [ActEdiCfe ] = { 91,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cfe_PutFrmEditACallForExam ,NULL}, - [ActRcvCfe ] = { 110,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Cfe_ReceiveCallForExam1 ,Cfe_ReceiveCallForExam2 ,NULL}, - [ActPrnCfe ] = { 179,-1,TabUnk,ActSeeAllCfe ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Cfe_PrintCallForExam ,NULL}, - [ActReqRemCfe ] = {1619,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cfe_ReqRemCallForExam ,NULL}, - [ActRemCfe ] = { 187,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Cfe_RemoveCallForExam1 ,Cfe_RemoveCallForExam2 ,NULL}, - [ActHidCfe ] = {1620,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Cfe_HideCallForExam ,Cfe_ListCallsForExamsEdit ,NULL}, - [ActUnhCfe ] = {1621,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Cfe_UnhideCallForExam ,Cfe_ListCallsForExamsEdit ,NULL}, - [ActReqLnkCfe ] = {1934,-1,TabUnk,ActSeeAllCfe ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,CfeRsc_GetLinkToCallForExam ,NULL}, + // Exams + [ActSeeAllExa ] = {1848, 5,TabAss,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_SeeAllExams }, + [ActSeeOneExa ] = {1849,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_SeeOneExam }, + [ActFrmNewExa ] = {1877,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_ReqCreatOrEditExam }, + [ActEdiOneExa ] = {1878,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_ReqCreatOrEditExam }, + [ActNewExa ] = {1879,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_ReceiveFormExam }, + [ActChgExa ] = {1880,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_ReceiveFormExam }, + [ActReqRemExa ] = {1881,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_AskRemExam }, + [ActRemExa ] = {1882,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_RemoveExam }, + [ActHidExa ] = {1883,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_HideExam }, + [ActUnhExa ] = {1884,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Exa_UnhideExam }, + [ActReqLnkExa ] = {1936,-1,TabUnk,ActSeeAllExa ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRsc_GetLinkToExam }, + [ActNewExaSet ] = {1898,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ReceiveFormSet }, + [ActReqRemExaSet ] = {1893,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ReqRemSet }, + [ActRemExaSet ] = {1894,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_RemoveSet }, + [ActUp_ExaSet ] = {1895,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_MoveUpSet }, + [ActDwnExaSet ] = {1896,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_MoveDownSet }, + [ActChgTitExaSet ] = {1897,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ChangeSetTitle }, + [ActChgNumQstExaSet ] = {1899,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ChangeNumQstsToExam }, + [ActReqAddQstExaSet ] = {1885,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToPastAndNow,ExaSet_ReqSelectQstsToAddToSet}, + [ActLstTstQstForSet ] = {1886,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ListQstsToAddToSet }, + [ActAddQstToExa ] = {1887,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_AddQstsToSet }, + [ActReqRemSetQst ] = {1888,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ReqRemQstFromSet }, + [ActRemExaQst ] = {1889,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_RemoveQstFromSet }, + [ActValSetQst ] = {1909,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_ValidateQst }, + [ActInvSetQst ] = {1910,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSet_InvalidateQst }, + [ActReqNewExaSes ] = {1852,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_ReqCreatOrEditSes }, + [ActReqChgExaSes ] = {1902,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_ReqCreatOrEditSes }, + [ActNewExaSes ] = {1853,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_ReceiveFormSession }, + [ActChgExaSes ] = {1903,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_ReceiveFormSession }, + [ActReqRemExaSes ] = {1850,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_ReqRemSession }, + [ActRemExaSes ] = {1851,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_RemoveSession }, + [ActHidExaSes ] = {1900,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_HideSession }, + [ActUnhExaSes ] = {1901,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_UnhideSession }, + [ActSeeExaPrn ] = {1904,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaPrn_ShowExamPrint }, + [ActAnsExaPrn ] = {1906,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NR,NULL ,ExaPrn_ReceivePrintAnswer }, + [ActEndExaPrn ] = {1908,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,ExaRes_ShowExaResultAfterFinish}, + [ActSeeMyExaResCrs ] = {1867,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowMyResultsInCrs }, + [ActSeeMyExaResExa ] = {1868,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowMyResultsInExa }, + [ActSeeMyExaResSes ] = {1869,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowMyResultsInSes }, + [ActSeeOneExaResMe ] = {1870,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowOneExaResult }, + [ActReqSeeUsrExaRes ] = {1871,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_SelUsrsToViewResults }, + [ActSeeUsrExaResCrs ] = {1872,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowAllResultsInCrs }, + [ActSeeUsrExaResExa ] = {1873,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowAllResultsInExa }, + [ActSeeUsrExaResSes ] = {1874,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowAllResultsInSes }, + [ActSeeOneExaResOth ] = {1875,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaRes_ShowOneExaResult }, + [ActChgVisExaRes ] = {1876,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ExaSes_ToggleVisResultsSesUsr }, - [ActEdiOneTstQst ] = { 105,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_ShowFormEditOneQst ,NULL}, - [ActReqImpTstQst ] = {1007,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,QstImp_ShowFormImpQstsFromXML ,NULL}, - [ActImpTstQst ] = {1008,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,QstImp_ImpQstsFromXML ,NULL}, - [ActLstTstQst ] = { 132,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_ListQuestionsToEdit ,NULL}, - [ActNewTstQst ] = { 126,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Qst_ReceiveQst ,NULL}, - [ActChgTstQst ] = {1975,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Qst_ReceiveQst ,NULL}, - [ActReqRemSevTstQst ] = {1835,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_ReqRemSelectedQsts ,NULL}, - [ActRemSevTstQst ] = {1836,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_RemoveSelectedQsts ,NULL}, - [ActReqRemOneTstQst ] = {1523,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_ReqRemOneQst ,NULL}, - [ActRemOneTstQst ] = { 133,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_RemoveOneQst ,NULL}, - [ActChgShfTstQst ] = { 455,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Qst_ChangeShuffleQst ,NULL}, + // Games + [ActSeeAllGam ] = {1649, 6,TabAss,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_SeeAllGames }, + [ActSeeOneGam ] = {1650,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_SeeOneGame }, + [ActReqNewMch ] = {1670,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mch_ReqCreatOrEditMatch }, + [ActReqChgMch ] = {1913,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mch_ReqCreatOrEditMatch }, + [ActNewMch ] = {1671,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,Mch_CreateNewMatch ,Mch_ResumeMatch }, + [ActChgMch ] = {1914,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mch_ChangeMatch }, + [ActReqRemMch ] = {1783,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mch_ReqRemMatch }, + [ActRemMch ] = {1784,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mch_RemoveMatch }, + [ActResMch ] = {1785,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,Mch_GetMatchBeingPlayed ,Mch_ResumeMatch }, + [ActBckMch ] = {1790,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_BackMatch }, + [ActPlyPauMch ] = {1789,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_PlayPauseMatch }, + [ActFwdMch ] = {1672,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ForwardMatch }, + [ActChgNumColMch ] = {1802,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ChangeNumColsMch }, + [ActChgVisResMchQst ] = {1794,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ToggleVisResultsMchQst }, + [ActMchCntDwn ] = {1814,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NR,Mch_GetMatchBeingPlayed ,Mch_StartCountdown }, + [ActRefMchTch ] = {1788,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_RF,Mch_GetMatchBeingPlayed ,Mch_RefreshMatchTch }, + [ActJoiMch ] = {1780,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,Mch_GetMatchBeingPlayed ,Mch_JoinMatchAsStd }, + [ActSeeMchAnsQstStd ] = {1808,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_JoinMatchAsStd }, + [ActRemMchAnsQstStd ] = {1809,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_RemMyQstAnsAndShowMchStatus}, + [ActAnsMchQstStd ] = {1651,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ReceiveQuestionAnswer }, + [ActRefMchStd ] = {1782,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_RF,Mch_GetMatchBeingPlayed ,Mch_RefreshMatchStd }, + [ActSeeMyMchResCrs ] = {1796,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowMyMchResultsInCrs }, + [ActSeeMyMchResGam ] = {1810,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowMyMchResultsInGam }, + [ActSeeMyMchResMch ] = {1812,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowMyMchResultsInMch }, + [ActSeeOneMchResMe ] = {1797,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowOneMchResult }, + [ActReqSeeUsrMchRes ] = {1798,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_SelUsrsToViewMchResults }, + [ActSeeUsrMchResCrs ] = {1799,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowAllMchResultsInCrs }, + [ActSeeUsrMchResGam ] = {1811,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowAllMchResultsInGam }, + [ActSeeUsrMchResMch ] = {1813,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowAllMchResultsInMch }, + [ActSeeOneMchResOth ] = {1800,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,MchRes_ShowOneMchResult }, + [ActChgVisResMchUsr ] = {1801,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mch_ToggleVisResultsMchUsr }, + [ActLstOneGam ] = {1912,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ListGame }, + [ActFrmNewGam ] = {1652,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ReqCreatOrEditGame }, + [ActEdiOneGam ] = {1653,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ReqCreatOrEditGame }, + [ActNewGam ] = {1654,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ReceiveFormGame }, + [ActChgGam ] = {1655,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ReceiveFormGame }, + [ActReqRemGam ] = {1656,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_AskRemGame }, + [ActRemGam ] = {1657,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_RemoveGame }, + [ActHidGam ] = {1660,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_HideGame }, + [ActUnhGam ] = {1661,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_UnhideGame }, + [ActAddOneGamQst ] = {1662,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToPastAndNow,Gam_ReqSelectQstsToAddToGame}, + [ActGamLstTstQst ] = {1666,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ListQstsToAddToGame }, + [ActAddTstQstToGam ] = {1667,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_AddQstsToGame }, + [ActReqRemGamQst ] = {1664,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_ReqRemQstFromGame }, + [ActRemGamQst ] = {1665,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_RemoveQstFromGame }, + [ActUp_GamQst ] = {1668,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_MoveUpQst }, + [ActDwnGamQst ] = {1669,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Gam_MoveDownQst }, + [ActReqLnkGam ] = {1935,-1,TabUnk,ActSeeAllGam ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,GamRsc_GetLinkToGame }, - [ActEdiTag ] = {1907,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tag_ShowFormEditTags ,NULL}, - [ActEnaTag ] = { 453,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tag_EnableTag ,NULL}, - [ActDisTag ] = { 452,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tag_DisableTag ,NULL}, - [ActRenTag ] = { 143,-1,TabUnk,ActEdiTstQst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tag_RenameTag ,NULL}, - - [ActSeeTst ] = { 29,-1,TabUnk,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tst_ShowNewTest ,NULL}, - [ActReqAssTst ] = {1837,-1,TabUnk,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tst_ReceiveTestDraft ,NULL}, - [ActAssTst ] = { 98,-1,TabUnk,ActReqTst ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tst_AssessTest ,NULL}, - - [ActCfgTst ] = { 451,-1,TabUnk,ActReqTst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TstCfg_CheckAndShowFormConfig ,NULL}, - [ActRcvCfgTst ] = { 454,-1,TabUnk,ActReqTst ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TstCfg_ReceiveConfigTst ,NULL}, - - [ActReqSeeMyTstRes ] = {1083,-1,TabUnk,ActReqTst ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToPastAndNow ,TstPrn_SelDatesToSeeMyPrints ,NULL}, - [ActSeeMyTstResCrs ] = {1084,-1,TabUnk,ActReqTst ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TstPrn_ShowMyPrints ,NULL}, - [ActSeeOneTstResMe ] = {1085,-1,TabUnk,ActReqTst ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TstPrn_ShowOnePrint ,NULL}, - [ActReqSeeUsrTstRes ] = {1080,-1,TabUnk,ActReqTst ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToPastAndNow ,TstPrn_SelUsrsToViewUsrsPrints ,NULL}, - [ActSeeUsrTstResCrs ] = {1081,-1,TabUnk,ActReqTst ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TstPrn_GetUsrsAndShowPrints ,NULL}, - [ActSeeOneTstResOth ] = {1082,-1,TabUnk,ActReqTst ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,TstPrn_ShowOnePrint ,NULL}, - - [ActSeeOneExa ] = {1849,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_SeeOneExam ,NULL}, - - [ActFrmNewExa ] = {1877,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_ReqCreatOrEditExam ,NULL}, - [ActEdiOneExa ] = {1878,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_ReqCreatOrEditExam ,NULL}, - [ActNewExa ] = {1879,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_ReceiveFormExam ,NULL}, - [ActChgExa ] = {1880,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_ReceiveFormExam ,NULL}, - [ActReqRemExa ] = {1881,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_AskRemExam ,NULL}, - [ActRemExa ] = {1882,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_RemoveExam ,NULL}, - [ActHidExa ] = {1883,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_HideExam ,NULL}, - [ActUnhExa ] = {1884,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Exa_UnhideExam ,NULL}, - [ActReqLnkExa ] = {1936,-1,TabUnk,ActSeeAllExa ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRsc_GetLinkToExam ,NULL}, - - [ActNewExaSet ] = {1898,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ReceiveFormSet ,NULL}, - [ActReqRemExaSet ] = {1893,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ReqRemSet ,NULL}, - [ActRemExaSet ] = {1894,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_RemoveSet ,NULL}, - [ActUp_ExaSet ] = {1895,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_MoveUpSet ,NULL}, - [ActDwnExaSet ] = {1896,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_MoveDownSet ,NULL}, - [ActChgTitExaSet ] = {1897,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ChangeSetTitle ,NULL}, - [ActChgNumQstExaSet ] = {1899,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ChangeNumQstsToExam ,NULL}, - - [ActReqAddQstExaSet ] = {1885,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToPastAndNow ,ExaSet_ReqSelectQstsToAddToSet ,NULL}, - [ActLstTstQstForSet ] = {1886,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ListQstsToAddToSet ,NULL}, - [ActAddQstToExa ] = {1887,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_AddQstsToSet ,NULL}, - [ActReqRemSetQst ] = {1888,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ReqRemQstFromSet ,NULL}, - [ActRemExaQst ] = {1889,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_RemoveQstFromSet ,NULL}, - [ActValSetQst ] = {1909,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_ValidateQst ,NULL}, - [ActInvSetQst ] = {1910,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSet_InvalidateQst ,NULL}, - - [ActReqNewExaSes ] = {1852,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_ReqCreatOrEditSes ,NULL}, - [ActReqChgExaSes ] = {1902,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_ReqCreatOrEditSes ,NULL}, - [ActNewExaSes ] = {1853,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_ReceiveFormSession ,NULL}, - [ActChgExaSes ] = {1903,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_ReceiveFormSession ,NULL}, - [ActReqRemExaSes ] = {1850,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_ReqRemSession ,NULL}, - [ActRemExaSes ] = {1851,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_RemoveSession ,NULL}, - [ActHidExaSes ] = {1900,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_HideSession ,NULL}, - [ActUnhExaSes ] = {1901,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_UnhideSession ,NULL}, - - [ActSeeExaPrn ] = {1904,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaPrn_ShowExamPrint ,NULL}, - [ActAnsExaPrn ] = {1906,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NORMAL,NULL ,ExaPrn_ReceivePrintAnswer ,NULL}, - [ActEndExaPrn ] = {1908,-1,TabUnk,ActSeeAllExa ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,ExaRes_ShowExaResultAfterFinish,NULL}, - - [ActSeeMyExaResCrs ] = {1867,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowMyResultsInCrs ,NULL}, - [ActSeeMyExaResExa ] = {1868,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowMyResultsInExa ,NULL}, - [ActSeeMyExaResSes ] = {1869,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowMyResultsInSes ,NULL}, - [ActSeeOneExaResMe ] = {1870,-1,TabUnk,ActSeeAllExa ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowOneExaResult ,NULL}, - - [ActReqSeeUsrExaRes ] = {1871,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_SelUsrsToViewResults ,NULL}, - [ActSeeUsrExaResCrs ] = {1872,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowAllResultsInCrs ,NULL}, - [ActSeeUsrExaResExa ] = {1873,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowAllResultsInExa ,NULL}, - [ActSeeUsrExaResSes ] = {1874,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowAllResultsInSes ,NULL}, - [ActSeeOneExaResOth ] = {1875,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaRes_ShowOneExaResult ,NULL}, - - [ActChgVisExaRes ] = {1876,-1,TabUnk,ActSeeAllExa ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ExaSes_ToggleVisResultsSesUsr ,NULL}, - - [ActSeeOneGam ] = {1650,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_SeeOneGame ,NULL}, - - [ActReqNewMch ] = {1670,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mch_ReqCreatOrEditMatch ,NULL}, - [ActReqChgMch ] = {1913,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mch_ReqCreatOrEditMatch ,NULL}, - [ActNewMch ] = {1671,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,Mch_CreateNewMatch ,Mch_ResumeMatch ,NULL}, - [ActChgMch ] = {1914,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mch_ChangeMatch ,NULL}, - [ActReqRemMch ] = {1783,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mch_ReqRemMatch ,NULL}, - [ActRemMch ] = {1784,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mch_RemoveMatch ,NULL}, - [ActResMch ] = {1785,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,Mch_GetMatchBeingPlayed ,Mch_ResumeMatch ,NULL}, - [ActBckMch ] = {1790,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_BackMatch ,NULL}, - [ActPlyPauMch ] = {1789,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_PlayPauseMatch ,NULL}, - [ActFwdMch ] = {1672,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ForwardMatch ,NULL}, - [ActChgNumColMch ] = {1802,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ChangeNumColsMch ,NULL}, - [ActChgVisResMchQst ] = {1794,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ToggleVisResultsMchQst ,NULL}, - [ActMchCntDwn ] = {1814,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_NORMAL,Mch_GetMatchBeingPlayed ,Mch_StartCountdown ,NULL}, - [ActRefMchTch ] = {1788,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_RFRESH,Mch_GetMatchBeingPlayed ,Mch_RefreshMatchTch ,NULL}, - - [ActJoiMch ] = {1780,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,Mch_GetMatchBeingPlayed ,Mch_JoinMatchAsStd ,NULL}, - [ActSeeMchAnsQstStd ] = {1808,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_JoinMatchAsStd ,NULL}, - [ActRemMchAnsQstStd ] = {1809,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_RemMyQstAnsAndShowMchStatus,NULL}, - [ActAnsMchQstStd ] = {1651,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_2ND_TAB,Mch_GetMatchBeingPlayed ,Mch_ReceiveQuestionAnswer ,NULL}, - [ActRefMchStd ] = {1782,-1,TabUnk,ActSeeAllGam ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_AJAX_RFRESH,Mch_GetMatchBeingPlayed ,Mch_RefreshMatchStd ,NULL}, - - [ActSeeMyMchResCrs ] = {1796,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowMyMchResultsInCrs ,NULL}, - [ActSeeMyMchResGam ] = {1810,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowMyMchResultsInGam ,NULL}, - [ActSeeMyMchResMch ] = {1812,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowMyMchResultsInMch ,NULL}, - [ActSeeOneMchResMe ] = {1797,-1,TabUnk,ActSeeAllGam ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowOneMchResult ,NULL}, - - [ActReqSeeUsrMchRes ] = {1798,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_SelUsrsToViewMchResults ,NULL}, - [ActSeeUsrMchResCrs ] = {1799,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowAllMchResultsInCrs ,NULL}, - [ActSeeUsrMchResGam ] = {1811,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowAllMchResultsInGam ,NULL}, - [ActSeeUsrMchResMch ] = {1813,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowAllMchResultsInMch ,NULL}, - [ActSeeOneMchResOth ] = {1800,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MchRes_ShowOneMchResult ,NULL}, - - [ActChgVisResMchUsr ] = {1801,-1,TabUnk,ActSeeAllGam ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mch_ToggleVisResultsMchUsr ,NULL}, - - [ActLstOneGam ] = {1912,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ListGame ,NULL}, - - [ActFrmNewGam ] = {1652,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ReqCreatOrEditGame ,NULL}, - [ActEdiOneGam ] = {1653,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ReqCreatOrEditGame ,NULL}, - [ActNewGam ] = {1654,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ReceiveFormGame ,NULL}, - [ActChgGam ] = {1655,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ReceiveFormGame ,NULL}, - [ActReqRemGam ] = {1656,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_AskRemGame ,NULL}, - [ActRemGam ] = {1657,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_RemoveGame ,NULL}, - [ActHidGam ] = {1660,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_HideGame ,NULL}, - [ActUnhGam ] = {1661,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_UnhideGame ,NULL}, - [ActAddOneGamQst ] = {1662,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToPastAndNow ,Gam_ReqSelectQstsToAddToGame ,NULL}, - [ActGamLstTstQst ] = {1666,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ListQstsToAddToGame ,NULL}, - [ActAddTstQstToGam ] = {1667,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_AddQstsToGame ,NULL}, - [ActReqRemGamQst ] = {1664,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_ReqRemQstFromGame ,NULL}, - [ActRemGamQst ] = {1665,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_RemoveQstFromGame ,NULL}, - [ActUp_GamQst ] = {1668,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_MoveUpQst ,NULL}, - [ActDwnGamQst ] = {1669,-1,TabUnk,ActSeeAllGam ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Gam_MoveDownQst ,NULL}, - [ActReqLnkGam ] = {1935,-1,TabUnk,ActSeeAllGam ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,GamRsc_GetLinkToGame ,NULL}, - - [ActSeeOneRub ] = {1952,-1,TabUnk,ActSeeAllRub ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_SeeOneRubric ,NULL}, - [ActFrmNewRub ] = {1953,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_ReqCreatOrEditRubric ,NULL}, - [ActEdiOneRub ] = {1954,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_ReqCreatOrEditRubric ,NULL}, - [ActNewRub ] = {1955,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_ReceiveFormRubric ,NULL}, - [ActChgRub ] = {1956,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_ReceiveFormRubric ,NULL}, - [ActReqRemRub ] = {1957,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_AskRemRubric ,NULL}, - [ActRemRub ] = {1958,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rub_RemoveRubric ,NULL}, - [ActReqLnkRub ] = {1969,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubRsc_GetLinkToRubric ,NULL}, - [ActSeeRscCli_InRub ] = {1972,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubRsc_ViewResourceClipboard ,NULL}, - [ActRemRscCli_InRub ] = {1973,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubRsc_RemoveResourceClipboard ,NULL}, - - [ActNewRubCri ] = {1959,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ReceiveFormCriterion ,NULL}, - [ActReqRemRubCri ] = {1960,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ReqRemCriterion ,NULL}, - [ActRemRubCri ] = {1961,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_RemoveCriterion ,NULL}, - [ActUp_RubCri ] = {1962,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_MoveUpCriterion ,NULL}, - [ActDwnRubCri ] = {1963,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_MoveDownCriterion ,NULL}, - [ActChgTitRubCri ] = {1964,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ChangeTitle ,NULL}, - [ActChgLnkRubCri ] = {1968,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ChangeLink ,NULL}, - [ActChgMinRubCri ] = {1965,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ChangeMinValue ,NULL}, - [ActChgMaxRubCri ] = {1966,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ChangeMaxValue ,NULL}, - [ActChgWeiRubCri ] = {1967,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,RubCri_ChangeWeight ,NULL}, + // Rubrics + [ActSeeAllRub ] = {1951, 7,TabAss,ActSeeAllRub ,0x200,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_SeeAllRubrics }, + [ActSeeOneRub ] = {1952,-1,TabUnk,ActSeeAllRub ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_SeeOneRubric }, + [ActFrmNewRub ] = {1953,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_ReqCreatOrEditRubric }, + [ActEdiOneRub ] = {1954,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_ReqCreatOrEditRubric }, + [ActNewRub ] = {1955,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_ReceiveFormRubric }, + [ActChgRub ] = {1956,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_ReceiveFormRubric }, + [ActReqRemRub ] = {1957,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_AskRemRubric }, + [ActRemRub ] = {1958,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rub_RemoveRubric }, + [ActReqLnkRub ] = {1969,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubRsc_GetLinkToRubric }, + [ActSeeRscCli_InRub ] = {1972,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubRsc_ViewResourceClipboard }, + [ActRemRscCli_InRub ] = {1973,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubRsc_RemoveResourceClipboard }, + [ActNewRubCri ] = {1959,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ReceiveFormCriterion }, + [ActReqRemRubCri ] = {1960,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ReqRemCriterion }, + [ActRemRubCri ] = {1961,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_RemoveCriterion }, + [ActUp_RubCri ] = {1962,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_MoveUpCriterion }, + [ActDwnRubCri ] = {1963,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_MoveDownCriterion }, + [ActChgTitRubCri ] = {1964,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ChangeTitle }, + [ActChgLnkRubCri ] = {1968,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ChangeLink }, + [ActChgMinRubCri ] = {1965,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ChangeMinValue }, + [ActChgMaxRubCri ] = {1966,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ChangeMaxValue }, + [ActChgWeiRubCri ] = {1967,-1,TabUnk,ActSeeAllRub ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,RubCri_ChangeWeight }, // TabFil ****************************************************************** - // Actions in menu: - [ActSeeAdmDocIns ] = {1249, 0,TabFil,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActAdmShaIns ] = {1382, 1,TabFil,ActAdmShaIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActSeeAdmDocCtr ] = {1248, 2,TabFil,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActAdmShaCtr ] = {1363, 3,TabFil,ActAdmShaCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActSeeAdmDocDeg ] = {1247, 4,TabFil,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActAdmShaDeg ] = {1344, 5,TabFil,ActAdmShaDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActSeeAdmDocCrsGrp ] = { 0, 6,TabFil,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActAdmTchCrsGrp ] = {1525, 7,TabFil,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActAdmShaCrsGrp ] = { 461, 8,TabFil,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActAdmAsgWrkUsr ] = { 792, 9,TabFil,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"folder-open" }, - [ActReqAsgWrkCrs ] = { 899,10,TabFil,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskEditWorksCrs ,"folder-open" }, - [ActSeeAdmMrk ] = { 17,11,TabFil,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"list-alt" }, - [ActAdmBrf ] = { 23,12,TabFil,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,"briefcase" }, + // Documents of institution + [ActSeeAdmDocIns ] = {1249, 0,TabFil,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToSeeDocIns ] = {1308,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActSeeDocIns ] = {1309,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeDocIns ] = {1310,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeDocIns ] = {1311,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPSeeDocIns ] = {1312,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatSeeDocIns ] = {1313,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActDowSeeDocIns ] = {1314,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActChgToAdmDocIns ] = {1315,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmDocIns ] = {1316,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilDocIns ] = {1317,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilDocIns ] = {1318,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolDocIns ] = {1319,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopDocIns ] = {1320,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasDocIns ] = {1321,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreDocIns ] = {1322,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreDocIns ] = {1323,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolDocIns ] = {1324,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkDocIns ] = {1325,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolDocIns ] = {1326,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilDocInsDZ ] = {1327,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilDocInsCla ] = {1328,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmDocIns ] = {1329,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmDocIns ] = {1330,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmDocIns ] = {1331,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhDocIns ] = {1332,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidDocIns ] = {1333,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmDocIns ] = {1334,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmDocIns ] = {1335,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAdmDocIns ] = {1336,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - // Actions not in menu: - [ActChgToSeeDocIns ] = {1308,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, + // Shared files of institution + [ActAdmShaIns ] = {1382, 1,TabFil,ActAdmShaIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilShaIns ] = {1383,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilShaIns ] = {1384,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolShaIns ] = {1385,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopShaIns ] = {1386,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasShaIns ] = {1387,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreShaIns ] = {1388,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreShaIns ] = {1389,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolShaIns ] = {1390,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkShaIns ] = {1391,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolShaIns ] = {1392,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilShaInsDZ ] = {1393,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilShaInsCla ] = {1394,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpShaIns ] = {1395,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConShaIns ] = {1396,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPShaIns ] = {1397,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatShaIns ] = {1398,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatShaIns ] = {1399,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowShaIns ] = {1400,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActSeeDocIns ] = {1309,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeDocIns ] = {1310,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeDocIns ] = {1311,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPSeeDocIns ] = {1312,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatSeeDocIns ] = {1313,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActDowSeeDocIns ] = {1314,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Documents of center + [ActSeeAdmDocCtr ] = {1248, 2,TabFil,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToSeeDocCtr ] = {1279,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActSeeDocCtr ] = {1280,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeDocCtr ] = {1281,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeDocCtr ] = {1282,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPSeeDocCtr ] = {1283,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatSeeDocCtr ] = {1284,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActDowSeeDocCtr ] = {1285,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActChgToAdmDocCtr ] = {1286,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmDocCtr ] = {1287,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilDocCtr ] = {1288,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilDocCtr ] = {1289,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolDocCtr ] = {1290,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopDocCtr ] = {1291,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasDocCtr ] = {1292,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreDocCtr ] = {1293,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreDocCtr ] = {1294,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolDocCtr ] = {1295,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkDocCtr ] = {1296,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolDocCtr ] = {1297,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilDocCtrDZ ] = {1298,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilDocCtrCla ] = {1299,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmDocCtr ] = {1300,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmDocCtr ] = {1301,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmDocCtr ] = {1302,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhDocCtr ] = {1303,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidDocCtr ] = {1304,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmDocCtr ] = {1305,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmDocCtr ] = {1306,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAdmDocCtr ] = {1307,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActChgToAdmDocIns ] = {1315,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, + // Shared files of center + [ActAdmShaCtr ] = {1363, 3,TabFil,ActAdmShaCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilShaCtr ] = {1364,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilShaCtr ] = {1365,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolShaCtr ] = {1366,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopShaCtr ] = {1367,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasShaCtr ] = {1368,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreShaCtr ] = {1369,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreShaCtr ] = {1370,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolShaCtr ] = {1371,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkShaCtr ] = {1372,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolShaCtr ] = {1373,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilShaCtrDZ ] = {1374,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilShaCtrCla ] = {1375,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpShaCtr ] = {1376,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConShaCtr ] = {1377,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPShaCtr ] = {1378,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatShaCtr ] = {1379,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatShaCtr ] = {1380,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowShaCtr ] = {1381,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActAdmDocIns ] = {1316,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilDocIns ] = {1317,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilDocIns ] = {1318,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolDocIns ] = {1319,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopDocIns ] = {1320,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasDocIns ] = {1321,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreDocIns ] = {1322,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreDocIns ] = {1323,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolDocIns ] = {1324,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkDocIns ] = {1325,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolDocIns ] = {1326,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilDocInsDZ ] = {1327,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilDocInsCla ] = {1328,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmDocIns ] = {1329,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmDocIns ] = {1330,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmDocIns ] = {1331,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhDocIns ] = {1332,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidDocIns ] = {1333,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmDocIns ] = {1334,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmDocIns ] = {1335,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAdmDocIns ] = {1336,-1,TabUnk,ActSeeAdmDocIns , 0, 0, 0, 0,0x300, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Documents of degree + [ActSeeAdmDocDeg ] = {1247, 4,TabFil,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToSeeDocDeg ] = {1250,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActSeeDocDeg ] = {1251,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeDocDeg ] = {1252,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeDocDeg ] = {1253,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPSeeDocDeg ] = {1254,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatSeeDocDeg ] = {1255,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActDowSeeDocDeg ] = {1256,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActChgToAdmDocDeg ] = {1257,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmDocDeg ] = {1258,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilDocDeg ] = {1259,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilDocDeg ] = {1260,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolDocDeg ] = {1261,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopDocDeg ] = {1262,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasDocDeg ] = {1263,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreDocDeg ] = {1264,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreDocDeg ] = {1265,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolDocDeg ] = {1266,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkDocDeg ] = {1267,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolDocDeg ] = {1268,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilDocDegDZ ] = {1269,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilDocDegCla ] = {1270,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmDocDeg ] = {1271,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmDocDeg ] = {1272,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmDocDeg ] = {1273,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhDocDeg ] = {1274,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidDocDeg ] = {1275,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmDocDeg ] = {1276,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmDocDeg ] = {1277,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAdmDocDeg ] = {1278,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActReqRemFilShaIns ] = {1383,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilShaIns ] = {1384,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolShaIns ] = {1385,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopShaIns ] = {1386,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasShaIns ] = {1387,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreShaIns ] = {1388,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreShaIns ] = {1389,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolShaIns ] = {1390,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkShaIns ] = {1391,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolShaIns ] = {1392,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilShaInsDZ ] = {1393,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilShaInsCla ] = {1394,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpShaIns ] = {1395,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConShaIns ] = {1396,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPShaIns ] = {1397,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatShaIns ] = {1398,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatShaIns ] = {1399,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowShaIns ] = {1400,-1,TabUnk,ActAdmShaIns , 0, 0, 0, 0,0x3C7, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Shared files of degree + [ActAdmShaDeg ] = {1344, 5,TabFil,ActAdmShaDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilShaDeg ] = {1345,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilShaDeg ] = {1346,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolShaDeg ] = {1347,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopShaDeg ] = {1348,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasShaDeg ] = {1349,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreShaDeg ] = {1350,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreShaDeg ] = {1351,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolShaDeg ] = {1352,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkShaDeg ] = {1353,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolShaDeg ] = {1354,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilShaDegDZ ] = {1355,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ,NULL }, + [ActRcvFilShaDegCla ] = {1356,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpShaDeg ] = {1357,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConShaDeg ] = {1358,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPShaDeg ] = {1359,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatShaDeg ] = {1360,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatShaDeg ] = {1361,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowShaDeg ] = {1362,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActChgToSeeDocCtr ] = {1279,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, + // Documents of course + [ActSeeAdmDocCrsGrp ] = { 0, 6,TabFil,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToSeeDocCrs ] = {1195,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActSeeDocCrs ] = {1078,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeDocCrs ] = { 462,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeDocCrs ] = { 476,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPSeeDocCrs ] = {1124,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatSeeDocCrs ] = {1033,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActReqLnkSeeDocCrs ] = {1930,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,BrwRsc_GetLinkToDocFil }, + [ActDowSeeDocCrs ] = {1111,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActSeeDocGrp ] = {1200,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeDocGrp ] = { 488,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeDocGrp ] = { 489,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPSeeDocGrp ] = {1125,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatSeeDocGrp ] = {1034,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActDowSeeDocGrp ] = {1112,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActChgToAdmDocCrs ] = {1196,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmDocCrs ] = { 12,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilDocCrs ] = { 479,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilDocCrs ] = { 480,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolDocCrs ] = { 497,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopDocCrs ] = { 470,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasDocCrs ] = { 478,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreDocCrs ] = { 498,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreDocCrs ] = { 481,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolDocCrs ] = { 491,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkDocCrs ] = {1225,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolDocCrs ] = { 535,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilDocCrsDZ ] = {1214,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilDocCrsCla ] = { 482,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmDocCrs ] = { 477,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmDocCrs ] = { 494,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmDocCrs ] = {1126,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhDocCrs ] = { 464,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidDocCrs ] = { 465,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmDocCrs ] = {1029,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmDocCrs ] = { 996,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActReqLnkAdmDocCrs ] = {1931,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,BrwRsc_GetLinkToDocFil }, + [ActDowAdmDocCrs ] = {1113,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActAdmDocGrp ] = {1201,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilDocGrp ] = { 473,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilDocGrp ] = { 474,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolDocGrp ] = { 484,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopDocGrp ] = { 472,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasDocGrp ] = { 471,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreDocGrp ] = { 485,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreDocGrp ] = { 468,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolDocGrp ] = { 469,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkDocGrp ] = {1231,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolDocGrp ] = { 490,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilDocGrpDZ ] = {1215,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilDocGrpCla ] = { 483,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmDocGrp ] = { 486,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmDocGrp ] = { 487,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmDocGrp ] = {1127,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhDocGrp ] = { 493,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidDocGrp ] = { 492,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmDocGrp ] = {1030,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmDocGrp ] = { 998,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAdmDocGrp ] = {1114,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActSeeDocCtr ] = {1280,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeDocCtr ] = {1281,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeDocCtr ] = {1282,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPSeeDocCtr ] = {1283,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatSeeDocCtr ] = {1284,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActDowSeeDocCtr ] = {1285,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Private documents for course teachers + [ActAdmTchCrsGrp ] = {1525, 7,TabFil,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToAdmTch ] = {1526,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmTchCrs ] = {1527,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilTchCrs ] = {1528,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilTchCrs ] = {1529,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolTchCrs ] = {1530,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopTchCrs ] = {1531,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasTchCrs ] = {1532,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreTchCrs ] = {1533,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreTchCrs ] = {1534,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolTchCrs ] = {1535,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkTchCrs ] = {1536,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolTchCrs ] = {1537,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilTchCrsDZ ] = {1538,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilTchCrsCla ] = {1539,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpTchCrs ] = {1540,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConTchCrs ] = {1541,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPTchCrs ] = {1542,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatTchCrs ] = {1543,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatTchCrs ] = {1544,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowTchCrs ] = {1545,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActAdmTchGrp ] = {1546,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilTchGrp ] = {1547,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilTchGrp ] = {1548,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolTchGrp ] = {1549,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopTchGrp ] = {1550,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasTchGrp ] = {1551,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreTchGrp ] = {1552,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreTchGrp ] = {1553,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolTchGrp ] = {1554,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkTchGrp ] = {1555,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolTchGrp ] = {1556,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilTchGrpDZ ] = {1557,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilTchGrpCla ] = {1558,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpTchGrp ] = {1559,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConTchGrp ] = {1560,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPTchGrp ] = {1561,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatTchGrp ] = {1562,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatTchGrp ] = {1563,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowTchGrp ] = {1564,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActChgToAdmDocCtr ] = {1286,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, + // Shared files of course + [ActAdmShaCrsGrp ] = { 461, 8,TabFil,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToAdmSha ] = {1197,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmShaCrs ] = {1202,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilShaCrs ] = { 327,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilShaCrs ] = { 328,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolShaCrs ] = { 325,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopShaCrs ] = { 330,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasShaCrs ] = { 331,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreShaCrs ] = { 332,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreShaCrs ] = { 323,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolShaCrs ] = { 324,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkShaCrs ] = {1226,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolShaCrs ] = { 329,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilShaCrsDZ ] = {1216,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilShaCrsCla ] = { 326,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpShaCrs ] = { 421,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConShaCrs ] = { 422,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPShaCrs ] = {1128,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatShaCrs ] = {1031,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatShaCrs ] = {1000,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowShaCrs ] = {1115,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActAdmShaGrp ] = {1203,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilShaGrp ] = { 341,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilShaGrp ] = { 342,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolShaGrp ] = { 338,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopShaGrp ] = { 336,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasShaGrp ] = { 337,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreShaGrp ] = { 339,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreShaGrp ] = { 333,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolShaGrp ] = { 334,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkShaGrp ] = {1227,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolShaGrp ] = { 340,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilShaGrpDZ ] = {1217,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilShaGrpCla ] = { 335,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpShaGrp ] = { 427,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConShaGrp ] = { 426,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPShaGrp ] = {1129,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatShaGrp ] = {1032,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatShaGrp ] = {1002,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowShaGrp ] = {1116,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActAdmDocCtr ] = {1287,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilDocCtr ] = {1288,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilDocCtr ] = {1289,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolDocCtr ] = {1290,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopDocCtr ] = {1291,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasDocCtr ] = {1292,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreDocCtr ] = {1293,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreDocCtr ] = {1294,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolDocCtr ] = {1295,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkDocCtr ] = {1296,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolDocCtr ] = {1297,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilDocCtrDZ ] = {1298,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilDocCtrCla ] = {1299,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmDocCtr ] = {1300,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmDocCtr ] = {1301,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmDocCtr ] = {1302,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhDocCtr ] = {1303,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidDocCtr ] = {1304,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmDocCtr ] = {1305,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmDocCtr ] = {1306,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAdmDocCtr ] = {1307,-1,TabUnk,ActSeeAdmDocCtr , 0, 0, 0,0x380, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Assignments and works of user + [ActAdmAsgWrkUsr ] = { 792, 9,TabFil,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilAsgUsr ] = { 834,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilAsgUsr ] = { 833,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolAsgUsr ] = { 827,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopAsgUsr ] = { 829,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasAsgUsr ] = { 830,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreAsgUsr ] = { 828,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreAsgUsr ] = { 825,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolAsgUsr ] = { 826,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkAsgUsr ] = {1232,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolAsgUsr ] = { 839,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilAsgUsrDZ ] = {1218,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilAsgUsrCla ] = { 832,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAsgUsr ] = { 824,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAsgUsr ] = { 831,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAsgUsr ] = {1130,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatAsgUsr ] = {1039,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAsgUsr ] = {1040,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAsgUsr ] = {1117,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActReqRemFilWrkUsr ] = { 288,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilWrkUsr ] = { 169,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolWrkUsr ] = { 228,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopWrkUsr ] = { 314,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasWrkUsr ] = { 318,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreWrkUsr ] = { 278,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreWrkUsr ] = { 150,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolWrkUsr ] = { 172,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkWrkUsr ] = {1228,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolWrkUsr ] = { 204,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilWrkUsrDZ ] = {1219,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilWrkUsrCla ] = { 148,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpWrkUsr ] = { 423,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConWrkUsr ] = { 425,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPWrkUsr ] = {1131,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatWrkUsr ] = {1041,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatWrkUsr ] = {1042,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowWrkUsr ] = {1118,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActReqRemFilShaCtr ] = {1364,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilShaCtr ] = {1365,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolShaCtr ] = {1366,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopShaCtr ] = {1367,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasShaCtr ] = {1368,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreShaCtr ] = {1369,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreShaCtr ] = {1370,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolShaCtr ] = {1371,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkShaCtr ] = {1372,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolShaCtr ] = {1373,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilShaCtrDZ ] = {1374,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilShaCtrCla ] = {1375,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpShaCtr ] = {1376,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConShaCtr ] = {1377,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPShaCtr ] = {1378,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatShaCtr ] = {1379,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatShaCtr ] = {1380,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowShaCtr ] = {1381,-1,TabUnk,ActAdmShaCtr , 0, 0, 0,0x3C7, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, + // Assignments and works of course + [ActReqAsgWrkCrs ] = { 899,10,TabFil,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskEditWorksCrs }, + [ActAdmAsgWrkCrs ] = { 139,-1,TabUnk,ActReqAsgWrkCrs ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_GetSelectedUsrsAndShowWorks}, + [ActReqRemFilAsgCrs ] = { 837,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilAsgCrs ] = { 838,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolAsgCrs ] = { 820,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopAsgCrs ] = { 836,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasAsgCrs ] = { 821,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreAsgCrs ] = { 822,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreAsgCrs ] = { 817,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolAsgCrs ] = { 818,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkAsgCrs ] = {1233,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolAsgCrs ] = { 823,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilAsgCrsDZ ] = {1220,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilAsgCrsCla ] = { 846,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAsgCrs ] = { 819,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAsgCrs ] = { 835,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAsgCrs ] = {1132,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatAsgCrs ] = {1043,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAsgCrs ] = {1044,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAsgCrs ] = {1119,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActReqRemFilWrkCrs ] = { 289,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilWrkCrs ] = { 209,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolWrkCrs ] = { 210,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopWrkCrs ] = { 312,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasWrkCrs ] = { 319,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreWrkCrs ] = { 279,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreWrkCrs ] = { 205,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolWrkCrs ] = { 206,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkWrkCrs ] = {1229,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolWrkCrs ] = { 208,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilWrkCrsDZ ] = {1221,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilWrkCrsCla ] = { 207,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpWrkCrs ] = { 416,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConWrkCrs ] = { 424,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPWrkCrs ] = {1133,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatWrkCrs ] = {1045,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatWrkCrs ] = {1046,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowWrkCrs ] = {1120,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, - [ActChgToSeeDocDeg ] = {1250,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, + // Marks + [ActSeeAdmMrk ] = { 17,11,TabFil,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActChgToSeeMrk ] = {1198,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActSeeMrkCrs ] = {1079,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeMrkCrs ] = { 528,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeMrkCrs ] = { 527,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActReqDatSeeMrkCrs ] = {1086,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActReqLnkSeeMrkCrs ] = {1939,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,BrwRsc_GetLinkToMrkFil }, + [ActSeeMyMrkCrs ] = { 523,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,Mrk_ShowMyMarks ,NULL }, + [ActSeeMrkGrp ] = {1204,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActExpSeeMrkGrp ] = { 605,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConSeeMrkGrp ] = { 609,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActReqDatSeeMrkGrp ] = {1087,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActSeeMyMrkGrp ] = { 524,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,Mrk_ShowMyMarks ,NULL }, + [ActChgToAdmMrk ] = {1199,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActAdmMrkCrs ] = { 284,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilMrkCrs ] = { 595,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilMrkCrs ] = { 533,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolMrkCrs ] = { 530,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopMrkCrs ] = { 501,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasMrkCrs ] = { 507,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreMrkCrs ] = { 534,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreMrkCrs ] = { 596,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolMrkCrs ] = { 506,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActRenFolMrkCrs ] = { 574,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilMrkCrsDZ ] = {1222,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilMrkCrsCla ] = { 516,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmMrkCrs ] = { 607,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmMrkCrs ] = { 621,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmMrkCrs ] = {1134,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhMrkCrs ] = {1191,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidMrkCrs ] = {1192,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmMrkCrs ] = {1035,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmMrkCrs ] = {1036,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActReqLnkAdmMrkCrs ] = {1940,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,BrwRsc_GetLinkToMrkFil }, + [ActDowAdmMrkCrs ] = {1121,-1,TabUnk,ActSeeAdmMrk ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActChgNumRowHeaCrs ] = { 503,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mrk_ChangeNumRowsHeader }, + [ActChgNumRowFooCrs ] = { 504,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mrk_ChangeNumRowsFooter }, + [ActAdmMrkGrp ] = {1205,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilMrkGrp ] = { 600,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilMrkGrp ] = { 509,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolMrkGrp ] = { 520,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopMrkGrp ] = { 519,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasMrkGrp ] = { 502,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreMrkGrp ] = { 521,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreMrkGrp ] = { 601,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolMrkGrp ] = { 513,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActRenFolMrkGrp ] = { 529,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilMrkGrpDZ ] = {1223,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilMrkGrpCla ] = { 514,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpAdmMrkGrp ] = { 631,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConAdmMrkGrp ] = { 900,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPAdmMrkGrp ] = {1135,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActUnhMrkGrp ] = {1193,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsVisible }, + [ActHidMrkGrp ] = {1194,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_SetDocumentAsHidden }, + [ActReqDatAdmMrkGrp ] = {1037,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatAdmMrkGrp ] = {1038,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowAdmMrkGrp ] = {1122,-1,TabUnk,ActSeeAdmMrk ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActChgNumRowHeaGrp ] = { 510,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mrk_ChangeNumRowsHeader }, + [ActChgNumRowFooGrp ] = { 511,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mrk_ChangeNumRowsFooter }, - [ActSeeDocDeg ] = {1251,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeDocDeg ] = {1252,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeDocDeg ] = {1253,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPSeeDocDeg ] = {1254,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatSeeDocDeg ] = {1255,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActDowSeeDocDeg ] = {1256,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActChgToAdmDocDeg ] = {1257,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActAdmDocDeg ] = {1258,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilDocDeg ] = {1259,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilDocDeg ] = {1260,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolDocDeg ] = {1261,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopDocDeg ] = {1262,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasDocDeg ] = {1263,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreDocDeg ] = {1264,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreDocDeg ] = {1265,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolDocDeg ] = {1266,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkDocDeg ] = {1267,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolDocDeg ] = {1268,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilDocDegDZ ] = {1269,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilDocDegCla ] = {1270,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmDocDeg ] = {1271,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmDocDeg ] = {1272,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmDocDeg ] = {1273,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhDocDeg ] = {1274,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidDocDeg ] = {1275,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmDocDeg ] = {1276,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmDocDeg ] = {1277,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAdmDocDeg ] = {1278,-1,TabUnk,ActSeeAdmDocDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActReqRemFilShaDeg ] = {1345,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilShaDeg ] = {1346,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolShaDeg ] = {1347,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopShaDeg ] = {1348,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasShaDeg ] = {1349,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreShaDeg ] = {1350,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreShaDeg ] = {1351,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolShaDeg ] = {1352,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkShaDeg ] = {1353,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolShaDeg ] = {1354,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilShaDegDZ ] = {1355,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilShaDegCla ] = {1356,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpShaDeg ] = {1357,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConShaDeg ] = {1358,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPShaDeg ] = {1359,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatShaDeg ] = {1360,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatShaDeg ] = {1361,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowShaDeg ] = {1362,-1,TabUnk,ActAdmShaDeg , 0, 0,0x3C7, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActChgToSeeDocCrs ] = {1195,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActSeeDocCrs ] = {1078,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeDocCrs ] = { 462,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeDocCrs ] = { 476,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPSeeDocCrs ] = {1124,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatSeeDocCrs ] = {1033,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActReqLnkSeeDocCrs ] = {1930,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,BrwRsc_GetLinkToDocFil ,NULL}, - [ActDowSeeDocCrs ] = {1111,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActSeeDocGrp ] = {1200,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeDocGrp ] = { 488,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeDocGrp ] = { 489,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPSeeDocGrp ] = {1125,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatSeeDocGrp ] = {1034,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActDowSeeDocGrp ] = {1112,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActChgToAdmDocCrs ] = {1196,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActAdmDocCrs ] = { 12,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilDocCrs ] = { 479,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilDocCrs ] = { 480,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolDocCrs ] = { 497,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopDocCrs ] = { 470,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasDocCrs ] = { 478,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreDocCrs ] = { 498,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreDocCrs ] = { 481,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolDocCrs ] = { 491,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkDocCrs ] = {1225,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolDocCrs ] = { 535,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilDocCrsDZ ] = {1214,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilDocCrsCla ] = { 482,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmDocCrs ] = { 477,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmDocCrs ] = { 494,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmDocCrs ] = {1126,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhDocCrs ] = { 464,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidDocCrs ] = { 465,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmDocCrs ] = {1029,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmDocCrs ] = { 996,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActReqLnkAdmDocCrs ] = {1931,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,BrwRsc_GetLinkToDocFil ,NULL}, - [ActDowAdmDocCrs ] = {1113,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActAdmDocGrp ] = {1201,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilDocGrp ] = { 473,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilDocGrp ] = { 474,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolDocGrp ] = { 484,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopDocGrp ] = { 472,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasDocGrp ] = { 471,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreDocGrp ] = { 485,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreDocGrp ] = { 468,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolDocGrp ] = { 469,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkDocGrp ] = {1231,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolDocGrp ] = { 490,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilDocGrpDZ ] = {1215,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilDocGrpCla ] = { 483,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmDocGrp ] = { 486,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmDocGrp ] = { 487,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmDocGrp ] = {1127,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhDocGrp ] = { 493,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidDocGrp ] = { 492,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmDocGrp ] = {1030,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmDocGrp ] = { 998,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAdmDocGrp ] = {1114,-1,TabUnk,ActSeeAdmDocCrsGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActChgToAdmTch ] = {1526,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActAdmTchCrs ] = {1527,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilTchCrs ] = {1528,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilTchCrs ] = {1529,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolTchCrs ] = {1530,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopTchCrs ] = {1531,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasTchCrs ] = {1532,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreTchCrs ] = {1533,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreTchCrs ] = {1534,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolTchCrs ] = {1535,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkTchCrs ] = {1536,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolTchCrs ] = {1537,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilTchCrsDZ ] = {1538,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilTchCrsCla ] = {1539,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpTchCrs ] = {1540,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConTchCrs ] = {1541,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPTchCrs ] = {1542,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatTchCrs ] = {1543,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatTchCrs ] = {1544,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowTchCrs ] = {1545,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActAdmTchGrp ] = {1546,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilTchGrp ] = {1547,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilTchGrp ] = {1548,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolTchGrp ] = {1549,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopTchGrp ] = {1550,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasTchGrp ] = {1551,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreTchGrp ] = {1552,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreTchGrp ] = {1553,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolTchGrp ] = {1554,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkTchGrp ] = {1555,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolTchGrp ] = {1556,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilTchGrpDZ ] = {1557,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilTchGrpCla ] = {1558,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpTchGrp ] = {1559,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConTchGrp ] = {1560,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPTchGrp ] = {1561,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatTchGrp ] = {1562,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatTchGrp ] = {1563,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowTchGrp ] = {1564,-1,TabUnk,ActAdmTchCrsGrp ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActChgToAdmSha ] = {1197,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActAdmShaCrs ] = {1202,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilShaCrs ] = { 327,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilShaCrs ] = { 328,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolShaCrs ] = { 325,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopShaCrs ] = { 330,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasShaCrs ] = { 331,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreShaCrs ] = { 332,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreShaCrs ] = { 323,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolShaCrs ] = { 324,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkShaCrs ] = {1226,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolShaCrs ] = { 329,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilShaCrsDZ ] = {1216,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilShaCrsCla ] = { 326,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpShaCrs ] = { 421,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConShaCrs ] = { 422,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPShaCrs ] = {1128,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatShaCrs ] = {1031,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatShaCrs ] = {1000,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowShaCrs ] = {1115,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActAdmShaGrp ] = {1203,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilShaGrp ] = { 341,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilShaGrp ] = { 342,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolShaGrp ] = { 338,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopShaGrp ] = { 336,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasShaGrp ] = { 337,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreShaGrp ] = { 339,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreShaGrp ] = { 333,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolShaGrp ] = { 334,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkShaGrp ] = {1227,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolShaGrp ] = { 340,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilShaGrpDZ ] = {1217,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilShaGrpCla ] = { 335,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpShaGrp ] = { 427,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConShaGrp ] = { 426,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPShaGrp ] = {1129,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatShaGrp ] = {1032,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatShaGrp ] = {1002,-1,TabUnk,ActAdmShaCrsGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowShaGrp ] = {1116,-1,TabUnk,ActAdmShaCrsGrp ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActAdmAsgWrkCrs ] = { 139,-1,TabUnk,ActReqAsgWrkCrs ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_GetSelectedUsrsAndShowWorks,NULL}, - - [ActReqRemFilAsgUsr ] = { 834,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilAsgUsr ] = { 833,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolAsgUsr ] = { 827,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopAsgUsr ] = { 829,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasAsgUsr ] = { 830,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreAsgUsr ] = { 828,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreAsgUsr ] = { 825,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolAsgUsr ] = { 826,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkAsgUsr ] = {1232,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolAsgUsr ] = { 839,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilAsgUsrDZ ] = {1218,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilAsgUsrCla ] = { 832,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAsgUsr ] = { 824,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAsgUsr ] = { 831,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAsgUsr ] = {1130,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatAsgUsr ] = {1039,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAsgUsr ] = {1040,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAsgUsr ] = {1117,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActReqRemFilWrkUsr ] = { 288,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilWrkUsr ] = { 169,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolWrkUsr ] = { 228,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopWrkUsr ] = { 314,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasWrkUsr ] = { 318,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreWrkUsr ] = { 278,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreWrkUsr ] = { 150,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolWrkUsr ] = { 172,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkWrkUsr ] = {1228,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolWrkUsr ] = { 204,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilWrkUsrDZ ] = {1219,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilWrkUsrCla ] = { 148,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpWrkUsr ] = { 423,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConWrkUsr ] = { 425,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPWrkUsr ] = {1131,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatWrkUsr ] = {1041,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatWrkUsr ] = {1042,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowWrkUsr ] = {1118,-1,TabUnk,ActAdmAsgWrkUsr ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActReqRemFilAsgCrs ] = { 837,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilAsgCrs ] = { 838,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolAsgCrs ] = { 820,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopAsgCrs ] = { 836,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasAsgCrs ] = { 821,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreAsgCrs ] = { 822,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreAsgCrs ] = { 817,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolAsgCrs ] = { 818,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkAsgCrs ] = {1233,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolAsgCrs ] = { 823,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilAsgCrsDZ ] = {1220,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilAsgCrsCla ] = { 846,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAsgCrs ] = { 819,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAsgCrs ] = { 835,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAsgCrs ] = {1132,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatAsgCrs ] = {1043,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAsgCrs ] = {1044,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAsgCrs ] = {1119,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActReqRemFilWrkCrs ] = { 289,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilWrkCrs ] = { 209,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolWrkCrs ] = { 210,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopWrkCrs ] = { 312,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasWrkCrs ] = { 319,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreWrkCrs ] = { 279,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreWrkCrs ] = { 205,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolWrkCrs ] = { 206,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkWrkCrs ] = {1229,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolWrkCrs ] = { 208,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilWrkCrsDZ ] = {1221,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilWrkCrsCla ] = { 207,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpWrkCrs ] = { 416,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConWrkCrs ] = { 424,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPWrkCrs ] = {1133,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatWrkCrs ] = {1045,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatWrkCrs ] = {1046,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowWrkCrs ] = {1120,-1,TabUnk,ActReqAsgWrkCrs ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - - [ActChgToSeeMrk ] = {1198,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActSeeMrkCrs ] = {1079,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeMrkCrs ] = { 528,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeMrkCrs ] = { 527,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActReqDatSeeMrkCrs ] = {1086,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActReqLnkSeeMrkCrs ] = {1939,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,BrwRsc_GetLinkToMrkFil ,NULL}, - [ActSeeMyMrkCrs ] = { 523,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,Mrk_ShowMyMarks ,NULL ,NULL}, - - [ActSeeMrkGrp ] = {1204,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActExpSeeMrkGrp ] = { 605,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConSeeMrkGrp ] = { 609,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActReqDatSeeMrkGrp ] = {1087,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActSeeMyMrkGrp ] = { 524,-1,TabUnk,ActSeeAdmMrk ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,Mrk_ShowMyMarks ,NULL ,NULL}, - - [ActChgToAdmMrk ] = {1199,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - - [ActAdmMrkCrs ] = { 284,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilMrkCrs ] = { 595,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilMrkCrs ] = { 533,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolMrkCrs ] = { 530,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopMrkCrs ] = { 501,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasMrkCrs ] = { 507,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreMrkCrs ] = { 534,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreMrkCrs ] = { 596,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolMrkCrs ] = { 506,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActRenFolMrkCrs ] = { 574,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilMrkCrsDZ ] = {1222,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilMrkCrsCla ] = { 516,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmMrkCrs ] = { 607,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmMrkCrs ] = { 621,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmMrkCrs ] = {1134,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhMrkCrs ] = {1191,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidMrkCrs ] = {1192,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmMrkCrs ] = {1035,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmMrkCrs ] = {1036,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActReqLnkAdmMrkCrs ] = {1940,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,BrwRsc_GetLinkToMrkFil ,NULL}, - [ActDowAdmMrkCrs ] = {1121,-1,TabUnk,ActSeeAdmMrk ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - [ActChgNumRowHeaCrs ] = { 503,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mrk_ChangeNumRowsHeader ,NULL}, - [ActChgNumRowFooCrs ] = { 504,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mrk_ChangeNumRowsFooter ,NULL}, - - [ActAdmMrkGrp ] = {1205,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks ,NULL}, - [ActReqRemFilMrkGrp ] = { 600,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilMrkGrp ] = { 509,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolMrkGrp ] = { 520,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopMrkGrp ] = { 519,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasMrkGrp ] = { 502,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreMrkGrp ] = { 521,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreMrkGrp ] = { 601,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolMrkGrp ] = { 513,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActRenFolMrkGrp ] = { 529,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilMrkGrpDZ ] = {1223,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilMrkGrpCla ] = { 514,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpAdmMrkGrp ] = { 631,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConAdmMrkGrp ] = { 900,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPAdmMrkGrp ] = {1135,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActUnhMrkGrp ] = {1193,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsVisible ,NULL}, - [ActHidMrkGrp ] = {1194,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_SetDocumentAsHidden ,NULL}, - [ActReqDatAdmMrkGrp ] = {1037,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatAdmMrkGrp ] = {1038,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowAdmMrkGrp ] = {1122,-1,TabUnk,ActSeeAdmMrk ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - [ActChgNumRowHeaGrp ] = { 510,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mrk_ChangeNumRowsHeader ,NULL}, - [ActChgNumRowFooGrp ] = { 511,-1,TabUnk,ActSeeAdmMrk ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mrk_ChangeNumRowsFooter ,NULL}, - - [ActReqRemFilBrf ] = { 286,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemFileFromTree ,NULL}, - [ActRemFilBrf ] = { 155,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFileFromTree ,NULL}, - [ActRemFolBrf ] = { 196,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemFolderFromTree ,NULL}, - [ActCopBrf ] = { 311,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_CopyFromFileBrowser ,NULL}, - [ActPasBrf ] = { 315,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser ,NULL}, - [ActRemTreBrf ] = { 276,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser ,NULL}, - [ActFrmCreBrf ] = { 597,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFormFileBrowser ,NULL}, - [ActCreFolBrf ] = { 170,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecFolderFileBrowser ,NULL}, - [ActCreLnkBrf ] = {1230,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RecLinkFileBrowser ,NULL}, - [ActRenFolBrf ] = { 197,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RenFolderFileBrowser ,NULL}, - [ActRcvFilBrfDZ ] = {1224,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_UPLOAD_FILE,Brw_RcvFileInFileBrwDropzone ,NULL ,NULL}, - [ActRcvFilBrfCla ] = { 153,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic ,NULL}, - [ActExpBrf ] = { 410,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_204_NO_CONT,Brw_ExpandFileTree ,NULL ,NULL}, - [ActConBrf ] = { 411,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_204_NO_CONT,Brw_ContractFileTree ,NULL ,NULL}, - [ActZIPBrf ] = {1136,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ZIP_CompressFileTree ,NULL}, - [ActReqDatBrf ] = {1047,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ShowFileMetadata ,NULL}, - [ActChgDatBrf ] = {1048,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_ChgFileMetadata ,NULL}, - [ActDowBrf ] = {1123,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_DOWNLD_FILE,Brw_DownloadFile ,NULL ,NULL}, - [ActReqRemOldBrf ] = {1488,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_AskRemoveOldFilesBriefcase ,NULL}, - [ActRemOldBrf ] = {1489,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Brw_RemoveOldFilesBriefcase ,NULL}, + // Briefcase + [ActAdmBrf ] = { 23,12,TabFil,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileBrowserOrWorks }, + [ActReqRemFilBrf ] = { 286,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemFileFromTree }, + [ActRemFilBrf ] = { 155,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFileFromTree }, + [ActRemFolBrf ] = { 196,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemFolderFromTree }, + [ActCopBrf ] = { 311,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_CopyFromFileBrowser }, + [ActPasBrf ] = { 315,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_PasteIntoFileBrowser }, + [ActRemTreBrf ] = { 276,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemSubtreeInFileBrowser }, + [ActFrmCreBrf ] = { 597,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFormFileBrowser }, + [ActCreFolBrf ] = { 170,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecFolderFileBrowser }, + [ActCreLnkBrf ] = {1230,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RecLinkFileBrowser }, + [ActRenFolBrf ] = { 197,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RenFolderFileBrowser }, + [ActRcvFilBrfDZ ] = {1224,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_UPL_FIL,Brw_RcvFileInFileBrwDZ ,NULL }, + [ActRcvFilBrfCla ] = { 153,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,Brw_RcvFileInFileBrwClassic }, + [ActExpBrf ] = { 410,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_204_NOC,Brw_ExpandFileTree ,NULL }, + [ActConBrf ] = { 411,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_204_NOC,Brw_ContractFileTree ,NULL }, + [ActZIPBrf ] = {1136,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,ZIP_CompressFileTree }, + [ActReqDatBrf ] = {1047,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ShowFileMetadata }, + [ActChgDatBrf ] = {1048,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_ChgFileMetadata }, + [ActDowBrf ] = {1123,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_DWN_FIL,Brw_DownloadFile ,NULL }, + [ActReqRemOldBrf ] = {1488,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_AskRemoveOldFilesBriefcase }, + [ActRemOldBrf ] = {1489,-1,TabUnk,ActAdmBrf ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Brw_RemoveOldFilesBriefcase }, // TabUsr ****************************************************************** - // Actions in menu: - [ActReqSelGrp ] = { 116, 0,TabUsr,ActReqSelGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ReqRegisterInGrps ,"sitemap" }, - [ActLstStd ] = { 678, 1,TabUsr,ActLstStd ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_SeeStudents ,"users" }, - [ActLstTch ] = { 679, 2,TabUsr,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_SeeTeachers ,"user-tie" }, - [ActLstOth ] = {1186, 3,TabUsr,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_ListDataAdms ,"user-friends" }, - [ActSeeAllAtt ] = { 861, 4,TabUsr,ActSeeAllAtt ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_SeeEvents ,"calendar-check" }, - [ActReqSignUp ] = {1054, 5,TabUsr,ActReqSignUp , 0,0x006, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqSignUpInCrs ,"hand-point-up" }, - [ActSeeSignUpReq ] = {1057, 6,TabUsr,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ShowEnrolmentRequests ,"hand-point-up" }, - [ActLstCon ] = { 995, 7,TabUsr,ActLstCon ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Con_ShowConnectedUsrs ,"user-clock" }, + // Groups + [ActReqSelGrp ] = { 116, 0,TabUsr,ActReqSelGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ReqRegisterInGrps }, + [ActChgGrp ] = { 118,-1,TabUnk,ActReqSelGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeMyGrpsAndShowChanges }, + [ActReqEdiGrp ] = { 108,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ReqEditGroups }, + [ActNewGrpTyp ] = { 174,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ReceiveFormNewGrpTyp }, + [ActReqRemGrpTyp ] = { 236,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ReqRemGroupType }, + [ActRemGrpTyp ] = { 237,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_RemoveGroupType }, + [ActRenGrpTyp ] = { 304,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_RenameGroupType }, + [ActChgMdtGrpTyp ] = { 303,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeMandatGrpTyp }, + [ActChgMulGrpTyp ] = { 302,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeMultiGrpTyp }, + [ActChgTimGrpTyp ] = {1061,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeOpenTimeGrpTyp }, + [ActNewGrp ] = { 122,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ReceiveFormNewGrp }, + [ActReqRemGrp ] = { 107,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ReqRemGroup }, + [ActRemGrp ] = { 175,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_RemoveGroup }, + [ActOpeGrp ] = { 322,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_OpenGroup }, + [ActCloGrp ] = { 321,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_CloseGroup }, + [ActEnaFilZonGrp ] = { 495,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_EnableFileZonesGrp }, + [ActDisFilZonGrp ] = { 496,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_DisableFileZonesGrp }, + [ActChgGrpTyp ] = { 167,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeGroupType }, + [ActRenGrp ] = { 121,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_RenameGroup }, + [ActChgGrpRoo ] = {1752,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeGroupRoom }, + [ActChgMaxStdGrp ] = { 106,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Grp_ChangeMaxStdsGrp }, - // Actions not in menu: - [ActChgGrp ] = { 118,-1,TabUnk,ActReqSelGrp ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeMyGrpsAndShowChanges ,NULL}, + // Students + [ActLstStd ] = { 678, 1,TabUsr,ActLstStd ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_SeeStudents }, + [ActLstStdAll ] = { 42,-1,TabUnk,ActLstStd ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Usr_ListAllDataStds }, + [ActPrnStdPho ] = { 120,-1,TabUnk,ActLstStd ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Usr_SeeStdClassPhotoPrn }, + [ActDoActOnSevStd ] = {1754,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Usr_DoActionOnSeveralUsrs1 ,Usr_DoActionOnSeveralUsrs2 }, + [ActSeeRecSevStd ] = { 89,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ListRecordsStdsShow }, + [ActPrnRecSevStd ] = { 111,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Rec_ListRecordsStdsPrint }, + [ActReqMdfOneStd ] = {1415,-1,TabUnk,ActLstStd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqRegRemStd }, + [ActReqMdfStd ] = {1419,-1,TabUnk,ActLstStd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherStd }, + [ActReqStdPho ] = {1433,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_SendPhotoUsr }, + [ActDetStdPho ] = {1436,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Pho_RecOtherUsrPhotoDetFaces }, + [ActChgStdPho ] = {1439,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Pho_ChangeUsrPhoto1 ,Pho_ChangeUsrPhoto2 }, + [ActReqRemStdPho ] = {1575,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ReqRemUsrPhoto }, + [ActRemStdPho ] = {1442,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_RemoveUsrPhoto }, + [ActCreStd ] = {1445,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 }, + [ActUpdStd ] = {1423,-1,TabUnk,ActLstStd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 }, + [ActCnfID_Std ] = {1569,-1,TabUnk,ActLstStd ,0x3F0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_ConfirmOtherUsrID }, + [ActFrmAccStd ] = {1736,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_ShowFormChgOtherUsrAccount }, + [ActRemNicStd ] = {1739,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_RemoveOtherUsrNick }, + [ActChgNicStd ] = {1742,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_ChangeOtherUsrNick }, + [ActRemID_Std ] = {1451,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_RemoveOtherUsrID }, + [ActChgID_Std ] = {1454,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_ChangeOtherUsrID }, + [ActChgPwdStd ] = {1468,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Pwd_UpdateOtherUsrPwd ,Acc_ShowFormChgOtherUsrAccount }, + [ActRemMaiStd ] = {1479,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_RemoveOtherUsrEmail }, + [ActChgMaiStd ] = {1482,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_ChangeOtherUsrEmail }, + [ActRemStdCrs ] = {1462,-1,TabUnk,ActLstStd ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Enr_RemUsrFromCrs1 ,Enr_RemUsrFromCrs2 }, + [ActReqRemAllStdCrs ] = { 88,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskRemAllStdsThisCrs }, + [ActRemAllStdCrs ] = { 87,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_RemAllStdsThisCrs }, + [ActReqAccEnrStd ] = {1456,-1,TabUnk,ActLstStd ,0x3C8, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqAcceptRegisterInCrs }, + [ActAccEnrStd ] = {1458,-1,TabUnk,ActLstStd ,0x3C8, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AcceptRegisterMeInCrs }, + [ActRemMe_Std ] = {1460,-1,TabUnk,ActLstStd ,0x3C8, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqRemMeFromCrs }, + [ActReqFolSevStd ] = {1756,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_ReqFollowStds }, + [ActReqUnfSevStd ] = {1758,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_ReqUnfollowStds }, + [ActFolSevStd ] = {1760,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_FollowUsrs }, + [ActUnfSevStd ] = {1762,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_UnfollowUsrs }, + [ActSeeRecOneStd ] = {1174,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_GetUsrAndShowRecOneStdCrs }, + [ActReqEnrSevStd ] = {1426,-1,TabUnk,ActLstStd ,0x3E0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqAdminStds }, + [ActRcvFrmEnrSevStd ] = {1428,-1,TabUnk,ActLstStd ,0x3E0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReceiveFormAdminStds }, + [ActRcvRecOthUsr ] = { 300,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateAndShowOtherCrsRecord}, + [ActEdiRecFie ] = { 292,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ReqEditRecordFields }, + [ActNewFie ] = { 293,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ReceiveFormField }, + [ActReqRemFie ] = { 294,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ReqRemField }, + [ActRemFie ] = { 295,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_RemoveField }, + [ActRenFie ] = { 296,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_RenameField }, + [ActChgRowFie ] = { 305,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ChangeLinesField }, + [ActChgVisFie ] = { 297,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ChangeVisibilityField }, + [ActRcvRecCrs ] = { 301,-1,TabUnk,ActLstStd ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateAndShowMyCrsRecord }, - [ActReqEdiGrp ] = { 108,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ReqEditGroups ,NULL}, + // Teachers + [ActLstTch ] = { 679, 2,TabUsr,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_SeeTeachers }, + [ActLstTchAll ] = { 578,-1,TabUnk,ActLstTch ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Usr_ListAllDataTchs }, + [ActPrnTchPho ] = { 443,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_NEW_TAB,NULL ,Usr_SeeTchClassPhotoPrn }, + [ActDoActOnSevTch ] = {1755,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Usr_DoActionOnSeveralUsrs1 ,Usr_DoActionOnSeveralUsrs2 }, + [ActSeeRecSevTch ] = { 22,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ListRecordsTchsShow }, + [ActPrnRecSevTch ] = { 127,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Rec_ListRecordsTchsPrint }, + [ActReqMdfOneTch ] = {1416,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqRegRemTch }, + [ActReqMdfNET ] = {1644,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherTch }, + [ActReqMdfTch ] = {1420,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherTch }, + [ActReqTchPho ] = {1434,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_SendPhotoUsr }, + [ActDetTchPho ] = {1437,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Pho_RecOtherUsrPhotoDetFaces }, + [ActChgTchPho ] = {1440,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Pho_ChangeUsrPhoto1 ,Pho_ChangeUsrPhoto2 }, + [ActReqRemTchPho ] = {1576,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ReqRemUsrPhoto }, + [ActRemTchPho ] = {1443,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_RemoveUsrPhoto }, + [ActCreNET ] = {1645,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 }, + [ActCreTch ] = {1446,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 }, + [ActUpdNET ] = {1646,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 }, + [ActUpdTch ] = {1424,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 }, + [ActCnfID_Tch ] = {1570,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_ConfirmOtherUsrID }, + [ActFrmAccTch ] = {1737,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_ShowFormChgOtherUsrAccount }, + [ActRemNicTch ] = {1740,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_RemoveOtherUsrNick }, + [ActChgNicTch ] = {1743,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_ChangeOtherUsrNick }, + [ActRemID_Tch ] = {1452,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_RemoveOtherUsrID }, + [ActChgID_Tch ] = {1455,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_ChangeOtherUsrID }, + [ActChgPwdTch ] = {1469,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Pwd_UpdateOtherUsrPwd ,Acc_ShowFormChgOtherUsrAccount }, + [ActRemMaiTch ] = {1480,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_RemoveOtherUsrEmail }, + [ActChgMaiTch ] = {1483,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_ChangeOtherUsrEmail }, + [ActRemNETCrs ] = {1647,-1,TabUnk,ActLstTch ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Enr_RemUsrFromCrs1 ,Enr_RemUsrFromCrs2 }, + [ActRemTchCrs ] = {1463,-1,TabUnk,ActLstTch ,0x3E0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Enr_RemUsrFromCrs1 ,Enr_RemUsrFromCrs2 }, + [ActReqAccEnrNET ] = {1639,-1,TabUnk,ActLstTch ,0x3D0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqAcceptRegisterInCrs }, + [ActReqAccEnrTch ] = {1457,-1,TabUnk,ActLstTch ,0x3E0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqAcceptRegisterInCrs }, + [ActAccEnrNET ] = {1640,-1,TabUnk,ActLstTch ,0x3D0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AcceptRegisterMeInCrs }, + [ActAccEnrTch ] = {1459,-1,TabUnk,ActLstTch ,0x3E0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AcceptRegisterMeInCrs }, + [ActRemMe_NET ] = {1641,-1,TabUnk,ActLstTch ,0x3D0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqRemMeFromCrs }, + [ActRemMe_Tch ] = {1461,-1,TabUnk,ActLstTch ,0x3E0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqRemMeFromCrs }, + [ActReqFolSevTch ] = {1757,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_ReqFollowTchs }, + [ActReqUnfSevTch ] = {1759,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_ReqUnfollowTchs }, + [ActFolSevTch ] = {1761,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_FollowUsrs }, + [ActUnfSevTch ] = {1763,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fol_UnfollowUsrs }, - [ActNewGrpTyp ] = { 174,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ReceiveFormNewGrpTyp ,NULL}, - [ActReqRemGrpTyp ] = { 236,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ReqRemGroupType ,NULL}, - [ActRemGrpTyp ] = { 237,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_RemoveGroupType ,NULL}, - [ActRenGrpTyp ] = { 304,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_RenameGroupType ,NULL}, - [ActChgMdtGrpTyp ] = { 303,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeMandatGrpTyp ,NULL}, - [ActChgMulGrpTyp ] = { 302,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeMultiGrpTyp ,NULL}, - [ActChgTimGrpTyp ] = {1061,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeOpenTimeGrpTyp ,NULL}, + [ActSeeRecOneTch ] = {1175,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_GetUsrAndShowRecOneTchCrs }, + [ActReqEnrSevNET ] = {1642,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqAdminNonEditingTchs }, + [ActRcvFrmEnrSevNET ] = {1643,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReceiveFormAdminNonEditTchs}, + [ActReqEnrSevTch ] = {1427,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqAdminTchs }, + [ActRcvFrmEnrSevTch ] = {1429,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReceiveFormAdminTchs }, + [ActFrmLogInUsrAgd ] = {1614,-1,TabUnk,ActLstTch , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_PutFormLogInToShowUsrAgenda}, + [ActLogInUsrAgd ] = {1615,-1,TabUnk,ActLstTch ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ShowOtherAgendaAfterLogIn }, + [ActLogInUsrAgdLan ] = {1616,-1,TabUnk,ActLstTch ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ShowOtherAgendaAfterLogIn }, - [ActNewGrp ] = { 122,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ReceiveFormNewGrp ,NULL}, - [ActReqRemGrp ] = { 107,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ReqRemGroup ,NULL}, - [ActRemGrp ] = { 175,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_RemoveGroup ,NULL}, - [ActOpeGrp ] = { 322,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_OpenGroup ,NULL}, - [ActCloGrp ] = { 321,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_CloseGroup ,NULL}, - [ActEnaFilZonGrp ] = { 495,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_EnableFileZonesGrp ,NULL}, - [ActDisFilZonGrp ] = { 496,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_DisableFileZonesGrp ,NULL}, - [ActChgGrpTyp ] = { 167,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeGroupType ,NULL}, - [ActRenGrp ] = { 121,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_RenameGroup ,NULL}, - [ActChgGrpRoo ] = {1752,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeGroupRoom ,NULL}, - [ActChgMaxStdGrp ] = { 106,-1,TabUnk,ActReqSelGrp ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Grp_ChangeMaxStdsGrp ,NULL}, + // Others + [ActLstOth ] = {1186, 3,TabUsr,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_ListDataAdms }, + [ActNewAdmIns ] = {1337,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Adm_AddAdmToIns }, + [ActRemAdmIns ] = {1338,-1,TabUnk,ActLstOth ,0x300,0x300,0x300,0x300,0x300,0x300,0x300,Act_CONT_NORM,Act_1ST_TAB,NULL ,Adm_RemAdmIns }, + [ActNewAdmCtr ] = {1339,-1,TabUnk,ActLstOth ,0x300,0x300,0x300,0x300,0x300,0x300,0x300,Act_CONT_NORM,Act_1ST_TAB,NULL ,Adm_AddAdmToCtr }, + [ActRemAdmCtr ] = {1340,-1,TabUnk,ActLstOth ,0x380,0x380,0x380,0x380,0x380,0x380,0x380,Act_CONT_NORM,Act_1ST_TAB,NULL ,Adm_RemAdmCtr }, + [ActNewAdmDeg ] = { 586,-1,TabUnk,ActLstOth ,0x380,0x380,0x380,0x380,0x380,0x380,0x380,Act_CONT_NORM,Act_1ST_TAB,NULL ,Adm_AddAdmToDeg }, + [ActRemAdmDeg ] = { 584,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Adm_RemAdmDeg }, + [ActLstGst ] = { 587,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_SeeGuests }, + [ActLstGstAll ] = {1189,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_NEW_TAB,NULL ,Usr_ListAllDataGsts }, + [ActPrnGstPho ] = {1190,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_NEW_TAB,NULL ,Usr_SeeGstClassPhotoPrn }, + [ActDoActOnSevGst ] = {1753,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Usr_DoActionOnSeveralUsrs1 ,Usr_DoActionOnSeveralUsrs2 }, + [ActSeeRecSevGst ] = {1187,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ListRecordsGstsShow }, + [ActPrnRecSevGst ] = {1188,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_NEW_TAB,NULL ,Rec_ListRecordsGstsPrint }, + [ActReqMdfOneOth ] = {1414,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqRegRemOth }, + [ActReqMdfOth ] = {1418,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherOth }, + [ActReqOthPho ] = {1432,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_SendPhotoUsr }, + [ActDetOthPho ] = {1435,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_DATA,Act_1ST_TAB,NULL ,Pho_RecOtherUsrPhotoDetFaces }, + [ActChgOthPho ] = {1438,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Pho_ChangeUsrPhoto1 ,Pho_ChangeUsrPhoto2 }, + [ActReqRemOthPho ] = {1574,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ReqRemUsrPhoto }, + [ActRemOthPho ] = {1441,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_RemoveUsrPhoto }, + [ActCreOth ] = {1444,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 }, + [ActUpdOth ] = {1422,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 }, + [ActCnfID_Oth ] = {1568,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_ConfirmOtherUsrID }, + [ActFrmAccOth ] = {1735,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_ShowFormChgOtherUsrAccount }, + [ActRemNicOth ] = {1738,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_RemoveOtherUsrNick }, + [ActChgNicOth ] = {1741,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_ChangeOtherUsrNick }, + [ActRemID_Oth ] = {1450,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_RemoveOtherUsrID }, + [ActChgID_Oth ] = {1453,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_ChangeOtherUsrID }, + [ActChgPwdOth ] = {1467,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,Pwd_UpdateOtherUsrPwd ,Acc_ShowFormChgOtherUsrAccount }, + [ActRemMaiOth ] = {1478,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_RemoveOtherUsrEmail }, + [ActChgMaiOth ] = {1481,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_ChangeOtherUsrEmail }, + [ActRemUsrGbl ] = { 62,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_GetUsrCodAndRemUsrGbl }, + [ActReqRemOldUsr ] = { 590,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskRemoveOldUsrs }, + [ActRemOldUsr ] = { 773,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_RemoveOldUsrs }, + [ActLstDupUsr ] = {1578,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Dup_ListDuplicateUsrs }, + [ActLstSimUsr ] = {1579,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Dup_GetUsrCodAndListSimilarUsrs}, + [ActRemDupUsr ] = {1580,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Dup_RemoveUsrFromListDupUsrs }, - [ActLstGst ] = { 587,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_SeeGuests ,NULL}, + // Attendance + [ActSeeAllAtt ] = { 861, 4,TabUsr,ActSeeAllAtt ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_SeeEvents }, + [ActReqLstUsrAtt ] = {1073,-1,TabUnk,ActSeeAllAtt ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ReqListUsrsAttendanceCrs }, + [ActSeeLstMyAtt ] = {1473,-1,TabUnk,ActSeeAllAtt ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ListMyAttendanceCrs }, + [ActPrnLstMyAtt ] = {1474,-1,TabUnk,ActSeeAllAtt ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Att_PrintMyAttendanceCrs }, + [ActSeeLstUsrAtt ] = {1074,-1,TabUnk,ActSeeAllAtt ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ListUsrsAttendanceCrs }, + [ActPrnLstUsrAtt ] = {1075,-1,TabUnk,ActSeeAllAtt ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_NEW_TAB,NULL ,Att_PrintUsrsAttendanceCrs }, + [ActFrmNewAtt ] = {1063,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ReqCreatOrEditEvent }, + [ActEdiOneAtt ] = {1064,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ReqCreatOrEditEvent }, + [ActNewAtt ] = {1065,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ReceiveFormEvent }, + [ActChgAtt ] = {1066,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_ReceiveFormEvent }, + [ActReqRemAtt ] = {1067,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_AskRemEvent }, + [ActRemAtt ] = {1068,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_GetAndRemEvent }, + [ActHidAtt ] = {1069,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_HideEvent }, + [ActUnhAtt ] = {1070,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_UnhideEvent }, + [ActSeeOneAtt ] = {1071,-1,TabUnk,ActSeeAllAtt ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_SeeOneEvent }, + [ActReqLnkAtt ] = {1938,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,AttRsc_GetLinkToEvent }, + [ActRecAttStd ] = {1072,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_RegisterStudentsInEvent }, + [ActRecAttMe ] = {1076,-1,TabUnk,ActSeeAllAtt ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Att_RegisterMeAsStdInEvent }, - [ActPrnGstPho ] = {1190,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Usr_SeeGstClassPhotoPrn ,NULL}, - [ActPrnStdPho ] = { 120,-1,TabUnk,ActLstStd ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Usr_SeeStdClassPhotoPrn ,NULL}, - [ActPrnTchPho ] = { 443,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Usr_SeeTchClassPhotoPrn ,NULL}, - [ActLstGstAll ] = {1189,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Usr_ListAllDataGsts ,NULL}, - [ActLstStdAll ] = { 42,-1,TabUnk,ActLstStd ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Usr_ListAllDataStds ,NULL}, - [ActLstTchAll ] = { 578,-1,TabUnk,ActLstTch ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Usr_ListAllDataTchs ,NULL}, + // Sign up + [ActReqSignUp ] = {1054, 5,TabUsr,ActReqSignUp , 0,0x006, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ReqSignUpInCrs }, + [ActSignUp ] = {1056,-1,TabUnk,ActReqSignUp , 0,0x006, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_SignUpInCrs }, - [ActSeeRecOneStd ] = {1174,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_GetUsrAndShowRecOneStdCrs ,NULL}, - [ActSeeRecOneTch ] = {1175,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_GetUsrAndShowRecOneTchCrs ,NULL}, + // Requests + [ActSeeSignUpReq ] = {1057, 6,TabUsr,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_ShowEnrolmentRequests }, + [ActUpdSignUpReq ] = {1522,-1,TabUnk,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_UpdateEnrolmentRequests }, + [ActReqRejSignUp ] = {1058,-1,TabUnk,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_AskIfRejectSignUp }, + [ActRejSignUp ] = {1059,-1,TabUnk,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Enr_RejectSignUp }, - [ActDoActOnSevGst ] = {1753,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Usr_DoActionOnSeveralUsrs1 ,Usr_DoActionOnSeveralUsrs2 ,NULL}, - [ActDoActOnSevStd ] = {1754,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Usr_DoActionOnSeveralUsrs1 ,Usr_DoActionOnSeveralUsrs2 ,NULL}, - [ActDoActOnSevTch ] = {1755,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Usr_DoActionOnSeveralUsrs1 ,Usr_DoActionOnSeveralUsrs2 ,NULL}, - - [ActSeeRecSevGst ] = {1187,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ListRecordsGstsShow ,NULL}, - [ActSeeRecSevStd ] = { 89,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ListRecordsStdsShow ,NULL}, - [ActSeeRecSevTch ] = { 22,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ListRecordsTchsShow ,NULL}, - [ActPrnRecSevGst ] = {1188,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Rec_ListRecordsGstsPrint ,NULL}, - [ActPrnRecSevStd ] = { 111,-1,TabUnk,ActLstStd ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Rec_ListRecordsStdsPrint ,NULL}, - [ActPrnRecSevTch ] = { 127,-1,TabUnk,ActLstTch ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Rec_ListRecordsTchsPrint ,NULL}, - - [ActRcvRecOthUsr ] = { 300,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateAndShowOtherCrsRecord,NULL}, - [ActEdiRecFie ] = { 292,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ReqEditRecordFields ,NULL}, - [ActNewFie ] = { 293,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ReceiveFormField ,NULL}, - [ActReqRemFie ] = { 294,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ReqRemField ,NULL}, - [ActRemFie ] = { 295,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_RemoveField ,NULL}, - [ActRenFie ] = { 296,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_RenameField ,NULL}, - [ActChgRowFie ] = { 305,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ChangeLinesField ,NULL}, - [ActChgVisFie ] = { 297,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ChangeVisibilityField ,NULL}, - [ActRcvRecCrs ] = { 301,-1,TabUnk,ActLstStd ,0x208,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateAndShowMyCrsRecord ,NULL}, - - [ActFrmLogInUsrAgd ] = {1614,-1,TabUnk,ActLstTch , 0,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_PutFormLogInToShowUsrAgenda,NULL}, - [ActLogInUsrAgd ] = {1615,-1,TabUnk,ActLstTch ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ShowOtherAgendaAfterLogIn ,NULL}, - [ActLogInUsrAgdLan ] = {1616,-1,TabUnk,ActLstTch ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ShowOtherAgendaAfterLogIn ,NULL}, - - [ActReqEnrSevStd ] = {1426,-1,TabUnk,ActLstStd ,0x3E0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqAdminStds ,NULL}, - [ActReqEnrSevNET ] = {1642,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqAdminNonEditingTchs ,NULL}, - [ActReqEnrSevTch ] = {1427,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqAdminTchs ,NULL}, - - [ActReqLstUsrAtt ] = {1073,-1,TabUnk,ActSeeAllAtt ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ReqListUsrsAttendanceCrs ,NULL}, - [ActSeeLstMyAtt ] = {1473,-1,TabUnk,ActSeeAllAtt ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ListMyAttendanceCrs ,NULL}, - [ActPrnLstMyAtt ] = {1474,-1,TabUnk,ActSeeAllAtt ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Att_PrintMyAttendanceCrs ,NULL}, - [ActSeeLstUsrAtt ] = {1074,-1,TabUnk,ActSeeAllAtt ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ListUsrsAttendanceCrs ,NULL}, - [ActPrnLstUsrAtt ] = {1075,-1,TabUnk,ActSeeAllAtt ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Att_PrintUsrsAttendanceCrs ,NULL}, - [ActFrmNewAtt ] = {1063,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ReqCreatOrEditEvent ,NULL}, - [ActEdiOneAtt ] = {1064,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ReqCreatOrEditEvent ,NULL}, - [ActNewAtt ] = {1065,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ReceiveFormEvent ,NULL}, - [ActChgAtt ] = {1066,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_ReceiveFormEvent ,NULL}, - [ActReqRemAtt ] = {1067,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_AskRemEvent ,NULL}, - [ActRemAtt ] = {1068,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_GetAndRemEvent ,NULL}, - [ActHidAtt ] = {1069,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_HideEvent ,NULL}, - [ActUnhAtt ] = {1070,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_UnhideEvent ,NULL}, - [ActSeeOneAtt ] = {1071,-1,TabUnk,ActSeeAllAtt ,0x238,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_SeeOneEvent ,NULL}, - [ActReqLnkAtt ] = {1938,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,AttRsc_GetLinkToEvent ,NULL}, - [ActRecAttStd ] = {1072,-1,TabUnk,ActSeeAllAtt ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_RegisterStudentsInEvent ,NULL}, - [ActRecAttMe ] = {1076,-1,TabUnk,ActSeeAllAtt ,0x008, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Att_RegisterMeAsStdInEvent ,NULL}, - - [ActSignUp ] = {1056,-1,TabUnk,ActReqSignUp , 0,0x006, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_SignUpInCrs ,NULL}, - [ActUpdSignUpReq ] = {1522,-1,TabUnk,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_UpdateEnrolmentRequests ,NULL}, - [ActReqRejSignUp ] = {1058,-1,TabUnk,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskIfRejectSignUp ,NULL}, - [ActRejSignUp ] = {1059,-1,TabUnk,ActSeeSignUpReq ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_RejectSignUp ,NULL}, - - [ActReqMdfOneOth ] = {1414,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqRegRemOth ,NULL}, - [ActReqMdfOneStd ] = {1415,-1,TabUnk,ActLstStd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqRegRemStd ,NULL}, - [ActReqMdfOneTch ] = {1416,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqRegRemTch ,NULL}, - - [ActReqMdfOth ] = {1418,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherOth ,NULL}, - [ActReqMdfStd ] = {1419,-1,TabUnk,ActLstStd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherStd ,NULL}, - [ActReqMdfNET ] = {1644,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherTch ,NULL}, - [ActReqMdfTch ] = {1420,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskIfRegRemAnotherTch ,NULL}, - - [ActReqOthPho ] = {1432,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_SendPhotoUsr ,NULL}, - [ActReqStdPho ] = {1433,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_SendPhotoUsr ,NULL}, - [ActReqTchPho ] = {1434,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_SendPhotoUsr ,NULL}, - - [ActDetOthPho ] = {1435,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Pho_RecOtherUsrPhotoDetFaces ,NULL}, - [ActDetStdPho ] = {1436,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Pho_RecOtherUsrPhotoDetFaces ,NULL}, - [ActDetTchPho ] = {1437,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Pho_RecOtherUsrPhotoDetFaces ,NULL}, - - [ActChgOthPho ] = {1438,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Pho_ChangeUsrPhoto1 ,Pho_ChangeUsrPhoto2 ,NULL}, - [ActChgStdPho ] = {1439,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Pho_ChangeUsrPhoto1 ,Pho_ChangeUsrPhoto2 ,NULL}, - [ActChgTchPho ] = {1440,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Pho_ChangeUsrPhoto1 ,Pho_ChangeUsrPhoto2 ,NULL}, - - [ActReqRemOthPho ] = {1574,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ReqRemUsrPhoto ,NULL}, - [ActReqRemStdPho ] = {1575,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ReqRemUsrPhoto ,NULL}, - [ActReqRemTchPho ] = {1576,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ReqRemUsrPhoto ,NULL}, - [ActRemOthPho ] = {1441,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_RemoveUsrPhoto ,NULL}, - [ActRemStdPho ] = {1442,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_RemoveUsrPhoto ,NULL}, - [ActRemTchPho ] = {1443,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_RemoveUsrPhoto ,NULL}, - - [ActCreOth ] = {1444,-1,TabUnk,ActLstOth ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 ,NULL}, - [ActCreStd ] = {1445,-1,TabUnk,ActLstStd ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 ,NULL}, - [ActCreNET ] = {1645,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 ,NULL}, - [ActCreTch ] = {1446,-1,TabUnk,ActLstTch ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_CreateNewUsr1 ,Enr_CreateNewUsr2 ,NULL}, - - [ActUpdOth ] = {1422,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 ,NULL}, - [ActUpdStd ] = {1423,-1,TabUnk,ActLstStd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 ,NULL}, - [ActUpdNET ] = {1646,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 ,NULL}, - [ActUpdTch ] = {1424,-1,TabUnk,ActLstTch ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_ModifyUsr1 ,Enr_ModifyUsr2 ,NULL}, - - [ActReqAccEnrStd ] = {1456,-1,TabUnk,ActLstStd ,0x3C8, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqAcceptRegisterInCrs ,NULL}, - [ActReqAccEnrNET ] = {1639,-1,TabUnk,ActLstTch ,0x3D0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqAcceptRegisterInCrs ,NULL}, - [ActReqAccEnrTch ] = {1457,-1,TabUnk,ActLstTch ,0x3E0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqAcceptRegisterInCrs ,NULL}, - [ActAccEnrStd ] = {1458,-1,TabUnk,ActLstStd ,0x3C8, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AcceptRegisterMeInCrs ,NULL}, - [ActAccEnrNET ] = {1640,-1,TabUnk,ActLstTch ,0x3D0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AcceptRegisterMeInCrs ,NULL}, - [ActAccEnrTch ] = {1459,-1,TabUnk,ActLstTch ,0x3E0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AcceptRegisterMeInCrs ,NULL}, - [ActRemMe_Std ] = {1460,-1,TabUnk,ActLstStd ,0x3C8, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqRemMeFromCrs ,NULL}, - [ActRemMe_NET ] = {1641,-1,TabUnk,ActLstTch ,0x3D0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqRemMeFromCrs ,NULL}, - [ActRemMe_Tch ] = {1461,-1,TabUnk,ActLstTch ,0x3E0, 0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReqRemMeFromCrs ,NULL}, - - [ActNewAdmIns ] = {1337,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Adm_AddAdmToIns ,NULL}, - [ActRemAdmIns ] = {1338,-1,TabUnk,ActLstOth ,0x300,0x300,0x300,0x300,0x300,0x300,0x300,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Adm_RemAdmIns ,NULL}, - - [ActNewAdmCtr ] = {1339,-1,TabUnk,ActLstOth ,0x300,0x300,0x300,0x300,0x300,0x300,0x300,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Adm_AddAdmToCtr ,NULL}, - [ActRemAdmCtr ] = {1340,-1,TabUnk,ActLstOth ,0x380,0x380,0x380,0x380,0x380,0x380,0x380,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Adm_RemAdmCtr ,NULL}, - - [ActNewAdmDeg ] = { 586,-1,TabUnk,ActLstOth ,0x380,0x380,0x380,0x380,0x380,0x380,0x380,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Adm_AddAdmToDeg ,NULL}, - [ActRemAdmDeg ] = { 584,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Adm_RemAdmDeg ,NULL}, - - [ActRcvFrmEnrSevStd ] = {1428,-1,TabUnk,ActLstStd ,0x3E0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReceiveFormAdminStds ,NULL}, - [ActRcvFrmEnrSevNET ] = {1643,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReceiveFormAdminNonEditTchs,NULL}, - [ActRcvFrmEnrSevTch ] = {1429,-1,TabUnk,ActLstTch ,0x3C0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_ReceiveFormAdminTchs ,NULL}, - - [ActCnfID_Oth ] = {1568,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_ConfirmOtherUsrID ,NULL}, - [ActCnfID_Std ] = {1569,-1,TabUnk,ActLstStd ,0x3F0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_ConfirmOtherUsrID ,NULL}, - [ActCnfID_Tch ] = {1570,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_ConfirmOtherUsrID ,NULL}, - - [ActFrmAccOth ] = {1735,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_ShowFormChgOtherUsrAccount ,NULL}, - [ActFrmAccStd ] = {1736,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_ShowFormChgOtherUsrAccount ,NULL}, - [ActFrmAccTch ] = {1737,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_ShowFormChgOtherUsrAccount ,NULL}, - - [ActRemNicOth ] = {1738,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_RemoveOtherUsrNick ,NULL}, - [ActRemNicStd ] = {1739,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_RemoveOtherUsrNick ,NULL}, - [ActRemNicTch ] = {1740,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_RemoveOtherUsrNick ,NULL}, - [ActChgNicOth ] = {1741,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_ChangeOtherUsrNick ,NULL}, - [ActChgNicStd ] = {1742,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_ChangeOtherUsrNick ,NULL}, - [ActChgNicTch ] = {1743,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_ChangeOtherUsrNick ,NULL}, - - [ActRemID_Oth ] = {1450,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_RemoveOtherUsrID ,NULL}, - [ActRemID_Std ] = {1451,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_RemoveOtherUsrID ,NULL}, - [ActRemID_Tch ] = {1452,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_RemoveOtherUsrID ,NULL}, - [ActChgID_Oth ] = {1453,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_ChangeOtherUsrID ,NULL}, - [ActChgID_Std ] = {1454,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_ChangeOtherUsrID ,NULL}, - [ActChgID_Tch ] = {1455,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_ChangeOtherUsrID ,NULL}, - - [ActChgPwdOth ] = {1467,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Pwd_UpdateOtherUsrPwd ,Acc_ShowFormChgOtherUsrAccount ,NULL}, - [ActChgPwdStd ] = {1468,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Pwd_UpdateOtherUsrPwd ,Acc_ShowFormChgOtherUsrAccount ,NULL}, - [ActChgPwdTch ] = {1469,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,Pwd_UpdateOtherUsrPwd ,Acc_ShowFormChgOtherUsrAccount ,NULL}, - - [ActRemMaiOth ] = {1478,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_RemoveOtherUsrEmail ,NULL}, - [ActRemMaiStd ] = {1479,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_RemoveOtherUsrEmail ,NULL}, - [ActRemMaiTch ] = {1480,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_RemoveOtherUsrEmail ,NULL}, - [ActChgMaiOth ] = {1481,-1,TabUnk,ActLstOth ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_ChangeOtherUsrEmail ,NULL}, - [ActChgMaiStd ] = {1482,-1,TabUnk,ActLstStd ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_ChangeOtherUsrEmail ,NULL}, - [ActChgMaiTch ] = {1483,-1,TabUnk,ActLstTch ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_ChangeOtherUsrEmail ,NULL}, - - [ActRemStdCrs ] = {1462,-1,TabUnk,ActLstStd ,0x3F8,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_RemUsrFromCrs1 ,Enr_RemUsrFromCrs2 ,NULL}, - [ActRemNETCrs ] = {1647,-1,TabUnk,ActLstTch ,0x3F0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_RemUsrFromCrs1 ,Enr_RemUsrFromCrs2 ,NULL}, - [ActRemTchCrs ] = {1463,-1,TabUnk,ActLstTch ,0x3E0,0x3C0, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Enr_RemUsrFromCrs1 ,Enr_RemUsrFromCrs2 ,NULL}, - - [ActRemUsrGbl ] = { 62,-1,TabUnk,ActLstOth ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_GetUsrCodAndRemUsrGbl ,NULL}, - - [ActReqRemAllStdCrs ] = { 88,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskRemAllStdsThisCrs ,NULL}, - [ActRemAllStdCrs ] = { 87,-1,TabUnk,ActLstStd ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_RemAllStdsThisCrs ,NULL}, - - [ActReqRemOldUsr ] = { 590,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_AskRemoveOldUsrs ,NULL}, - [ActRemOldUsr ] = { 773,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Enr_RemoveOldUsrs ,NULL}, - - [ActLstDupUsr ] = {1578,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Dup_ListDuplicateUsrs ,NULL}, - [ActLstSimUsr ] = {1579,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Dup_GetUsrCodAndListSimilarUsrs,NULL}, - [ActRemDupUsr ] = {1580,-1,TabUnk,ActLstOth ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Dup_RemoveUsrFromListDupUsrs ,NULL}, - - [ActReqFolSevStd ] = {1756,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_ReqFollowStds ,NULL}, - [ActReqFolSevTch ] = {1757,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_ReqFollowTchs ,NULL}, - [ActReqUnfSevStd ] = {1758,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_ReqUnfollowStds ,NULL}, - [ActReqUnfSevTch ] = {1759,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_ReqUnfollowTchs ,NULL}, - [ActFolSevStd ] = {1760,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_FollowUsrs ,NULL}, - [ActFolSevTch ] = {1761,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_FollowUsrs ,NULL}, - [ActUnfSevStd ] = {1762,-1,TabUnk,ActLstStd ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_UnfollowUsrs ,NULL}, - [ActUnfSevTch ] = {1763,-1,TabUnk,ActLstTch ,0x3F8,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fol_UnfollowUsrs ,NULL}, + // Connected + [ActLstCon ] = { 995, 7,TabUsr,ActLstCon ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Con_ShowConnectedUsrs }, // TabMsg ****************************************************************** - // Actions in menu: - [ActSeeAnn ] = {1235, 0,TabMsg,ActSeeAnn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_ShowAllAnnouncements ,"bullhorn" }, - [ActSeeAllNot ] = { 762, 1,TabMsg,ActSeeAllNot ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Not_ListFullNotices ,"sticky-note" }, - [ActSeeFor ] = { 95, 2,TabMsg,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,"comments" }, -// [ActSeeChtRms ] = { 51, 3,TabMsg,ActSeeChtRms ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cht_ShowChatRooms ,"comments" }, - [ActSeeChtRms ] = { 51, 3,TabMsg,ActSeeChtRms ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Cht_ShowChatRooms ,"comments" }, - [ActSeeRcvMsg ] = { 3, 4,TabMsg,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ShowRecMsgs ,"envelope" }, - [ActReqMaiUsr ] = {1772, 5,TabMsg,ActReqMaiUsr ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_ReqUsrsToListEmails ,"at" }, + // Announcements + [ActSeeAnn ] = {1235, 0,TabMsg,ActSeeAnn ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ann_ShowAllAnnouncements }, + [ActWriAnn ] = {1237,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ann_ShowFormAnnouncement }, + [ActNewAnn ] = {1238,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ann_ReceiveAnnouncement }, + [ActHidAnn ] = {1470,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Ann_HideActiveAnnouncement ,Ann_ShowAllAnnouncements }, + [ActUnhAnn ] = {1471,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,Ann_RevealHiddenAnnouncement,Ann_ShowAllAnnouncements }, + [ActRemAnn ] = {1236,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ann_RemoveAnnouncement }, - // 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}, - [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}, - [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}, + // Notices + [ActSeeAllNot ] = { 762, 1,TabMsg,ActSeeAllNot ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Not_ListFullNotices }, + [ActSeeOneNot ] = {1164,-1,TabUnk,ActSeeAllNot ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Not_GetHighLightedNotCod ,Not_ListFullNotices }, + [ActWriNot ] = { 59,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Not_ShowFormNotice }, + [ActNewNot ] = { 60,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Not_ReceiveNotice ,Not_ListFullNotices }, + [ActHidNot ] = { 763,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Not_HideActiveNotice ,Not_ListFullNotices }, + [ActUnhNot ] = { 764,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Not_RevealHiddenNotice ,Not_ListFullNotices }, + [ActReqRemNot ] = {1472,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Not_ReqRemNotice }, + [ActRemNot ] = { 73,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Not_RemoveNotice ,Not_ListNoticesAfterRemoval }, - [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}, - [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}, - [ActRemNot ] = { 73,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Not_RemoveNotice ,Not_ListNoticesAfterRemoval ,NULL}, + // Forums + [ActSeeFor ] = { 95, 2,TabMsg,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForCrsUsr ] = { 345,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForCrsTch ] = { 431,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForDegUsr ] = { 241,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForDegTch ] = { 243,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForCtrUsr ] = { 901,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForCtrTch ] = { 430,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForInsUsr ] = { 725,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForInsTch ] = { 724,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForGenUsr ] = { 726,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForGenTch ] = { 723,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForSWAUsr ] = { 242,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeeForSWATch ] = { 245,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowForumTheads }, + [ActSeePstForCrsUsr ] = { 346,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForCrsTch ] = { 347,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForDegUsr ] = { 255,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForDegTch ] = { 291,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForCtrUsr ] = { 348,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForCtrTch ] = { 902,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForInsUsr ] = { 730,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForInsTch ] = { 746,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForGenUsr ] = { 727,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForGenTch ] = { 731,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForSWAUsr ] = { 244,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActSeePstForSWATch ] = { 246,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ShowThreadPosts }, + [ActRcvThrForCrsUsr ] = { 350,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForCrsTch ] = { 754,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForDegUsr ] = { 252,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForDegTch ] = { 247,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForCtrUsr ] = { 903,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForCtrTch ] = { 904,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForInsUsr ] = { 737,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForInsTch ] = { 769,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForGenUsr ] = { 736,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForGenTch ] = { 765,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForSWAUsr ] = { 258,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvThrForSWATch ] = { 259,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForCrsUsr ] = { 599,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForCrsTch ] = { 755,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForDegUsr ] = { 606,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForDegTch ] = { 617,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForCtrUsr ] = { 905,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForCtrTch ] = { 906,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForInsUsr ] = { 740,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForInsTch ] = { 770,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForGenUsr ] = { 747,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForGenTch ] = { 816,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForSWAUsr ] = { 603,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActRcvRepForSWATch ] = { 622,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_1ST_TAB,NULL ,For_ReceiveForumPost }, + [ActReqDelThrCrsUsr ] = { 867,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrCrsTch ] = { 869,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrDegUsr ] = { 907,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrDegTch ] = { 908,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrCtrUsr ] = { 909,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrCtrTch ] = { 910,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrInsUsr ] = { 911,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrInsTch ] = { 912,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrGenUsr ] = { 913,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrGenTch ] = { 914,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrSWAUsr ] = { 881,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActReqDelThrSWATch ] = { 915,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_ReqRemThread }, + [ActDelThrForCrsUsr ] = { 868,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForCrsTch ] = { 876,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForDegUsr ] = { 916,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForDegTch ] = { 917,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForCtrUsr ] = { 918,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForCtrTch ] = { 919,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForInsUsr ] = { 920,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForInsTch ] = { 921,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForGenUsr ] = { 922,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForGenTch ] = { 923,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForSWAUsr ] = { 882,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActDelThrForSWATch ] = { 924,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemoveThread }, + [ActCutThrForCrsUsr ] = { 926,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForCrsTch ] = { 927,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForDegUsr ] = { 928,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForDegTch ] = { 929,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForCtrUsr ] = { 930,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForCtrTch ] = { 931,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForInsUsr ] = { 932,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForInsTch ] = { 933,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForGenUsr ] = { 934,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForGenTch ] = { 935,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForSWAUsr ] = { 890,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActCutThrForSWATch ] = { 936,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_CutThread }, + [ActPasThrForCrsUsr ] = { 891,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForCrsTch ] = { 937,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForDegUsr ] = { 938,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForDegTch ] = { 939,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForCtrUsr ] = { 940,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForCtrTch ] = { 941,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForInsUsr ] = { 942,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForInsTch ] = { 943,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForGenUsr ] = { 944,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForGenTch ] = { 945,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForSWAUsr ] = { 946,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActPasThrForSWATch ] = { 947,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_PasteThread }, + [ActDelPstForCrsUsr ] = { 602,-1,TabUnk,ActSeeFor ,0x238,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForCrsTch ] = { 756,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForDegUsr ] = { 608,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForDegTch ] = { 680,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForCtrUsr ] = { 948,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForCtrTch ] = { 949,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForInsUsr ] = { 743,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForInsTch ] = { 772,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForGenUsr ] = { 735,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForGenTch ] = { 950,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForSWAUsr ] = { 613,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActDelPstForSWATch ] = { 623,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_RemovePost }, + [ActEnbPstForCrsUsr ] = { 624,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForCrsTch ] = { 951,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForDegUsr ] = { 616,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForDegTch ] = { 619,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForCtrUsr ] = { 952,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForCtrTch ] = { 953,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForInsUsr ] = { 954,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForInsTch ] = { 955,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForGenUsr ] = { 956,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForGenTch ] = { 957,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForSWAUsr ] = { 632,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActEnbPstForSWATch ] = { 634,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_EnablePost }, + [ActDisPstForCrsUsr ] = { 610,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForCrsTch ] = { 958,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForDegUsr ] = { 615,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForDegTch ] = { 618,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForCtrUsr ] = { 959,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForCtrTch ] = { 960,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForInsUsr ] = { 961,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForInsTch ] = { 962,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForGenUsr ] = { 963,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForGenTch ] = { 925,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForSWAUsr ] = { 625,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActDisPstForSWATch ] = { 635,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,For_DisablePost }, + [ActReqLnkForCrsUsr ] = {1941,-1,TabUnk,ActSeeFor ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,ForRsc_GetLinkToThread }, - [ActSeeForCrsUsr ] = { 345,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForCrsTch ] = { 431,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForDegUsr ] = { 241,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForDegTch ] = { 243,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForCtrUsr ] = { 901,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForCtrTch ] = { 430,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForInsUsr ] = { 725,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForInsTch ] = { 724,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForGenUsr ] = { 726,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForGenTch ] = { 723,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForSWAUsr ] = { 242,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, - [ActSeeForSWATch ] = { 245,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowForumTheads ,NULL}, + // Chat +// [ActSeeChtRms ] = { 51, 3,TabMsg,ActSeeChtRms ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cht_ShowChatRooms }, + [ActSeeChtRms ] = { 51, 3,TabMsg,ActSeeChtRms ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_1ST_TAB,NULL ,Cht_ShowChatRooms }, +// [ActCht ] = { 52,-1,TabUnk,ActSeeChtRms ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_NEW_TAB,Cht_OpenChatWindow ,NULL }, + [ActCht ] = { 52,-1,TabUnk,ActSeeChtRms ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_NEW_TAB,Cht_OpenChatWindow ,NULL }, - [ActSeePstForCrsUsr ] = { 346,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForCrsTch ] = { 347,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForDegUsr ] = { 255,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForDegTch ] = { 291,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForCtrUsr ] = { 348,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForCtrTch ] = { 902,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForInsUsr ] = { 730,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForInsTch ] = { 746,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForGenUsr ] = { 727,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForGenTch ] = { 731,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForSWAUsr ] = { 244,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, - [ActSeePstForSWATch ] = { 246,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ShowThreadPosts ,NULL}, + // Messages + [ActSeeRcvMsg ] = { 3, 4,TabMsg,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ShowRecMsgs }, + [ActReqMsgUsr ] = { 26,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_FormMsgUsrs }, + [ActSeeSntMsg ] = { 70,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ShowSntMsgs }, + [ActRcvMsgUsr ] = { 27,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,Msg_RecMsgFromUsr }, + [ActReqDelAllSntMsg ] = { 604,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ReqDelAllSntMsgs }, + [ActReqDelAllRcvMsg ] = { 593,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ReqDelAllRecMsgs }, + [ActDelAllSntMsg ] = { 434,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_DelAllSntMsgs }, + [ActDelAllRcvMsg ] = { 436,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_DelAllRecMsgs }, + [ActDelSntMsg ] = { 90,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_DelSntMsg }, + [ActDelRcvMsg ] = { 64,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_DelRecMsg }, + [ActExpSntMsg ] = { 664,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ExpSntMsg }, + [ActExpRcvMsg ] = { 663,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ExpRecMsg }, + [ActConSntMsg ] = {1020,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ConSntMsg }, + [ActConRcvMsg ] = {1019,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ConRecMsg }, + [ActLstBanUsr ] = {1017,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_ListBannedUsrs }, + [ActBanUsrMsg ] = {1015,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_BanSenderWhenShowingMsgs }, + [ActUnbUsrMsg ] = {1016,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_UnbanSenderWhenShowingMsgs }, + [ActUnbUsrLst ] = {1018,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Msg_UnbanSenderWhenListingUsrs }, - [ActRcvThrForCrsUsr ] = { 350,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForCrsTch ] = { 754,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForDegUsr ] = { 252,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForDegTch ] = { 247,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForCtrUsr ] = { 903,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForCtrTch ] = { 904,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForInsUsr ] = { 737,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForInsTch ] = { 769,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForGenUsr ] = { 736,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForGenTch ] = { 765,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForSWAUsr ] = { 258,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvThrForSWATch ] = { 259,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - - [ActRcvRepForCrsUsr ] = { 599,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForCrsTch ] = { 755,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForDegUsr ] = { 606,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForDegTch ] = { 617,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForCtrUsr ] = { 905,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForCtrTch ] = { 906,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForInsUsr ] = { 740,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForInsTch ] = { 770,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForGenUsr ] = { 747,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForGenTch ] = { 816,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForSWAUsr ] = { 603,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - [ActRcvRepForSWATch ] = { 622,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,For_ReceiveForumPost ,NULL}, - - [ActReqDelThrCrsUsr ] = { 867,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrCrsTch ] = { 869,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrDegUsr ] = { 907,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrDegTch ] = { 908,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrCtrUsr ] = { 909,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrCtrTch ] = { 910,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrInsUsr ] = { 911,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrInsTch ] = { 912,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrGenUsr ] = { 913,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrGenTch ] = { 914,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrSWAUsr ] = { 881,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - [ActReqDelThrSWATch ] = { 915,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_ReqRemThread ,NULL}, - - [ActDelThrForCrsUsr ] = { 868,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForCrsTch ] = { 876,-1,TabUnk,ActSeeFor ,0x220,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForDegUsr ] = { 916,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForDegTch ] = { 917,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForCtrUsr ] = { 918,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForCtrTch ] = { 919,-1,TabUnk,ActSeeFor ,0x3C0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForInsUsr ] = { 920,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForInsTch ] = { 921,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForGenUsr ] = { 922,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForGenTch ] = { 923,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForSWAUsr ] = { 882,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - [ActDelThrForSWATch ] = { 924,-1,TabUnk,ActSeeFor ,0x200,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemoveThread ,NULL}, - - [ActCutThrForCrsUsr ] = { 926,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForCrsTch ] = { 927,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForDegUsr ] = { 928,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForDegTch ] = { 929,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForCtrUsr ] = { 930,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForCtrTch ] = { 931,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForInsUsr ] = { 932,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForInsTch ] = { 933,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForGenUsr ] = { 934,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForGenTch ] = { 935,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForSWAUsr ] = { 890,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - [ActCutThrForSWATch ] = { 936,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_CutThread ,NULL}, - - [ActPasThrForCrsUsr ] = { 891,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForCrsTch ] = { 937,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForDegUsr ] = { 938,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForDegTch ] = { 939,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForCtrUsr ] = { 940,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForCtrTch ] = { 941,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForInsUsr ] = { 942,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForInsTch ] = { 943,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForGenUsr ] = { 944,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForGenTch ] = { 945,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForSWAUsr ] = { 946,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - [ActPasThrForSWATch ] = { 947,-1,TabUnk,ActSeeFor ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_PasteThread ,NULL}, - - [ActDelPstForCrsUsr ] = { 602,-1,TabUnk,ActSeeFor ,0x238,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForCrsTch ] = { 756,-1,TabUnk,ActSeeFor ,0x230,0x204,0x204,0x204,0x204,0x204,0x204,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForDegUsr ] = { 608,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForDegTch ] = { 680,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForCtrUsr ] = { 948,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForCtrTch ] = { 949,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForInsUsr ] = { 743,-1,TabUnk,ActSeeFor ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForInsTch ] = { 772,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForGenUsr ] = { 735,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForGenTch ] = { 950,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForSWAUsr ] = { 613,-1,TabUnk,ActSeeFor ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - [ActDelPstForSWATch ] = { 623,-1,TabUnk,ActSeeFor ,0x3F0,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_RemovePost ,NULL}, - - [ActEnbPstForCrsUsr ] = { 624,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForCrsTch ] = { 951,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForDegUsr ] = { 616,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForDegTch ] = { 619,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForCtrUsr ] = { 952,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForCtrTch ] = { 953,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForInsUsr ] = { 954,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForInsTch ] = { 955,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForGenUsr ] = { 956,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForGenTch ] = { 957,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForSWAUsr ] = { 632,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - [ActEnbPstForSWATch ] = { 634,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_EnablePost ,NULL}, - - [ActDisPstForCrsUsr ] = { 610,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForCrsTch ] = { 958,-1,TabUnk,ActSeeFor ,0x220,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForDegUsr ] = { 615,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForDegTch ] = { 618,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForCtrUsr ] = { 959,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForCtrTch ] = { 960,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForInsUsr ] = { 961,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForInsTch ] = { 962,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForGenUsr ] = { 963,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForGenTch ] = { 925,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForSWAUsr ] = { 625,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - [ActDisPstForSWATch ] = { 635,-1,TabUnk,ActSeeFor ,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,For_DisablePost ,NULL}, - - [ActReqLnkForCrsUsr ] = {1941,-1,TabUnk,ActSeeFor ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ForRsc_GetLinkToThread ,NULL}, - -// [ActCht ] = { 52,-1,TabUnk,ActSeeChtRms ,0x3F8,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,0x3C4,Act_CONT_NORM,Act_BRW_NEW_TAB,Cht_OpenChatWindow ,NULL ,NULL}, - [ActCht ] = { 52,-1,TabUnk,ActSeeChtRms ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_NEW_TAB,Cht_OpenChatWindow ,NULL ,NULL}, - - [ActReqMsgUsr ] = { 26,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_FormMsgUsrs ,NULL}, - [ActSeeSntMsg ] = { 70,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ShowSntMsgs ,NULL}, - - [ActRcvMsgUsr ] = { 27,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Msg_RecMsgFromUsr ,NULL}, - [ActReqDelAllSntMsg ] = { 604,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ReqDelAllSntMsgs ,NULL}, - [ActReqDelAllRcvMsg ] = { 593,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ReqDelAllRecMsgs ,NULL}, - [ActDelAllSntMsg ] = { 434,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_DelAllSntMsgs ,NULL}, - [ActDelAllRcvMsg ] = { 436,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_DelAllRecMsgs ,NULL}, - [ActDelSntMsg ] = { 90,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_DelSntMsg ,NULL}, - [ActDelRcvMsg ] = { 64,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_DelRecMsg ,NULL}, - [ActExpSntMsg ] = { 664,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ExpSntMsg ,NULL}, - [ActExpRcvMsg ] = { 663,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ExpRecMsg ,NULL}, - [ActConSntMsg ] = {1020,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ConSntMsg ,NULL}, - [ActConRcvMsg ] = {1019,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ConRecMsg ,NULL}, - - [ActLstBanUsr ] = {1017,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_ListBannedUsrs ,NULL}, - [ActBanUsrMsg ] = {1015,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_BanSenderWhenShowingMsgs ,NULL}, - [ActUnbUsrMsg ] = {1016,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_UnbanSenderWhenShowingMsgs ,NULL}, - [ActUnbUsrLst ] = {1018,-1,TabUnk,ActSeeRcvMsg ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Msg_UnbanSenderWhenListingUsrs ,NULL}, - - [ActMaiUsr ] = { 100,-1,TabUnk,ActReqMaiUsr ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_GetSelUsrsAndListEmails ,NULL}, + // Mail + [ActReqMaiUsr ] = {1772, 5,TabMsg,ActReqMaiUsr ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_ReqUsrsToListEmails }, + [ActMaiUsr ] = { 100,-1,TabUnk,ActReqMaiUsr ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_GetSelUsrsAndListEmails }, // TabAna ****************************************************************** - // Actions in menu: - [ActReqUseGbl ] = { 761, 0,TabAna,ActReqUseGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fig_ReqShowFigures ,"chart-pie" }, - [ActSeePhoDeg ] = { 447, 1,TabAna,ActSeePhoDeg ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ShowPhotoDegree ,"graduation-cap" }, - [ActReqStaCrs ] = { 767, 2,TabAna,ActReqStaCrs ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ind_ReqIndicatorsCourses ,"tasks" }, - [ActSeeAllSvy ] = { 966, 3,TabAna,ActSeeAllSvy ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_SeeAllSurveys ,"poll" }, - [ActReqAccGbl ] = { 591, 4,TabAna,ActReqAccGbl ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToRecentWeeks,Sta_AskShowGblHits ,"chart-line" }, - [ActReqMyUsgRep ] = {1586, 5,TabAna,ActReqMyUsgRep ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rep_ReqMyUsageReport ,"file-alt" }, - [ActMFUAct ] = { 993, 6,TabAna,ActMFUAct ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,MFU_ShowMyMFUActions ,"heart" }, + // Figures + [ActReqUseGbl ] = { 761, 0,TabAna,ActReqUseGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fig_ReqShowFigures }, + [ActSeeUseGbl ] = { 84,-1,TabUnk,ActReqUseGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Fig_ShowFigures }, - // Actions not in menu: - [ActSeeUseGbl ] = { 84,-1,TabUnk,ActReqUseGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Fig_ShowFigures ,NULL}, - [ActPrnPhoDeg ] = { 448,-1,TabUnk,ActSeePhoDeg ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Pho_PrintPhotoDegree ,NULL}, - [ActCalPhoDeg ] = { 444,-1,TabUnk,ActSeePhoDeg ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_CalcPhotoDegree ,NULL}, + // Degrees + [ActSeePhoDeg ] = { 447, 1,TabAna,ActSeePhoDeg ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ShowPhotoDegree }, + [ActPrnPhoDeg ] = { 448,-1,TabUnk,ActSeePhoDeg ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_NEW_TAB,NULL ,Pho_PrintPhotoDegree }, + [ActCalPhoDeg ] = { 444,-1,TabUnk,ActSeePhoDeg ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_CalcPhotoDegree }, - [ActSeeAllStaCrs ] = { 768,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Ind_ShowIndicatorsCourses ,NULL}, + // Indicators + [ActReqStaCrs ] = { 767, 2,TabAna,ActReqStaCrs ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Ind_ReqIndicatorsCourses }, + [ActSeeAllStaCrs ] = { 768,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_NEW_TAB,NULL ,Ind_ShowIndicatorsCourses }, - [ActSeeOneSvy ] = { 982,-1,TabUnk,ActSeeAllSvy ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_SeeOneSurvey ,NULL}, - [ActAnsSvy ] = { 983,-1,TabUnk,ActSeeAllSvy ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReceiveSurveyAnswers ,NULL}, - [ActFrmNewSvy ] = { 973,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReqCreatOrEditSvy ,NULL}, - [ActEdiOneSvy ] = { 974,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReqCreatOrEditSvy ,NULL}, - [ActNewSvy ] = { 968,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReceiveFormSurvey ,NULL}, - [ActChgSvy ] = { 975,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReceiveFormSurvey ,NULL}, - [ActReqRemSvy ] = { 976,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_AskRemSurvey ,NULL}, - [ActRemSvy ] = { 969,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_RemoveSurvey ,NULL}, - [ActReqRstSvy ] = { 984,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_AskResetSurvey ,NULL}, - [ActRstSvy ] = { 985,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ResetSurvey ,NULL}, - [ActHidSvy ] = { 977,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_HideSurvey ,NULL}, - [ActUnhSvy ] = { 978,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_UnhideSurvey ,NULL}, - [ActReqLnkSvy ] = {1937,-1,TabUnk,ActSeeAllSvy ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,SvyRsc_GetLinkToSurvey ,NULL}, - [ActEdiOneSvyQst ] = { 979,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReqEditQuestion ,NULL}, - [ActNewSvyQst ] = { 980,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReceiveQst ,NULL}, - [ActChgSvyQst ] = {1976,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReceiveQst ,NULL}, - [ActReqRemSvyQst ] = {1524,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_ReqRemQst ,NULL}, - [ActRemSvyQst ] = { 981,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Svy_RemoveQst ,NULL}, + // Surveys + [ActSeeAllSvy ] = { 966, 3,TabAna,ActSeeAllSvy ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_SeeAllSurveys }, + [ActSeeOneSvy ] = { 982,-1,TabUnk,ActSeeAllSvy ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_SeeOneSurvey }, + [ActAnsSvy ] = { 983,-1,TabUnk,ActSeeAllSvy ,0x3F8,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReceiveSurveyAnswers }, + [ActFrmNewSvy ] = { 973,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReqCreatOrEditSvy }, + [ActEdiOneSvy ] = { 974,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReqCreatOrEditSvy }, + [ActNewSvy ] = { 968,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReceiveFormSurvey }, + [ActChgSvy ] = { 975,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReceiveFormSurvey }, + [ActReqRemSvy ] = { 976,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_AskRemSurvey }, + [ActRemSvy ] = { 969,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_RemoveSurvey }, + [ActReqRstSvy ] = { 984,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_AskResetSurvey }, + [ActRstSvy ] = { 985,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ResetSurvey }, + [ActHidSvy ] = { 977,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_HideSurvey }, + [ActUnhSvy ] = { 978,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_UnhideSurvey }, + [ActReqLnkSvy ] = {1937,-1,TabUnk,ActSeeAllSvy ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,SvyRsc_GetLinkToSurvey }, + [ActEdiOneSvyQst ] = { 979,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReqEditQuestion }, + [ActNewSvyQst ] = { 980,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReceiveQst }, + [ActChgSvyQst ] = {1976,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReceiveQst }, + [ActReqRemSvyQst ] = {1524,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_ReqRemQst }, + [ActRemSvyQst ] = { 981,-1,TabUnk,ActSeeAllSvy ,0x3E0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,0x3C0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Svy_RemoveQst }, - [ActSeeAccGbl ] = { 79,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Sta_SeeGblAccesses ,NULL}, - [ActReqAccCrs ] = { 594,-1,TabUnk,ActReqAccGbl ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_SetIniEndDatesToRecentWeeks,Sta_ReqCrsHits ,NULL}, - [ActSeeAccCrs ] = { 119,-1,TabUnk,ActReqAccGbl ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Sta_SeeCrsAccesses ,NULL}, + // Visits + [ActReqAccGbl ] = { 591, 4,TabAna,ActReqAccGbl ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToRecentWeeks,Sta_AskShowGblHits }, + [ActSeeAccGbl ] = { 79,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Sta_SeeGblAccesses }, + [ActReqAccCrs ] = { 594,-1,TabUnk,ActReqAccGbl ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,Dat_SetIniEndDatesToRecentWeeks,Sta_ReqCrsHits }, + [ActSeeAccCrs ] = { 119,-1,TabUnk,ActReqAccGbl ,0x230,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_1ST_TAB,NULL ,Sta_SeeCrsAccesses }, + [ActLstClk ] = { 989,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Log_ShowLastClicks }, + [ActRefLstClk ] = { 994,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_AJAX_RF,NULL ,Lay_RefreshLastClicks }, - [ActLstClk ] = { 989,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Log_ShowLastClicks ,NULL}, - [ActRefLstClk ] = { 994,-1,TabUnk,ActReqAccGbl ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_AJAX_RFRESH,NULL ,Lay_RefreshLastClicks ,NULL}, + // Report + [ActReqMyUsgRep ] = {1586, 5,TabAna,ActReqMyUsgRep ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rep_ReqMyUsageReport }, + [ActSeeMyUsgRep ] = {1582,-1,TabUnk,ActReqMyUsgRep ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rep_ShowMyUsageReport }, - [ActSeeMyUsgRep ] = {1582,-1,TabUnk,ActReqMyUsgRep ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rep_ShowMyUsageReport ,NULL}, + // Frequent + [ActMFUAct ] = { 993, 6,TabAna,ActMFUAct ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,MFU_ShowMyMFUActions }, // TabPrf ****************************************************************** - // Actions in menu: - [ActFrmRolSes ] = { 843, 0,TabPrf,ActFrmRolSes ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Usr_WriteFormLogout ,"power-off" }, - [ActMyCrs ] = { 987, 1,TabPrf,ActMyCrs ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Hie_ReqSelectOneNodeFromMyHierarchy ,"sitemap" }, - [ActSeeMyTT ] = { 408, 2,TabPrf,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tmt_ShowClassTimeTable ,"clock" }, - [ActSeeMyAgd ] = {1602, 3,TabPrf,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_GetParsAndShowMyAgenda ,"calendar" }, - [ActFrmMyAcc ] = { 36, 4,TabPrf,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_ShowFormMyAccount ,"at" }, - [ActReqEdiRecSha ] = { 285, 5,TabPrf,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ShowMySharedRecordAndMore ,"address-card" }, - [ActReqEdiSet ] = { 673, 6,TabPrf,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Set_EditSettings ,"cog" }, + // Session + [ActFrmRolSes ] = { 843, 0,TabPrf,ActFrmRolSes ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Usr_WriteFormLogout }, + [ActChgMyRol ] = { 589,-1,TabUnk,ActFrmRolSes ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Rol_ChangeMyRole ,Usr_ShowFormsLogoutAndRole }, - // Actions not in menu: - [ActChgMyRol ] = { 589,-1,TabUnk,ActFrmRolSes ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Rol_ChangeMyRole ,Usr_ShowFormsLogoutAndRole ,NULL}, + // Courses + [ActMyCrs ] = { 987, 1,TabPrf,ActMyCrs ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Hie_SelOneNodeFromMyHierarchy }, - [ActFrmNewEvtMyAgd ] = {1603,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ReqCreatOrEditEvent ,NULL}, - [ActEdiOneEvtMyAgd ] = {1604,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ReqCreatOrEditEvent ,NULL}, - [ActNewEvtMyAgd ] = {1605,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ReceiveFormEvent ,NULL}, - [ActChgEvtMyAgd ] = {1606,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_ReceiveFormEvent ,NULL}, - [ActReqRemEvtMyAgd ] = {1607,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_AskRemEvent ,NULL}, - [ActRemEvtMyAgd ] = {1608,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_RemoveEvent ,NULL}, - [ActHidEvtMyAgd ] = {1612,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_HideEvent ,NULL}, - [ActUnhEvtMyAgd ] = {1613,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_UnhideEvent ,NULL}, - [ActPrvEvtMyAgd ] = {1609,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_MakeEventPrivate ,NULL}, - [ActPubEvtMyAgd ] = {1610,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Agd_MakeEventPublic ,NULL}, - [ActPrnAgdQR ] = {1618,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Agd_PrintAgdQRCode ,NULL}, + // Timetable + [ActSeeMyTT ] = { 408, 2,TabPrf,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tmt_ShowClassTimeTable }, + [ActPrnMyTT ] = { 409,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_NEW_TAB,NULL ,Tmt_ShowClassTimeTable }, + [ActEdiTut ] = { 65,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tmt_EditMyTutTimeTable }, + [ActChgTut ] = { 48,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Tmt_EditMyTutTimeTable }, + [ActChgMyTT1stDay ] = {1487,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C7,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Tmt_ShowClassTimeTable }, - [ActChkUsrAcc ] = {1584,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_CheckIfEmptyAccountExists ,NULL}, - [ActCreMyAcc ] = {1787,-1,TabUnk,ActFrmMyAcc ,0x001,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_ShowFormCreateMyAccount ,NULL}, - [ActCreUsrAcc ] = {1163,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_AfterCreationNewAccount ,NULL}, + // Agenda + [ActSeeMyAgd ] = {1602, 3,TabPrf,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_GetParsAndShowMyAgenda }, + [ActFrmNewEvtMyAgd ] = {1603,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ReqCreatOrEditEvent }, + [ActEdiOneEvtMyAgd ] = {1604,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ReqCreatOrEditEvent }, + [ActNewEvtMyAgd ] = {1605,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ReceiveFormEvent }, + [ActChgEvtMyAgd ] = {1606,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_ReceiveFormEvent }, + [ActReqRemEvtMyAgd ] = {1607,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_AskRemEvent }, + [ActRemEvtMyAgd ] = {1608,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_RemoveEvent }, + [ActHidEvtMyAgd ] = {1612,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_HideEvent }, + [ActUnhEvtMyAgd ] = {1613,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_UnhideEvent }, + [ActPrvEvtMyAgd ] = {1609,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_MakeEventPrivate }, + [ActPubEvtMyAgd ] = {1610,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Agd_MakeEventPublic }, + [ActPrnAgdQR ] = {1618,-1,TabUnk,ActSeeMyAgd ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_NEW_TAB,NULL ,Agd_PrintAgdQRCode }, - [ActRemMyID ] = {1147,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_RemoveMyUsrID ,NULL}, - [ActChgMyID ] = {1148,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,ID_NewMyUsrID ,NULL}, + // Account + [ActFrmMyAcc ] = { 36, 4,TabPrf,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_ShowFormMyAccount }, + [ActChkUsrAcc ] = {1584,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_CheckIfEmptyAccountExists }, + [ActCreMyAcc ] = {1787,-1,TabUnk,ActFrmMyAcc ,0x001,0x001,0x001,0x001,0x001,0x001,0x001,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_ShowFormCreateMyAccount }, + [ActCreUsrAcc ] = {1163,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_AfterCreationNewAccount }, + [ActRemMyID ] = {1147,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_RemoveMyUsrID }, + [ActChgMyID ] = {1148,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,ID_NewMyUsrID }, + [ActRemMyNck ] = {1089,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_RemoveMyNick }, + [ActChgMyNck ] = { 37,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Nck_UpdateMyNick }, + [ActRemMyMai ] = {1090,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_RemoveMyUsrEmail }, + [ActChgMyMai ] = {1088,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,May_NewMyUsrEmail }, + [ActCnfMai ] = {1091,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Mai_ConfirmEmail }, + [ActChgMyPwd ] = { 35,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Pwd_UpdateMyPwd ,Acc_ShowFormChgMyAccount }, + [ActReqRemMyAcc ] = {1430,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_AskIfRemoveMyAccount }, + [ActRemMyAcc ] = {1431,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Acc_RemoveMyAccount }, + [ActPrnUsrQR ] = {1022,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_NEW_TAB,NULL ,QR_PrintUsrQRCode }, - [ActRemMyNck ] = {1089,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_RemoveMyNick ,NULL}, - [ActChgMyNck ] = { 37,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Nck_UpdateMyNick ,NULL}, + // Record + [ActReqEdiRecSha ] = { 285, 5,TabPrf,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ShowMySharedRecordAndMore }, + [ActChgMyData ] = { 298,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Rec_UpdateMyRecord ,Rec_ShowMySharedRecordUpd }, + [ActReqMyPho ] = { 30,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ReqMyPhoto }, + [ActDetMyPho ] = { 693,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_1ST_TAB,NULL ,Pho_RecMyPhotoDetFaces }, + [ActUpdMyPho ] = { 694,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Pho_UpdateMyPhoto1 ,Pho_UpdateMyPhoto2 }, + [ActReqRemMyPho ] = {1577,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ReqRemMyPhoto }, + [ActRemMyPho ] = { 428,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Pho_RemoveMyPhoto1 ,Pho_RemoveMyPhoto2 }, + [ActChgCtyMyIns ] = {1166,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ChgCountryOfMyInstitution }, + [ActChgMyIns ] = {1167,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateMyInstitution }, + [ActChgMyCtr ] = {1168,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateMyCenter }, + [ActChgMyDpt ] = {1169,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateMyDepartment }, + [ActChgMyOff ] = {1170,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateMyOffice }, + [ActChgMyOffPho ] = {1171,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_UpdateMyOfficePhone }, + [ActReqEdiMyNet ] = {1172,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Rec_ShowMySharedRecordAndMore }, + [ActChgMyNet ] = {1173,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Net_UpdateMyWebsAndSocialNets }, - [ActRemMyMai ] = {1090,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_RemoveMyUsrEmail ,NULL}, - [ActChgMyMai ] = {1088,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,May_NewMyUsrEmail ,NULL}, - [ActCnfMai ] = {1091,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Mai_ConfirmEmail ,NULL}, - - [ActChgMyPwd ] = { 35,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Pwd_UpdateMyPwd ,Acc_ShowFormChgMyAccount ,NULL}, - - [ActReqRemMyAcc ] = {1430,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_AskIfRemoveMyAccount ,NULL}, - [ActRemMyAcc ] = {1431,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Acc_RemoveMyAccount ,NULL}, - - [ActChgMyData ] = { 298,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Rec_UpdateMyRecord ,Rec_ShowMySharedRecordUpd ,NULL}, - - [ActReqMyPho ] = { 30,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ReqMyPhoto ,NULL}, - [ActDetMyPho ] = { 693,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_DATA,Act_BRW_1ST_TAB,NULL ,Pho_RecMyPhotoDetFaces ,NULL}, - [ActUpdMyPho ] = { 694,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Pho_UpdateMyPhoto1 ,Pho_UpdateMyPhoto2 ,NULL}, - [ActReqRemMyPho ] = {1577,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ReqRemMyPhoto ,NULL}, - [ActRemMyPho ] = { 428,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Pho_RemoveMyPhoto1 ,Pho_RemoveMyPhoto2 ,NULL}, - - [ActChgCtyMyIns ] = {1166,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ChgCountryOfMyInstitution ,NULL}, - [ActChgMyIns ] = {1167,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateMyInstitution ,NULL}, - [ActChgMyCtr ] = {1168,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateMyCenter ,NULL}, - [ActChgMyDpt ] = {1169,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateMyDepartment ,NULL}, - [ActChgMyOff ] = {1170,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateMyOffice ,NULL}, - [ActChgMyOffPho ] = {1171,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_UpdateMyOfficePhone ,NULL}, - - [ActReqEdiMyNet ] = {1172,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Rec_ShowMySharedRecordAndMore ,NULL}, - [ActChgMyNet ] = {1173,-1,TabUnk,ActReqEdiRecSha ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Net_UpdateMyWebsAndSocialNets ,NULL}, - - [ActChgThe ] = { 841,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,The_ChangeTheme ,Set_EditSettings ,NULL}, - [ActReqChgLan ] = { 992,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Lan_AskChangeLanguage ,NULL}, - [ActChgLan ] = { 654,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Lan_ChangeLanguage ,Set_EditSettings ,NULL}, - [ActChg1stDay ] = {1484,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Set_EditSettings ,NULL}, - [ActChgDatFmt ] = {1638,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Dat_ChangeDateFormat ,Set_EditSettings ,NULL}, - [ActChgCol ] = { 674,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Set_ChangeSideCols ,Set_EditSettings ,NULL}, - [ActChgIco ] = {1092,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Ico_ChangeIconSet ,Set_EditSettings ,NULL}, - [ActChgMnu ] = {1243,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,Mnu_ChangeMenu ,Set_EditSettings ,NULL}, - [ActChgUsrPho ] = {1917,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_1ST_TAB,PhoSha_ChangePhotoShape ,Set_EditSettings ,NULL}, - [ActChgPriPho ] = { 774,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Pho_ChangePhotoVisibility ,NULL}, - [ActChgBasPriPrf ] = {1404,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prf_ChangeBasicProfileVis ,NULL}, - [ActChgExtPriPrf ] = {1765,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Prf_ChangeExtendedProfileVis ,NULL}, - [ActChgCooPrf ] = {1764,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Coo_ChangeMyPrefsCookies ,NULL}, - [ActChgNtfPrf ] = { 775,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Ntf_ChangeNotifyEvents ,Set_EditSettings ,NULL}, - - [ActPrnUsrQR ] = {1022,-1,TabUnk,ActFrmMyAcc ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,QR_PrintUsrQRCode ,NULL}, - - [ActPrnMyTT ] = { 409,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_NEW_TAB,NULL ,Tmt_ShowClassTimeTable ,NULL}, - [ActEdiTut ] = { 65,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tmt_EditMyTutTimeTable ,NULL}, - [ActChgTut ] = { 48,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Tmt_EditMyTutTimeTable ,NULL}, - [ActChgMyTT1stDay ] = {1487,-1,TabUnk,ActSeeMyTT ,0x3F8,0x3C7,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_BRW_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Tmt_ShowClassTimeTable ,NULL}, + // Settings + [ActReqEdiSet ] = { 673, 6,TabPrf,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Set_EditSettings }, + [ActChgThe ] = { 841,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,The_ChangeTheme ,Set_EditSettings }, + [ActReqChgLan ] = { 992,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,NULL ,Lan_AskChangeLanguage }, + [ActChgLan ] = { 654,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Lan_ChangeLanguage ,Set_EditSettings }, + [ActChg1stDay ] = {1484,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Cal_ChangeFirstDayOfWeek ,Set_EditSettings }, + [ActChgDatFmt ] = {1638,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Dat_ChangeDateFormat ,Set_EditSettings }, + [ActChgCol ] = { 674,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Set_ChangeSideCols ,Set_EditSettings }, + [ActChgIco ] = {1092,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Ico_ChangeIconSet ,Set_EditSettings }, + [ActChgMnu ] = {1243,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,Mnu_ChangeMenu ,Set_EditSettings }, + [ActChgUsrPho ] = {1917,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,0x3C7,Act_CONT_NORM,Act_1ST_TAB,PhoSha_ChangePhotoShape ,Set_EditSettings }, + [ActChgPriPho ] = { 774,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Pho_ChangePhotoVisibility }, + [ActChgBasPriPrf ] = {1404,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prf_ChangeBasicProfileVis }, + [ActChgExtPriPrf ] = {1765,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Prf_ChangeExtendedProfileVis }, + [ActChgCooPrf ] = {1764,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,NULL ,Coo_ChangeMyPrefsCookies }, + [ActChgNtfPrf ] = { 775,-1,TabUnk,ActReqEdiSet ,0x3F8,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,0x3C6,Act_CONT_NORM,Act_1ST_TAB,Ntf_ChangeNotifyEvents ,Set_EditSettings }, }; Act_Action_t ActLst_FromActCodToAction[1 + ActLst_MAX_ACTION_COD] = // Do not reuse unique action codes! diff --git a/swad_action_list.h b/swad_action_list.h index 1227f099..6bdca87d 100644 --- a/swad_action_list.h +++ b/swad_action_list.h @@ -48,1739 +48,1725 @@ /*****************************************************************************/ /********************************* Start tab *********************************/ /*****************************************************************************/ -// Actions in menu -#define ActFrmLogIn (ActWebSvc + 1) -#define ActReqSch (ActWebSvc + 2) -#define ActSeeGblTL (ActWebSvc + 3) -#define ActSeeSocPrf (ActWebSvc + 4) -#define ActSeeCal (ActWebSvc + 5) -#define ActSeeNtf (ActWebSvc + 6) -// Secondary actions -#define ActLogIn (ActWebSvc + 7) -#define ActLogInNew (ActWebSvc + 8) -#define ActLogInLan (ActWebSvc + 9) -#define ActAnnSee (ActWebSvc + 10) -#define ActReqSndNewPwd (ActWebSvc + 11) -#define ActSndNewPwd (ActWebSvc + 12) -#define ActLogOut (ActWebSvc + 13) +// Log in +#define ActFrmLogIn (ActWebSvc + 1) +#define ActLogIn (ActWebSvc + 2) +#define ActLogInNew (ActWebSvc + 3) +#define ActLogInLan (ActWebSvc + 4) +#define ActAnnSee (ActWebSvc + 5) +#define ActReqSndNewPwd (ActWebSvc + 6) +#define ActSndNewPwd (ActWebSvc + 7) +#define ActLogOut (ActWebSvc + 8) -#define ActSch (ActWebSvc + 14) +// Search +#define ActReqSch (ActLogOut + 1) +#define ActSch (ActLogOut + 2) -#define ActRefNewPubGblTL (ActWebSvc + 15) -#define ActRefOldPubGblTL (ActWebSvc + 16) -#define ActRcvPstGblTL (ActWebSvc + 17) -#define ActRcvComGblTL (ActWebSvc + 18) -#define ActShoHidComGblTL (ActWebSvc + 19) -#define ActAllShaNotGblTL (ActWebSvc + 20) -#define ActAllFavNotGblTL (ActWebSvc + 21) -#define ActAllFavComGblTL (ActWebSvc + 22) -#define ActShaNotGblTL (ActWebSvc + 23) -#define ActUnsNotGblTL (ActWebSvc + 24) -#define ActFavNotGblTL (ActWebSvc + 25) -#define ActUnfNotGblTL (ActWebSvc + 26) -#define ActFavComGblTL (ActWebSvc + 27) -#define ActUnfComGblTL (ActWebSvc + 28) -#define ActReqRemPubGblTL (ActWebSvc + 29) -#define ActRemPubGblTL (ActWebSvc + 30) -#define ActReqRemComGblTL (ActWebSvc + 31) -#define ActRemComGblTL (ActWebSvc + 32) +// Timeline +#define ActSeeGblTL (ActSch + 1) +#define ActRefNewPubGblTL (ActSch + 2) +#define ActRefOldPubGblTL (ActSch + 3) +#define ActRcvPstGblTL (ActSch + 4) +#define ActRcvComGblTL (ActSch + 5) +#define ActShoHidComGblTL (ActSch + 6) +#define ActAllShaNotGblTL (ActSch + 7) +#define ActAllFavNotGblTL (ActSch + 8) +#define ActAllFavComGblTL (ActSch + 9) +#define ActShaNotGblTL (ActSch + 10) +#define ActUnsNotGblTL (ActSch + 11) +#define ActFavNotGblTL (ActSch + 12) +#define ActUnfNotGblTL (ActSch + 13) +#define ActFavComGblTL (ActSch + 14) +#define ActUnfComGblTL (ActSch + 15) +#define ActReqRemPubGblTL (ActSch + 16) +#define ActRemPubGblTL (ActSch + 17) +#define ActReqRemComGblTL (ActSch + 18) +#define ActRemComGblTL (ActSch + 19) -#define ActReqOthPubPrf (ActWebSvc + 33) +// Profiles +#define ActSeeSocPrf (ActRemComGblTL + 1) +#define ActReqOthPubPrf (ActRemComGblTL + 2) +#define ActRefOldPubUsrTL (ActRemComGblTL + 3) +#define ActRcvPstUsrTL (ActRemComGblTL + 4) +#define ActRcvComUsrTL (ActRemComGblTL + 5) +#define ActShoHidComUsrTL (ActRemComGblTL + 6) +#define ActAllShaNotUsrTL (ActRemComGblTL + 7) +#define ActAllFavNotUsrTL (ActRemComGblTL + 8) +#define ActAllFavComUsrTL (ActRemComGblTL + 9) +#define ActShaNotUsrTL (ActRemComGblTL + 10) +#define ActUnsNotUsrTL (ActRemComGblTL + 11) +#define ActFavNotUsrTL (ActRemComGblTL + 12) +#define ActUnfNotUsrTL (ActRemComGblTL + 13) +#define ActFavComUsrTL (ActRemComGblTL + 14) +#define ActUnfComUsrTL (ActRemComGblTL + 15) +#define ActReqRemPubUsrTL (ActRemComGblTL + 16) +#define ActRemPubUsrTL (ActRemComGblTL + 17) +#define ActReqRemComUsrTL (ActRemComGblTL + 18) +#define ActRemComUsrTL (ActRemComGblTL + 19) +#define ActSeeOthPubPrf (ActRemComGblTL + 20) +#define ActCalFig (ActRemComGblTL + 21) +#define ActFolUsr (ActRemComGblTL + 22) +#define ActUnfUsr (ActRemComGblTL + 23) +#define ActSeeFlg (ActRemComGblTL + 24) +#define ActSeeFlr (ActRemComGblTL + 25) +#define ActSeeUsrAgd (ActRemComGblTL + 26) -#define ActRefOldPubUsrTL (ActWebSvc + 34) -#define ActRcvPstUsrTL (ActWebSvc + 35) -#define ActRcvComUsrTL (ActWebSvc + 36) -#define ActShoHidComUsrTL (ActWebSvc + 37) -#define ActAllShaNotUsrTL (ActWebSvc + 38) -#define ActAllFavNotUsrTL (ActWebSvc + 39) -#define ActAllFavComUsrTL (ActWebSvc + 40) -#define ActShaNotUsrTL (ActWebSvc + 41) -#define ActUnsNotUsrTL (ActWebSvc + 42) -#define ActFavNotUsrTL (ActWebSvc + 43) -#define ActUnfNotUsrTL (ActWebSvc + 44) -#define ActFavComUsrTL (ActWebSvc + 45) -#define ActUnfComUsrTL (ActWebSvc + 46) -#define ActReqRemPubUsrTL (ActWebSvc + 47) -#define ActRemPubUsrTL (ActWebSvc + 48) -#define ActReqRemComUsrTL (ActWebSvc + 49) -#define ActRemComUsrTL (ActWebSvc + 50) +// Calendar +#define ActSeeCal (ActSeeUsrAgd + 1) +#define ActPrnCal (ActSeeUsrAgd + 2) +#define ActChgCal1stDay (ActSeeUsrAgd + 3) -#define ActSeeOthPubPrf (ActWebSvc + 51) -#define ActCalFig (ActWebSvc + 52) - -#define ActFolUsr (ActWebSvc + 53) -#define ActUnfUsr (ActWebSvc + 54) -#define ActSeeFlg (ActWebSvc + 55) -#define ActSeeFlr (ActWebSvc + 56) - -#define ActSeeUsrAgd (ActWebSvc + 57) - -#define ActPrnCal (ActWebSvc + 58) -#define ActChgCal1stDay (ActWebSvc + 59) - -#define ActSeeNewNtf (ActWebSvc + 60) -#define ActMrkNtfSee (ActWebSvc + 61) -#define ActSeeMai (ActWebSvc + 62) -#define ActEdiMai (ActWebSvc + 63) -#define ActNewMai (ActWebSvc + 64) -#define ActRemMai (ActWebSvc + 65) -#define ActRenMaiSho (ActWebSvc + 66) -#define ActRenMaiFul (ActWebSvc + 67) +// Notifications +#define ActSeeNtf (ActChgCal1stDay + 1) +#define ActSeeNewNtf (ActChgCal1stDay + 2) +#define ActMrkNtfSee (ActChgCal1stDay + 3) +#define ActSeeMai (ActChgCal1stDay + 4) +#define ActEdiMai (ActChgCal1stDay + 5) +#define ActNewMai (ActChgCal1stDay + 6) +#define ActRemMai (ActChgCal1stDay + 7) +#define ActRenMaiSho (ActChgCal1stDay + 8) +#define ActRenMaiFul (ActChgCal1stDay + 9) /*****************************************************************************/ /******************************** System tab *********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeSysInf (ActRenMaiFul + 1) -#define ActSeeCty (ActRenMaiFul + 2) -#define ActSeePen (ActRenMaiFul + 3) -#define ActSeeLnk (ActRenMaiFul + 4) -#define ActSeePlg (ActRenMaiFul + 5) -#define ActMtn (ActRenMaiFul + 6) +// System info +#define ActSeeSysInf (ActRenMaiFul + 1) +#define ActPrnSysInf (ActRenMaiFul + 2) -// Secondary actions -#define ActPrnSysInf (ActRenMaiFul + 7) +// Countries +#define ActSeeCty (ActPrnSysInf + 1) +#define ActEdiCty (ActPrnSysInf + 2) +#define ActNewCty (ActPrnSysInf + 3) +#define ActRemCty (ActPrnSysInf + 4) +#define ActRenCty (ActPrnSysInf + 5) +#define ActChgCtyWWW (ActPrnSysInf + 6) -#define ActEdiCty (ActRenMaiFul + 8) -#define ActNewCty (ActRenMaiFul + 9) -#define ActRemCty (ActRenMaiFul + 10) -#define ActRenCty (ActRenMaiFul + 11) -#define ActChgCtyWWW (ActRenMaiFul + 12) +// Pending +#define ActSeePen (ActChgCtyWWW + 1) -#define ActSeeBan (ActRenMaiFul + 13) -#define ActEdiBan (ActRenMaiFul + 14) -#define ActNewBan (ActRenMaiFul + 15) -#define ActRemBan (ActRenMaiFul + 16) -#define ActUnhBan (ActRenMaiFul + 17) -#define ActHidBan (ActRenMaiFul + 18) -#define ActRenBanSho (ActRenMaiFul + 19) -#define ActRenBanFul (ActRenMaiFul + 20) -#define ActChgBanImg (ActRenMaiFul + 21) -#define ActChgBanWWW (ActRenMaiFul + 22) -#define ActClkBan (ActRenMaiFul + 23) +// Links +#define ActSeeLnk (ActSeePen + 1) +#define ActEdiLnk (ActSeePen + 2) +#define ActNewLnk (ActSeePen + 3) +#define ActRemLnk (ActSeePen + 4) +#define ActRenLnkSho (ActSeePen + 5) +#define ActRenLnkFul (ActSeePen + 6) +#define ActChgLnkWWW (ActSeePen + 7) +#define ActSeeBan (ActSeePen + 8) +#define ActEdiBan (ActSeePen + 9) +#define ActNewBan (ActSeePen + 10) +#define ActRemBan (ActSeePen + 11) +#define ActUnhBan (ActSeePen + 12) +#define ActHidBan (ActSeePen + 13) +#define ActRenBanSho (ActSeePen + 14) +#define ActRenBanFul (ActSeePen + 15) +#define ActChgBanImg (ActSeePen + 16) +#define ActChgBanWWW (ActSeePen + 17) +#define ActClkBan (ActSeePen + 18) -#define ActEdiLnk (ActRenMaiFul + 24) -#define ActNewLnk (ActRenMaiFul + 25) -#define ActRemLnk (ActRenMaiFul + 26) -#define ActRenLnkSho (ActRenMaiFul + 27) -#define ActRenLnkFul (ActRenMaiFul + 28) -#define ActChgLnkWWW (ActRenMaiFul + 29) +// Plugins +#define ActSeePlg (ActClkBan + 1) +#define ActEdiPlg (ActClkBan + 2) +#define ActNewPlg (ActClkBan + 3) +#define ActRemPlg (ActClkBan + 4) +#define ActRenPlg (ActClkBan + 5) +#define ActChgPlgDes (ActClkBan + 6) +#define ActChgPlgLog (ActClkBan + 7) +#define ActChgPlgAppKey (ActClkBan + 8) +#define ActChgPlgURL (ActClkBan + 9) +#define ActChgPlgIP (ActClkBan + 10) -#define ActEdiPlg (ActRenMaiFul + 30) -#define ActNewPlg (ActRenMaiFul + 31) -#define ActRemPlg (ActRenMaiFul + 32) -#define ActRenPlg (ActRenMaiFul + 33) -#define ActChgPlgDes (ActRenMaiFul + 34) -#define ActChgPlgLog (ActRenMaiFul + 35) -#define ActChgPlgAppKey (ActRenMaiFul + 36) -#define ActChgPlgURL (ActRenMaiFul + 37) -#define ActChgPlgIP (ActRenMaiFul + 38) - -#define ActSetUp (ActRenMaiFul + 39) -#define ActReqRemOldCrs (ActRenMaiFul + 40) -#define ActRemOldCrs (ActRenMaiFul + 41) +// Maintenance +#define ActMtn (ActChgPlgIP + 1) +#define ActSetUp (ActChgPlgIP + 2) +#define ActReqRemOldCrs (ActChgPlgIP + 3) +#define ActRemOldCrs (ActChgPlgIP + 4) /*****************************************************************************/ /******************************** Country tab ********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeCtyInf (ActRemOldCrs + 1) -#define ActSeeIns (ActRemOldCrs + 2) +// Country info +#define ActSeeCtyInf (ActRemOldCrs + 1) +#define ActPrnCtyInf (ActRemOldCrs + 2) +#define ActChgCtyMapAtt (ActRemOldCrs + 3) -// Secondary actions -#define ActPrnCtyInf (ActRemOldCrs + 3) -#define ActChgCtyMapAtt (ActRemOldCrs + 4) - -#define ActEdiIns (ActRemOldCrs + 5) -#define ActReqIns (ActRemOldCrs + 6) -#define ActNewIns (ActRemOldCrs + 7) -#define ActRemIns (ActRemOldCrs + 8) -#define ActRenInsSho (ActRemOldCrs + 9) -#define ActRenInsFul (ActRemOldCrs + 10) -#define ActChgInsWWW (ActRemOldCrs + 11) -#define ActChgInsSta (ActRemOldCrs + 12) +// Institutions +#define ActSeeIns (ActChgCtyMapAtt + 1) +#define ActEdiIns (ActChgCtyMapAtt + 2) +#define ActReqIns (ActChgCtyMapAtt + 3) +#define ActNewIns (ActChgCtyMapAtt + 4) +#define ActRemIns (ActChgCtyMapAtt + 5) +#define ActRenInsSho (ActChgCtyMapAtt + 6) +#define ActRenInsFul (ActChgCtyMapAtt + 7) +#define ActChgInsWWW (ActChgCtyMapAtt + 8) +#define ActChgInsSta (ActChgCtyMapAtt + 9) /*****************************************************************************/ /****************************** Institution tab ******************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeInsInf (ActChgInsSta + 1) -#define ActSeeCtr (ActChgInsSta + 2) -#define ActSeePlc (ActChgInsSta + 3) -#define ActSeeDpt (ActChgInsSta + 4) -#define ActSeeHld (ActChgInsSta + 5) +// Institution info +#define ActSeeInsInf (ActChgInsSta + 1) +#define ActPrnInsInf (ActChgInsSta + 2) +#define ActChgInsCtyCfg (ActChgInsSta + 3) +#define ActRenInsShoCfg (ActChgInsSta + 4) +#define ActRenInsFulCfg (ActChgInsSta + 5) +#define ActChgInsWWWCfg (ActChgInsSta + 6) +#define ActReqInsLog (ActChgInsSta + 7) +#define ActRecInsLog (ActChgInsSta + 8) +#define ActRemInsLog (ActChgInsSta + 9) -// Secondary actions -#define ActPrnInsInf (ActChgInsSta + 6) -#define ActChgInsCtyCfg (ActChgInsSta + 7) -#define ActRenInsShoCfg (ActChgInsSta + 8) -#define ActRenInsFulCfg (ActChgInsSta + 9) -#define ActChgInsWWWCfg (ActChgInsSta + 10) -#define ActReqInsLog (ActChgInsSta + 11) -#define ActRecInsLog (ActChgInsSta + 12) -#define ActRemInsLog (ActChgInsSta + 13) +// Centers +#define ActSeeCtr (ActRemInsLog + 1) +#define ActEdiCtr (ActRemInsLog + 2) +#define ActReqCtr (ActRemInsLog + 3) +#define ActNewCtr (ActRemInsLog + 4) +#define ActRemCtr (ActRemInsLog + 5) +#define ActChgCtrPlc (ActRemInsLog + 6) +#define ActRenCtrSho (ActRemInsLog + 7) +#define ActRenCtrFul (ActRemInsLog + 8) +#define ActChgCtrWWW (ActRemInsLog + 9) +#define ActChgCtrSta (ActRemInsLog + 10) -#define ActEdiCtr (ActChgInsSta + 14) -#define ActReqCtr (ActChgInsSta + 15) -#define ActNewCtr (ActChgInsSta + 16) -#define ActRemCtr (ActChgInsSta + 17) -#define ActChgCtrPlc (ActChgInsSta + 18) -#define ActRenCtrSho (ActChgInsSta + 19) -#define ActRenCtrFul (ActChgInsSta + 20) -#define ActChgCtrWWW (ActChgInsSta + 21) -#define ActChgCtrSta (ActChgInsSta + 22) +// Places +#define ActSeePlc (ActChgCtrSta + 1) +#define ActEdiPlc (ActChgCtrSta + 2) +#define ActNewPlc (ActChgCtrSta + 3) +#define ActRemPlc (ActChgCtrSta + 4) +#define ActRenPlcSho (ActChgCtrSta + 5) +#define ActRenPlcFul (ActChgCtrSta + 6) -#define ActEdiPlc (ActChgInsSta + 23) -#define ActNewPlc (ActChgInsSta + 24) -#define ActRemPlc (ActChgInsSta + 25) -#define ActRenPlcSho (ActChgInsSta + 26) -#define ActRenPlcFul (ActChgInsSta + 27) +// Departments +#define ActSeeDpt (ActRenPlcFul + 1) +#define ActEdiDpt (ActRenPlcFul + 2) +#define ActNewDpt (ActRenPlcFul + 3) +#define ActRemDpt (ActRenPlcFul + 4) +#define ActChgDptIns (ActRenPlcFul + 5) +#define ActRenDptSho (ActRenPlcFul + 6) +#define ActRenDptFul (ActRenPlcFul + 7) +#define ActChgDptWWW (ActRenPlcFul + 8) -#define ActEdiDpt (ActChgInsSta + 28) -#define ActNewDpt (ActChgInsSta + 29) -#define ActRemDpt (ActChgInsSta + 30) -#define ActChgDptIns (ActChgInsSta + 31) -#define ActRenDptSho (ActChgInsSta + 32) -#define ActRenDptFul (ActChgInsSta + 33) -#define ActChgDptWWW (ActChgInsSta + 34) - -#define ActEdiHld (ActChgInsSta + 35) -#define ActNewHld (ActChgInsSta + 36) -#define ActRemHld (ActChgInsSta + 37) -#define ActChgHldPlc (ActChgInsSta + 38) -#define ActChgHldTyp (ActChgInsSta + 39) -#define ActChgHldStrDat (ActChgInsSta + 40) -#define ActChgHldEndDat (ActChgInsSta + 41) -#define ActRenHld (ActChgInsSta + 42) +// Holidays +#define ActSeeHld (ActChgDptWWW + 1) +#define ActEdiHld (ActChgDptWWW + 2) +#define ActNewHld (ActChgDptWWW + 3) +#define ActRemHld (ActChgDptWWW + 4) +#define ActChgHldPlc (ActChgDptWWW + 5) +#define ActChgHldTyp (ActChgDptWWW + 6) +#define ActChgHldStrDat (ActChgDptWWW + 7) +#define ActChgHldEndDat (ActChgDptWWW + 8) +#define ActRenHld (ActChgDptWWW + 9) /*****************************************************************************/ /********************************* Center tab ********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeCtrInf (ActRenHld + 1) -#define ActSeeDeg (ActRenHld + 2) -#define ActSeeBld (ActRenHld + 3) -#define ActSeeRoo (ActRenHld + 4) +// Center info +#define ActSeeCtrInf (ActRenHld + 1) +#define ActPrnCtrInf (ActRenHld + 2) +#define ActChgCtrInsCfg (ActRenHld + 3) +#define ActRenCtrShoCfg (ActRenHld + 4) +#define ActRenCtrFulCfg (ActRenHld + 5) +#define ActChgCtrPlcCfg (ActRenHld + 6) +#define ActChgCtrLatCfg (ActRenHld + 7) +#define ActChgCtrLgtCfg (ActRenHld + 8) +#define ActChgCtrAltCfg (ActRenHld + 9) +#define ActChgCtrWWWCfg (ActRenHld + 10) +#define ActReqCtrLog (ActRenHld + 11) +#define ActRecCtrLog (ActRenHld + 12) +#define ActRemCtrLog (ActRenHld + 13) +#define ActReqCtrPho (ActRenHld + 14) +#define ActRecCtrPho (ActRenHld + 15) +#define ActChgCtrPhoAtt (ActRenHld + 16) -// Secondary actions -#define ActPrnCtrInf (ActRenHld + 5) -#define ActChgCtrInsCfg (ActRenHld + 6) -#define ActRenCtrShoCfg (ActRenHld + 7) -#define ActRenCtrFulCfg (ActRenHld + 8) -#define ActChgCtrPlcCfg (ActRenHld + 9) -#define ActChgCtrLatCfg (ActRenHld + 10) -#define ActChgCtrLgtCfg (ActRenHld + 11) -#define ActChgCtrAltCfg (ActRenHld + 12) -#define ActChgCtrWWWCfg (ActRenHld + 13) -#define ActReqCtrLog (ActRenHld + 14) -#define ActRecCtrLog (ActRenHld + 15) -#define ActRemCtrLog (ActRenHld + 16) -#define ActReqCtrPho (ActRenHld + 17) -#define ActRecCtrPho (ActRenHld + 18) -#define ActChgCtrPhoAtt (ActRenHld + 19) +// Degrees +#define ActSeeDeg (ActChgCtrPhoAtt + 1) +#define ActEdiDeg (ActChgCtrPhoAtt + 2) +#define ActReqDeg (ActChgCtrPhoAtt + 3) +#define ActNewDeg (ActChgCtrPhoAtt + 4) +#define ActRemDeg (ActChgCtrPhoAtt + 5) +#define ActRenDegSho (ActChgCtrPhoAtt + 6) +#define ActRenDegFul (ActChgCtrPhoAtt + 7) +#define ActChgDegTyp (ActChgCtrPhoAtt + 8) +#define ActChgDegWWW (ActChgCtrPhoAtt + 9) +#define ActChgDegSta (ActChgCtrPhoAtt + 10) +#define ActSeeDegTyp (ActChgCtrPhoAtt + 11) +#define ActEdiDegTyp (ActChgCtrPhoAtt + 12) +#define ActNewDegTyp (ActChgCtrPhoAtt + 13) +#define ActRemDegTyp (ActChgCtrPhoAtt + 14) +#define ActRenDegTyp (ActChgCtrPhoAtt + 15) -#define ActSeeDegTyp (ActRenHld + 20) -#define ActEdiDegTyp (ActRenHld + 21) -#define ActNewDegTyp (ActRenHld + 22) -#define ActRemDegTyp (ActRenHld + 23) -#define ActRenDegTyp (ActRenHld + 24) +// Buildings +#define ActSeeBld (ActRenDegTyp + 1) +#define ActEdiBld (ActRenDegTyp + 2) +#define ActNewBld (ActRenDegTyp + 3) +#define ActRemBld (ActRenDegTyp + 4) +#define ActRenBldSho (ActRenDegTyp + 5) +#define ActRenBldFul (ActRenDegTyp + 6) +#define ActRenBldLoc (ActRenDegTyp + 7) -#define ActEdiDeg (ActRenHld + 25) -#define ActReqDeg (ActRenHld + 26) -#define ActNewDeg (ActRenHld + 27) -#define ActRemDeg (ActRenHld + 28) -#define ActRenDegSho (ActRenHld + 29) -#define ActRenDegFul (ActRenHld + 30) -#define ActChgDegTyp (ActRenHld + 31) -#define ActChgDegWWW (ActRenHld + 32) -#define ActChgDegSta (ActRenHld + 33) - -#define ActEdiBld (ActRenHld + 34) -#define ActNewBld (ActRenHld + 35) -#define ActRemBld (ActRenHld + 36) -#define ActRenBldSho (ActRenHld + 37) -#define ActRenBldFul (ActRenHld + 38) -#define ActRenBldLoc (ActRenHld + 39) - -#define ActEdiRoo (ActRenHld + 40) -#define ActNewRoo (ActRenHld + 41) -#define ActRemRoo (ActRenHld + 42) -#define ActChgRooBld (ActRenHld + 43) -#define ActChgRooFlo (ActRenHld + 44) -#define ActChgRooTyp (ActRenHld + 45) -#define ActRenRooSho (ActRenHld + 46) -#define ActRenRooFul (ActRenHld + 47) -#define ActChgRooMaxUsr (ActRenHld + 48) -#define ActChgRooMAC (ActRenHld + 49) +// Rooms +#define ActSeeRoo (ActRenBldLoc + 1) +#define ActEdiRoo (ActRenBldLoc + 2) +#define ActNewRoo (ActRenBldLoc + 3) +#define ActRemRoo (ActRenBldLoc + 4) +#define ActChgRooBld (ActRenBldLoc + 5) +#define ActChgRooFlo (ActRenBldLoc + 6) +#define ActChgRooTyp (ActRenBldLoc + 7) +#define ActRenRooSho (ActRenBldLoc + 8) +#define ActRenRooFul (ActRenBldLoc + 9) +#define ActChgRooMaxUsr (ActRenBldLoc + 10) +#define ActChgRooMAC (ActRenBldLoc + 11) /*****************************************************************************/ /********************************* Degree tab ********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeDegInf (ActChgRooMAC + 1) -#define ActSeeCrs (ActChgRooMAC + 2) +// Degree info +#define ActSeeDegInf (ActChgRooMAC + 1) +#define ActPrnDegInf (ActChgRooMAC + 2) +#define ActChgDegCtrCfg (ActChgRooMAC + 3) +#define ActRenDegShoCfg (ActChgRooMAC + 4) +#define ActRenDegFulCfg (ActChgRooMAC + 5) +#define ActChgDegWWWCfg (ActChgRooMAC + 6) +#define ActReqDegLog (ActChgRooMAC + 7) +#define ActRecDegLog (ActChgRooMAC + 8) +#define ActRemDegLog (ActChgRooMAC + 9) -// Secondary actions -#define ActPrnDegInf (ActChgRooMAC + 3) -#define ActChgDegCtrCfg (ActChgRooMAC + 4) -#define ActRenDegShoCfg (ActChgRooMAC + 5) -#define ActRenDegFulCfg (ActChgRooMAC + 6) -#define ActChgDegWWWCfg (ActChgRooMAC + 7) -#define ActReqDegLog (ActChgRooMAC + 8) -#define ActRecDegLog (ActChgRooMAC + 9) -#define ActRemDegLog (ActChgRooMAC + 10) - -#define ActEdiCrs (ActChgRooMAC + 11) -#define ActReqCrs (ActChgRooMAC + 12) -#define ActNewCrs (ActChgRooMAC + 13) -#define ActRemCrs (ActChgRooMAC + 14) -#define ActChgInsCrsCod (ActChgRooMAC + 15) -#define ActChgCrsYea (ActChgRooMAC + 16) -#define ActRenCrsSho (ActChgRooMAC + 17) -#define ActRenCrsFul (ActChgRooMAC + 18) -#define ActChgCrsSta (ActChgRooMAC + 19) +// Courses +#define ActSeeCrs (ActRemDegLog + 1) +#define ActEdiCrs (ActRemDegLog + 2) +#define ActReqCrs (ActRemDegLog + 3) +#define ActNewCrs (ActRemDegLog + 4) +#define ActRemCrs (ActRemDegLog + 5) +#define ActChgInsCrsCod (ActRemDegLog + 6) +#define ActChgCrsYea (ActRemDegLog + 7) +#define ActRenCrsSho (ActRemDegLog + 8) +#define ActRenCrsFul (ActRemDegLog + 9) +#define ActChgCrsSta (ActRemDegLog + 10) /*****************************************************************************/ /******************************** Course tab *********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeCrsInf (ActChgCrsSta + 1) -#define ActSeePrg (ActChgCrsSta + 2) -#define ActSeeTchGui (ActChgCrsSta + 3) -#define ActSeeSyl (ActChgCrsSta + 4) -#define ActSeeBib (ActChgCrsSta + 5) -#define ActSeeFAQ (ActChgCrsSta + 6) -#define ActSeeCrsLnk (ActChgCrsSta + 7) -#define ActSeeAss (ActChgCrsSta + 8) -#define ActSeeCrsTT (ActChgCrsSta + 9) +// Course info +#define ActSeeCrsInf (ActChgCrsSta + 1) +#define ActPrnCrsInf (ActChgCrsSta + 2) +#define ActChgCrsDegCfg (ActChgCrsSta + 3) +#define ActRenCrsShoCfg (ActChgCrsSta + 4) +#define ActRenCrsFulCfg (ActChgCrsSta + 5) +#define ActChgInsCrsCodCfg (ActChgCrsSta + 6) +#define ActChgCrsYeaCfg (ActChgCrsSta + 7) +#define ActEdiCrsInf (ActChgCrsSta + 8) +#define ActChgFrcReaCrsInf (ActChgCrsSta + 9) +#define ActChgHavReaCrsInf (ActChgCrsSta + 10) +#define ActSelInfSrcCrsInf (ActChgCrsSta + 11) +#define ActRcvURLCrsInf (ActChgCrsSta + 12) +#define ActRcvPagCrsInf (ActChgCrsSta + 13) +#define ActEditorCrsInf (ActChgCrsSta + 14) +#define ActPlaTxtEdiCrsInf (ActChgCrsSta + 15) +#define ActRchTxtEdiCrsInf (ActChgCrsSta + 16) +#define ActRcvPlaTxtCrsInf (ActChgCrsSta + 17) +#define ActRcvRchTxtCrsInf (ActChgCrsSta + 18) -// Secondary actions -#define ActPrnCrsInf (ActChgCrsSta + 10) -#define ActChgCrsDegCfg (ActChgCrsSta + 11) -#define ActRenCrsShoCfg (ActChgCrsSta + 12) -#define ActRenCrsFulCfg (ActChgCrsSta + 13) -#define ActChgInsCrsCodCfg (ActChgCrsSta + 14) -#define ActChgCrsYeaCfg (ActChgCrsSta + 15) -#define ActEdiCrsInf (ActChgCrsSta + 16) -#define ActEdiPrg (ActChgCrsSta + 17) -#define ActSeePrgItm (ActChgCrsSta + 18) -#define ActFrmChgPrgItm (ActChgCrsSta + 19) -#define ActFrmNewPrgItm (ActChgCrsSta + 20) -#define ActChgPrgItm (ActChgCrsSta + 21) -#define ActNewPrgItm (ActChgCrsSta + 22) -#define ActReqRemPrgItm (ActChgCrsSta + 23) -#define ActRemPrgItm (ActChgCrsSta + 24) -#define ActHidPrgItm (ActChgCrsSta + 25) -#define ActUnhPrgItm (ActChgCrsSta + 26) -#define ActUp_PrgItm (ActChgCrsSta + 27) -#define ActDwnPrgItm (ActChgCrsSta + 28) -#define ActLftPrgItm (ActChgCrsSta + 29) -#define ActRgtPrgItm (ActChgCrsSta + 30) -#define ActExpSeePrgItm (ActChgCrsSta + 31) -#define ActConSeePrgItm (ActChgCrsSta + 32) -#define ActExpEdiPrgItm (ActChgCrsSta + 33) -#define ActConEdiPrgItm (ActChgCrsSta + 34) +// Program +#define ActSeePrg (ActRcvRchTxtCrsInf + 1) +#define ActEdiPrg (ActRcvRchTxtCrsInf + 2) +#define ActSeePrgItm (ActRcvRchTxtCrsInf + 3) +#define ActFrmChgPrgItm (ActRcvRchTxtCrsInf + 4) +#define ActFrmNewPrgItm (ActRcvRchTxtCrsInf + 5) +#define ActChgPrgItm (ActRcvRchTxtCrsInf + 6) +#define ActNewPrgItm (ActRcvRchTxtCrsInf + 7) +#define ActReqRemPrgItm (ActRcvRchTxtCrsInf + 8) +#define ActRemPrgItm (ActRcvRchTxtCrsInf + 9) +#define ActHidPrgItm (ActRcvRchTxtCrsInf + 10) +#define ActUnhPrgItm (ActRcvRchTxtCrsInf + 11) +#define ActUp_PrgItm (ActRcvRchTxtCrsInf + 12) +#define ActDwnPrgItm (ActRcvRchTxtCrsInf + 13) +#define ActLftPrgItm (ActRcvRchTxtCrsInf + 14) +#define ActRgtPrgItm (ActRcvRchTxtCrsInf + 15) +#define ActExpSeePrgItm (ActRcvRchTxtCrsInf + 16) +#define ActConSeePrgItm (ActRcvRchTxtCrsInf + 17) +#define ActExpEdiPrgItm (ActRcvRchTxtCrsInf + 18) +#define ActConEdiPrgItm (ActRcvRchTxtCrsInf + 19) +#define ActSeeRscCli_InPrg (ActRcvRchTxtCrsInf + 20) +#define ActRemRscCli_InPrg (ActRcvRchTxtCrsInf + 21) +#define ActFrmSeePrgRsc (ActRcvRchTxtCrsInf + 22) +#define ActFrmEdiPrgRsc (ActRcvRchTxtCrsInf + 23) +#define ActNewPrgRsc (ActRcvRchTxtCrsInf + 24) +#define ActRenPrgRsc (ActRcvRchTxtCrsInf + 25) +#define ActReqRemPrgRsc (ActRcvRchTxtCrsInf + 26) +#define ActRemPrgRsc (ActRcvRchTxtCrsInf + 27) +#define ActHidPrgRsc (ActRcvRchTxtCrsInf + 28) +#define ActUnhPrgRsc (ActRcvRchTxtCrsInf + 29) +#define ActUp_PrgRsc (ActRcvRchTxtCrsInf + 30) +#define ActDwnPrgRsc (ActRcvRchTxtCrsInf + 31) +#define ActFrmChgLnkPrgRsc (ActRcvRchTxtCrsInf + 32) +#define ActChgLnkPrgRsc (ActRcvRchTxtCrsInf + 33) -#define ActSeeRscCli_InPrg (ActChgCrsSta + 35) -#define ActRemRscCli_InPrg (ActChgCrsSta + 36) -#define ActFrmSeePrgRsc (ActChgCrsSta + 37) -#define ActFrmEdiPrgRsc (ActChgCrsSta + 38) -#define ActNewPrgRsc (ActChgCrsSta + 39) -#define ActRenPrgRsc (ActChgCrsSta + 40) -#define ActReqRemPrgRsc (ActChgCrsSta + 41) -#define ActRemPrgRsc (ActChgCrsSta + 42) -#define ActHidPrgRsc (ActChgCrsSta + 43) -#define ActUnhPrgRsc (ActChgCrsSta + 44) -#define ActUp_PrgRsc (ActChgCrsSta + 45) -#define ActDwnPrgRsc (ActChgCrsSta + 46) -#define ActFrmChgLnkPrgRsc (ActChgCrsSta + 47) -#define ActChgLnkPrgRsc (ActChgCrsSta + 48) -#define ActEdiTchGui (ActChgCrsSta + 49) -#define ActSeeSylLec (ActChgCrsSta + 50) -#define ActSeeSylPra (ActChgCrsSta + 51) -#define ActEdiSylLec (ActChgCrsSta + 52) -#define ActEdiSylPra (ActChgCrsSta + 53) -#define ActDelItmSylLec (ActChgCrsSta + 54) -#define ActDelItmSylPra (ActChgCrsSta + 55) -#define ActUp_IteSylLec (ActChgCrsSta + 56) -#define ActUp_IteSylPra (ActChgCrsSta + 57) -#define ActDwnIteSylLec (ActChgCrsSta + 58) -#define ActDwnIteSylPra (ActChgCrsSta + 59) -#define ActRgtIteSylLec (ActChgCrsSta + 60) -#define ActRgtIteSylPra (ActChgCrsSta + 61) -#define ActLftIteSylLec (ActChgCrsSta + 62) -#define ActLftIteSylPra (ActChgCrsSta + 63) -#define ActInsIteSylLec (ActChgCrsSta + 64) -#define ActInsIteSylPra (ActChgCrsSta + 65) -#define ActModIteSylLec (ActChgCrsSta + 66) -#define ActModIteSylPra (ActChgCrsSta + 67) +// Teaching guide +#define ActSeeTchGui (ActChgLnkPrgRsc + 1) +#define ActEdiTchGui (ActChgLnkPrgRsc + 2) +#define ActChgFrcReaTchGui (ActChgLnkPrgRsc + 3) +#define ActChgHavReaTchGui (ActChgLnkPrgRsc + 4) +#define ActSelInfSrcTchGui (ActChgLnkPrgRsc + 5) +#define ActRcvURLTchGui (ActChgLnkPrgRsc + 6) +#define ActRcvPagTchGui (ActChgLnkPrgRsc + 7) +#define ActEditorTchGui (ActChgLnkPrgRsc + 8) +#define ActPlaTxtEdiTchGui (ActChgLnkPrgRsc + 9) +#define ActRchTxtEdiTchGui (ActChgLnkPrgRsc + 10) +#define ActRcvPlaTxtTchGui (ActChgLnkPrgRsc + 11) +#define ActRcvRchTxtTchGui (ActChgLnkPrgRsc + 12) -#define ActEdiBib (ActChgCrsSta + 68) -#define ActEdiFAQ (ActChgCrsSta + 69) -#define ActEdiCrsLnk (ActChgCrsSta + 70) -#define ActEdiAss (ActChgCrsSta + 71) +// Syllabus +#define ActSeeSyl (ActRcvRchTxtTchGui + 1) +#define ActSeeSylLec (ActRcvRchTxtTchGui + 2) +#define ActSeeSylPra (ActRcvRchTxtTchGui + 3) +#define ActEdiSylLec (ActRcvRchTxtTchGui + 4) +#define ActEdiSylPra (ActRcvRchTxtTchGui + 5) +#define ActDelItmSylLec (ActRcvRchTxtTchGui + 6) +#define ActDelItmSylPra (ActRcvRchTxtTchGui + 7) +#define ActUp_IteSylLec (ActRcvRchTxtTchGui + 8) +#define ActUp_IteSylPra (ActRcvRchTxtTchGui + 9) +#define ActDwnIteSylLec (ActRcvRchTxtTchGui + 10) +#define ActDwnIteSylPra (ActRcvRchTxtTchGui + 11) +#define ActRgtIteSylLec (ActRcvRchTxtTchGui + 12) +#define ActRgtIteSylPra (ActRcvRchTxtTchGui + 13) +#define ActLftIteSylLec (ActRcvRchTxtTchGui + 14) +#define ActLftIteSylPra (ActRcvRchTxtTchGui + 15) +#define ActInsIteSylLec (ActRcvRchTxtTchGui + 16) +#define ActInsIteSylPra (ActRcvRchTxtTchGui + 17) +#define ActModIteSylLec (ActRcvRchTxtTchGui + 18) +#define ActModIteSylPra (ActRcvRchTxtTchGui + 19) +#define ActChgFrcReaSylLec (ActRcvRchTxtTchGui + 20) +#define ActChgFrcReaSylPra (ActRcvRchTxtTchGui + 21) +#define ActChgHavReaSylLec (ActRcvRchTxtTchGui + 22) +#define ActChgHavReaSylPra (ActRcvRchTxtTchGui + 23) +#define ActSelInfSrcSylLec (ActRcvRchTxtTchGui + 24) +#define ActSelInfSrcSylPra (ActRcvRchTxtTchGui + 25) +#define ActRcvURLSylLec (ActRcvRchTxtTchGui + 26) +#define ActRcvURLSylPra (ActRcvRchTxtTchGui + 27) +#define ActRcvPagSylLec (ActRcvRchTxtTchGui + 28) +#define ActRcvPagSylPra (ActRcvRchTxtTchGui + 29) +#define ActEditorSylLec (ActRcvRchTxtTchGui + 30) +#define ActEditorSylPra (ActRcvRchTxtTchGui + 31) +#define ActPlaTxtEdiSylLec (ActRcvRchTxtTchGui + 32) +#define ActPlaTxtEdiSylPra (ActRcvRchTxtTchGui + 33) +#define ActRchTxtEdiSylLec (ActRcvRchTxtTchGui + 34) +#define ActRchTxtEdiSylPra (ActRcvRchTxtTchGui + 35) +#define ActRcvPlaTxtSylLec (ActRcvRchTxtTchGui + 36) +#define ActRcvPlaTxtSylPra (ActRcvRchTxtTchGui + 37) +#define ActRcvRchTxtSylLec (ActRcvRchTxtTchGui + 38) +#define ActRcvRchTxtSylPra (ActRcvRchTxtTchGui + 39) -#define ActChgFrcReaCrsInf (ActChgCrsSta + 72) -#define ActChgFrcReaTchGui (ActChgCrsSta + 73) -#define ActChgFrcReaSylLec (ActChgCrsSta + 74) -#define ActChgFrcReaSylPra (ActChgCrsSta + 75) -#define ActChgFrcReaBib (ActChgCrsSta + 76) -#define ActChgFrcReaFAQ (ActChgCrsSta + 77) -#define ActChgFrcReaCrsLnk (ActChgCrsSta + 78) -#define ActChgFrcReaAss (ActChgCrsSta + 79) +// Bibliography +#define ActSeeBib (ActRcvRchTxtSylPra + 1) +#define ActEdiBib (ActRcvRchTxtSylPra + 2) +#define ActChgFrcReaBib (ActRcvRchTxtSylPra + 3) +#define ActChgHavReaBib (ActRcvRchTxtSylPra + 4) +#define ActSelInfSrcBib (ActRcvRchTxtSylPra + 5) +#define ActRcvURLBib (ActRcvRchTxtSylPra + 6) +#define ActRcvPagBib (ActRcvRchTxtSylPra + 7) +#define ActEditorBib (ActRcvRchTxtSylPra + 8) +#define ActPlaTxtEdiBib (ActRcvRchTxtSylPra + 9) +#define ActRchTxtEdiBib (ActRcvRchTxtSylPra + 10) +#define ActRcvPlaTxtBib (ActRcvRchTxtSylPra + 11) +#define ActRcvRchTxtBib (ActRcvRchTxtSylPra + 12) -#define ActChgHavReaCrsInf (ActChgCrsSta + 80) -#define ActChgHavReaTchGui (ActChgCrsSta + 81) -#define ActChgHavReaSylLec (ActChgCrsSta + 82) -#define ActChgHavReaSylPra (ActChgCrsSta + 83) -#define ActChgHavReaBib (ActChgCrsSta + 84) -#define ActChgHavReaFAQ (ActChgCrsSta + 85) -#define ActChgHavReaCrsLnk (ActChgCrsSta + 86) -#define ActChgHavReaAss (ActChgCrsSta + 87) +// FAQ +#define ActSeeFAQ (ActRcvRchTxtBib + 1) +#define ActEdiFAQ (ActRcvRchTxtBib + 2) +#define ActChgFrcReaFAQ (ActRcvRchTxtBib + 3) +#define ActChgHavReaFAQ (ActRcvRchTxtBib + 4) +#define ActSelInfSrcFAQ (ActRcvRchTxtBib + 5) +#define ActRcvURLFAQ (ActRcvRchTxtBib + 6) +#define ActRcvPagFAQ (ActRcvRchTxtBib + 7) +#define ActEditorFAQ (ActRcvRchTxtBib + 8) +#define ActPlaTxtEdiFAQ (ActRcvRchTxtBib + 9) +#define ActRchTxtEdiFAQ (ActRcvRchTxtBib + 10) +#define ActRcvPlaTxtFAQ (ActRcvRchTxtBib + 11) +#define ActRcvRchTxtFAQ (ActRcvRchTxtBib + 12) -#define ActSelInfSrcCrsInf (ActChgCrsSta + 88) -#define ActSelInfSrcTchGui (ActChgCrsSta + 89) -#define ActSelInfSrcSylLec (ActChgCrsSta + 90) -#define ActSelInfSrcSylPra (ActChgCrsSta + 91) -#define ActSelInfSrcBib (ActChgCrsSta + 92) -#define ActSelInfSrcFAQ (ActChgCrsSta + 93) -#define ActSelInfSrcCrsLnk (ActChgCrsSta + 94) -#define ActSelInfSrcAss (ActChgCrsSta + 95) +// Links +#define ActSeeCrsLnk (ActRcvRchTxtFAQ + 1) +#define ActEdiCrsLnk (ActRcvRchTxtFAQ + 2) +#define ActChgFrcReaCrsLnk (ActRcvRchTxtFAQ + 3) +#define ActChgHavReaCrsLnk (ActRcvRchTxtFAQ + 4) +#define ActSelInfSrcCrsLnk (ActRcvRchTxtFAQ + 5) +#define ActRcvURLCrsLnk (ActRcvRchTxtFAQ + 6) +#define ActRcvPagCrsLnk (ActRcvRchTxtFAQ + 7) +#define ActEditorCrsLnk (ActRcvRchTxtFAQ + 8) +#define ActPlaTxtEdiCrsLnk (ActRcvRchTxtFAQ + 9) +#define ActRchTxtEdiCrsLnk (ActRcvRchTxtFAQ + 10) +#define ActRcvPlaTxtCrsLnk (ActRcvRchTxtFAQ + 11) +#define ActRcvRchTxtCrsLnk (ActRcvRchTxtFAQ + 12) -#define ActRcvURLCrsInf (ActChgCrsSta + 96) -#define ActRcvURLTchGui (ActChgCrsSta + 97) -#define ActRcvURLSylLec (ActChgCrsSta + 98) -#define ActRcvURLSylPra (ActChgCrsSta + 99) -#define ActRcvURLBib (ActChgCrsSta + 100) -#define ActRcvURLFAQ (ActChgCrsSta + 101) -#define ActRcvURLCrsLnk (ActChgCrsSta + 102) -#define ActRcvURLAss (ActChgCrsSta + 103) +// Assessment +#define ActSeeAss (ActRcvRchTxtCrsLnk + 1) +#define ActEdiAss (ActRcvRchTxtCrsLnk + 2) +#define ActChgFrcReaAss (ActRcvRchTxtCrsLnk + 3) +#define ActChgHavReaAss (ActRcvRchTxtCrsLnk + 4) +#define ActSelInfSrcAss (ActRcvRchTxtCrsLnk + 5) +#define ActRcvURLAss (ActRcvRchTxtCrsLnk + 6) +#define ActRcvPagAss (ActRcvRchTxtCrsLnk + 7) +#define ActEditorAss (ActRcvRchTxtCrsLnk + 8) +#define ActPlaTxtEdiAss (ActRcvRchTxtCrsLnk + 9) +#define ActRchTxtEdiAss (ActRcvRchTxtCrsLnk + 10) +#define ActRcvPlaTxtAss (ActRcvRchTxtCrsLnk + 11) +#define ActRcvRchTxtAss (ActRcvRchTxtCrsLnk + 12) -#define ActRcvPagCrsInf (ActChgCrsSta + 104) -#define ActRcvPagTchGui (ActChgCrsSta + 105) -#define ActRcvPagSylLec (ActChgCrsSta + 106) -#define ActRcvPagSylPra (ActChgCrsSta + 107) -#define ActRcvPagBib (ActChgCrsSta + 108) -#define ActRcvPagFAQ (ActChgCrsSta + 109) -#define ActRcvPagCrsLnk (ActChgCrsSta + 110) -#define ActRcvPagAss (ActChgCrsSta + 111) - -#define ActEditorCrsInf (ActChgCrsSta + 112) -#define ActEditorTchGui (ActChgCrsSta + 113) -#define ActEditorSylLec (ActChgCrsSta + 114) -#define ActEditorSylPra (ActChgCrsSta + 115) -#define ActEditorBib (ActChgCrsSta + 116) -#define ActEditorFAQ (ActChgCrsSta + 117) -#define ActEditorCrsLnk (ActChgCrsSta + 118) -#define ActEditorAss (ActChgCrsSta + 119) - -#define ActPlaTxtEdiCrsInf (ActChgCrsSta + 120) -#define ActPlaTxtEdiTchGui (ActChgCrsSta + 121) -#define ActPlaTxtEdiSylLec (ActChgCrsSta + 122) -#define ActPlaTxtEdiSylPra (ActChgCrsSta + 123) -#define ActPlaTxtEdiBib (ActChgCrsSta + 124) -#define ActPlaTxtEdiFAQ (ActChgCrsSta + 125) -#define ActPlaTxtEdiCrsLnk (ActChgCrsSta + 126) -#define ActPlaTxtEdiAss (ActChgCrsSta + 127) - -#define ActRchTxtEdiCrsInf (ActChgCrsSta + 128) -#define ActRchTxtEdiTchGui (ActChgCrsSta + 129) -#define ActRchTxtEdiSylLec (ActChgCrsSta + 130) -#define ActRchTxtEdiSylPra (ActChgCrsSta + 131) -#define ActRchTxtEdiBib (ActChgCrsSta + 132) -#define ActRchTxtEdiFAQ (ActChgCrsSta + 133) -#define ActRchTxtEdiCrsLnk (ActChgCrsSta + 134) -#define ActRchTxtEdiAss (ActChgCrsSta + 135) - -#define ActRcvPlaTxtCrsInf (ActChgCrsSta + 136) -#define ActRcvPlaTxtTchGui (ActChgCrsSta + 137) -#define ActRcvPlaTxtSylLec (ActChgCrsSta + 138) -#define ActRcvPlaTxtSylPra (ActChgCrsSta + 139) -#define ActRcvPlaTxtBib (ActChgCrsSta + 140) -#define ActRcvPlaTxtFAQ (ActChgCrsSta + 141) -#define ActRcvPlaTxtCrsLnk (ActChgCrsSta + 142) -#define ActRcvPlaTxtAss (ActChgCrsSta + 143) - -#define ActRcvRchTxtCrsInf (ActChgCrsSta + 144) -#define ActRcvRchTxtTchGui (ActChgCrsSta + 145) -#define ActRcvRchTxtSylLec (ActChgCrsSta + 146) -#define ActRcvRchTxtSylPra (ActChgCrsSta + 147) -#define ActRcvRchTxtBib (ActChgCrsSta + 148) -#define ActRcvRchTxtFAQ (ActChgCrsSta + 149) -#define ActRcvRchTxtCrsLnk (ActChgCrsSta + 150) -#define ActRcvRchTxtAss (ActChgCrsSta + 151) - -#define ActPrnCrsTT (ActChgCrsSta + 152) -#define ActEdiCrsTT (ActChgCrsSta + 153) -#define ActChgCrsTT (ActChgCrsSta + 154) -#define ActChgCrsTT1stDay (ActChgCrsSta + 155) +// Timetable +#define ActSeeCrsTT (ActRcvRchTxtAss + 1) +#define ActPrnCrsTT (ActRcvRchTxtAss + 2) +#define ActEdiCrsTT (ActRcvRchTxtAss + 3) +#define ActChgCrsTT (ActRcvRchTxtAss + 4) +#define ActChgCrsTT1stDay (ActRcvRchTxtAss + 5) /*****************************************************************************/ /***************************** Assessment tab ********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeAllAsg (ActChgCrsTT1stDay + 1) -#define ActSeeAllPrj (ActChgCrsTT1stDay + 2) -#define ActSeeAllCfe (ActChgCrsTT1stDay + 3) -#define ActEdiTstQst (ActChgCrsTT1stDay + 4) -#define ActReqTst (ActChgCrsTT1stDay + 5) -#define ActSeeAllExa (ActChgCrsTT1stDay + 6) -#define ActSeeAllGam (ActChgCrsTT1stDay + 7) -#define ActSeeAllRub (ActChgCrsTT1stDay + 8) +// Assignments +#define ActSeeAllAsg (ActChgCrsTT1stDay + 1) +#define ActFrmNewAsg (ActChgCrsTT1stDay + 2) +#define ActEdiOneAsg (ActChgCrsTT1stDay + 3) +#define ActSeeOneAsg (ActChgCrsTT1stDay + 4) +#define ActPrnOneAsg (ActChgCrsTT1stDay + 5) +#define ActNewAsg (ActChgCrsTT1stDay + 6) +#define ActChgAsg (ActChgCrsTT1stDay + 7) +#define ActReqRemAsg (ActChgCrsTT1stDay + 8) +#define ActRemAsg (ActChgCrsTT1stDay + 9) +#define ActHidAsg (ActChgCrsTT1stDay + 10) +#define ActUnhAsg (ActChgCrsTT1stDay + 11) +#define ActReqLnkAsg (ActChgCrsTT1stDay + 12) -// Secondary actions -#define ActFrmNewAsg (ActChgCrsTT1stDay + 9) -#define ActEdiOneAsg (ActChgCrsTT1stDay + 10) -#define ActSeeOneAsg (ActChgCrsTT1stDay + 11) -#define ActPrnOneAsg (ActChgCrsTT1stDay + 12) -#define ActNewAsg (ActChgCrsTT1stDay + 13) -#define ActChgAsg (ActChgCrsTT1stDay + 14) -#define ActReqRemAsg (ActChgCrsTT1stDay + 15) -#define ActRemAsg (ActChgCrsTT1stDay + 16) -#define ActHidAsg (ActChgCrsTT1stDay + 17) -#define ActUnhAsg (ActChgCrsTT1stDay + 18) -#define ActReqLnkAsg (ActChgCrsTT1stDay + 19) +// Projects +#define ActSeeAllPrj (ActReqLnkAsg + 1) +#define ActCfgPrj (ActReqLnkAsg + 2) +#define ActChgNETCanCrePrj (ActReqLnkAsg + 3) +#define ActChgRubPrj (ActReqLnkAsg + 4) +#define ActReqUsrPrj (ActReqLnkAsg + 5) +#define ActSeeTblAllPrj (ActReqLnkAsg + 6) +#define ActReqLckAllPrj (ActReqLnkAsg + 7) +#define ActReqUnlAllPrj (ActReqLnkAsg + 8) +#define ActLckAllPrj (ActReqLnkAsg + 9) +#define ActUnlAllPrj (ActReqLnkAsg + 10) +#define ActFrmNewPrj (ActReqLnkAsg + 11) +#define ActEdiOnePrj (ActReqLnkAsg + 12) +#define ActSeeOnePrj (ActReqLnkAsg + 13) +#define ActPrnOnePrj (ActReqLnkAsg + 14) +#define ActNewPrj (ActReqLnkAsg + 15) +#define ActChgPrj (ActReqLnkAsg + 16) +#define ActReqRemPrj (ActReqLnkAsg + 17) +#define ActRemPrj (ActReqLnkAsg + 18) +#define ActHidPrj (ActReqLnkAsg + 19) +#define ActUnhPrj (ActReqLnkAsg + 20) +#define ActLckPrj (ActReqLnkAsg + 21) +#define ActUnlPrj (ActReqLnkAsg + 22) +#define ActChgPrjRev (ActReqLnkAsg + 23) +#define ActReqAddStdPrj (ActReqLnkAsg + 24) +#define ActReqAddTutPrj (ActReqLnkAsg + 25) +#define ActReqAddEvlPrj (ActReqLnkAsg + 26) +#define ActAddStdPrj (ActReqLnkAsg + 27) +#define ActAddTutPrj (ActReqLnkAsg + 28) +#define ActAddEvlPrj (ActReqLnkAsg + 29) +#define ActReqRemStdPrj (ActReqLnkAsg + 30) +#define ActReqRemTutPrj (ActReqLnkAsg + 31) +#define ActReqRemEvlPrj (ActReqLnkAsg + 32) +#define ActRemStdPrj (ActReqLnkAsg + 33) +#define ActRemTutPrj (ActReqLnkAsg + 34) +#define ActRemEvlPrj (ActReqLnkAsg + 35) +#define ActChgPrjSco (ActReqLnkAsg + 36) +#define ActReqLnkPrj (ActReqLnkAsg + 37) +#define ActAdmDocPrj (ActReqLnkAsg + 38) +#define ActReqRemFilDocPrj (ActReqLnkAsg + 39) +#define ActRemFilDocPrj (ActReqLnkAsg + 40) +#define ActRemFolDocPrj (ActReqLnkAsg + 41) +#define ActCopDocPrj (ActReqLnkAsg + 42) +#define ActPasDocPrj (ActReqLnkAsg + 43) +#define ActRemTreDocPrj (ActReqLnkAsg + 44) +#define ActFrmCreDocPrj (ActReqLnkAsg + 45) +#define ActCreFolDocPrj (ActReqLnkAsg + 46) +#define ActCreLnkDocPrj (ActReqLnkAsg + 47) +#define ActRenFolDocPrj (ActReqLnkAsg + 48) +#define ActRcvFilDocPrjDZ (ActReqLnkAsg + 49) +#define ActRcvFilDocPrjCla (ActReqLnkAsg + 50) +#define ActExpDocPrj (ActReqLnkAsg + 51) +#define ActConDocPrj (ActReqLnkAsg + 52) +#define ActZIPDocPrj (ActReqLnkAsg + 53) +#define ActReqDatDocPrj (ActReqLnkAsg + 54) +#define ActChgDatDocPrj (ActReqLnkAsg + 55) +#define ActDowDocPrj (ActReqLnkAsg + 56) +#define ActAdmAssPrj (ActReqLnkAsg + 57) +#define ActReqRemFilAssPrj (ActReqLnkAsg + 58) +#define ActRemFilAssPrj (ActReqLnkAsg + 59) +#define ActRemFolAssPrj (ActReqLnkAsg + 60) +#define ActCopAssPrj (ActReqLnkAsg + 61) +#define ActPasAssPrj (ActReqLnkAsg + 62) +#define ActRemTreAssPrj (ActReqLnkAsg + 63) +#define ActFrmCreAssPrj (ActReqLnkAsg + 64) +#define ActCreFolAssPrj (ActReqLnkAsg + 65) +#define ActCreLnkAssPrj (ActReqLnkAsg + 66) +#define ActRenFolAssPrj (ActReqLnkAsg + 67) +#define ActRcvFilAssPrjDZ (ActReqLnkAsg + 68) +#define ActRcvFilAssPrjCla (ActReqLnkAsg + 69) +#define ActExpAssPrj (ActReqLnkAsg + 70) +#define ActConAssPrj (ActReqLnkAsg + 71) +#define ActZIPAssPrj (ActReqLnkAsg + 72) +#define ActReqDatAssPrj (ActReqLnkAsg + 73) +#define ActChgDatAssPrj (ActReqLnkAsg + 74) +#define ActDowAssPrj (ActReqLnkAsg + 75) -#define ActCfgPrj (ActChgCrsTT1stDay + 20) -#define ActChgNETCanCrePrj (ActChgCrsTT1stDay + 21) -#define ActChgRubPrj (ActChgCrsTT1stDay + 22) -#define ActReqUsrPrj (ActChgCrsTT1stDay + 23) -#define ActSeeTblAllPrj (ActChgCrsTT1stDay + 24) -#define ActReqLckAllPrj (ActChgCrsTT1stDay + 25) -#define ActReqUnlAllPrj (ActChgCrsTT1stDay + 26) -#define ActLckAllPrj (ActChgCrsTT1stDay + 27) -#define ActUnlAllPrj (ActChgCrsTT1stDay + 28) -#define ActFrmNewPrj (ActChgCrsTT1stDay + 29) -#define ActEdiOnePrj (ActChgCrsTT1stDay + 30) -#define ActSeeOnePrj (ActChgCrsTT1stDay + 31) -#define ActPrnOnePrj (ActChgCrsTT1stDay + 32) -#define ActNewPrj (ActChgCrsTT1stDay + 33) -#define ActChgPrj (ActChgCrsTT1stDay + 34) -#define ActReqRemPrj (ActChgCrsTT1stDay + 35) -#define ActRemPrj (ActChgCrsTT1stDay + 36) -#define ActHidPrj (ActChgCrsTT1stDay + 37) -#define ActUnhPrj (ActChgCrsTT1stDay + 38) -#define ActLckPrj (ActChgCrsTT1stDay + 39) -#define ActUnlPrj (ActChgCrsTT1stDay + 40) -#define ActChgPrjRev (ActChgCrsTT1stDay + 41) -#define ActReqAddStdPrj (ActChgCrsTT1stDay + 42) -#define ActReqAddTutPrj (ActChgCrsTT1stDay + 43) -#define ActReqAddEvlPrj (ActChgCrsTT1stDay + 44) -#define ActAddStdPrj (ActChgCrsTT1stDay + 45) -#define ActAddTutPrj (ActChgCrsTT1stDay + 46) -#define ActAddEvlPrj (ActChgCrsTT1stDay + 47) -#define ActReqRemStdPrj (ActChgCrsTT1stDay + 48) -#define ActReqRemTutPrj (ActChgCrsTT1stDay + 49) -#define ActReqRemEvlPrj (ActChgCrsTT1stDay + 50) -#define ActRemStdPrj (ActChgCrsTT1stDay + 51) -#define ActRemTutPrj (ActChgCrsTT1stDay + 52) -#define ActRemEvlPrj (ActChgCrsTT1stDay + 53) -#define ActChgPrjSco (ActChgCrsTT1stDay + 54) -#define ActReqLnkPrj (ActChgCrsTT1stDay + 55) +// Calls for exams +#define ActSeeAllCfe (ActDowAssPrj + 1) +#define ActSeeOneCfe (ActDowAssPrj + 2) +#define ActSeeDatCfe (ActDowAssPrj + 3) +#define ActEdiCfe (ActDowAssPrj + 4) +#define ActRcvCfe (ActDowAssPrj + 5) +#define ActPrnCfe (ActDowAssPrj + 6) +#define ActReqRemCfe (ActDowAssPrj + 7) +#define ActRemCfe (ActDowAssPrj + 8) +#define ActHidCfe (ActDowAssPrj + 9) +#define ActUnhCfe (ActDowAssPrj + 10) +#define ActReqLnkCfe (ActDowAssPrj + 11) -#define ActAdmDocPrj (ActChgCrsTT1stDay + 56) -#define ActReqRemFilDocPrj (ActChgCrsTT1stDay + 57) -#define ActRemFilDocPrj (ActChgCrsTT1stDay + 58) -#define ActRemFolDocPrj (ActChgCrsTT1stDay + 59) -#define ActCopDocPrj (ActChgCrsTT1stDay + 60) -#define ActPasDocPrj (ActChgCrsTT1stDay + 61) -#define ActRemTreDocPrj (ActChgCrsTT1stDay + 62) -#define ActFrmCreDocPrj (ActChgCrsTT1stDay + 63) -#define ActCreFolDocPrj (ActChgCrsTT1stDay + 64) -#define ActCreLnkDocPrj (ActChgCrsTT1stDay + 65) -#define ActRenFolDocPrj (ActChgCrsTT1stDay + 66) -#define ActRcvFilDocPrjDZ (ActChgCrsTT1stDay + 67) -#define ActRcvFilDocPrjCla (ActChgCrsTT1stDay + 68) -#define ActExpDocPrj (ActChgCrsTT1stDay + 69) -#define ActConDocPrj (ActChgCrsTT1stDay + 70) -#define ActZIPDocPrj (ActChgCrsTT1stDay + 71) -#define ActReqDatDocPrj (ActChgCrsTT1stDay + 72) -#define ActChgDatDocPrj (ActChgCrsTT1stDay + 73) -#define ActDowDocPrj (ActChgCrsTT1stDay + 74) +// Questions +#define ActEdiTstQst (ActReqLnkCfe + 1) +#define ActEdiOneTstQst (ActReqLnkCfe + 2) +#define ActReqImpTstQst (ActReqLnkCfe + 3) +#define ActImpTstQst (ActReqLnkCfe + 4) +#define ActLstTstQst (ActReqLnkCfe + 5) +#define ActNewTstQst (ActReqLnkCfe + 6) +#define ActChgTstQst (ActReqLnkCfe + 7) +#define ActReqRemSevTstQst (ActReqLnkCfe + 8) +#define ActRemSevTstQst (ActReqLnkCfe + 9) +#define ActReqRemOneTstQst (ActReqLnkCfe + 10) +#define ActRemOneTstQst (ActReqLnkCfe + 11) +#define ActChgShfTstQst (ActReqLnkCfe + 12) +#define ActEdiTag (ActReqLnkCfe + 13) +#define ActEnaTag (ActReqLnkCfe + 14) +#define ActDisTag (ActReqLnkCfe + 15) +#define ActRenTag (ActReqLnkCfe + 16) -#define ActAdmAssPrj (ActChgCrsTT1stDay + 75) -#define ActReqRemFilAssPrj (ActChgCrsTT1stDay + 76) -#define ActRemFilAssPrj (ActChgCrsTT1stDay + 77) -#define ActRemFolAssPrj (ActChgCrsTT1stDay + 78) -#define ActCopAssPrj (ActChgCrsTT1stDay + 79) -#define ActPasAssPrj (ActChgCrsTT1stDay + 80) -#define ActRemTreAssPrj (ActChgCrsTT1stDay + 81) -#define ActFrmCreAssPrj (ActChgCrsTT1stDay + 82) -#define ActCreFolAssPrj (ActChgCrsTT1stDay + 83) -#define ActCreLnkAssPrj (ActChgCrsTT1stDay + 84) -#define ActRenFolAssPrj (ActChgCrsTT1stDay + 85) -#define ActRcvFilAssPrjDZ (ActChgCrsTT1stDay + 86) -#define ActRcvFilAssPrjCla (ActChgCrsTT1stDay + 87) -#define ActExpAssPrj (ActChgCrsTT1stDay + 88) -#define ActConAssPrj (ActChgCrsTT1stDay + 89) -#define ActZIPAssPrj (ActChgCrsTT1stDay + 90) -#define ActReqDatAssPrj (ActChgCrsTT1stDay + 91) -#define ActChgDatAssPrj (ActChgCrsTT1stDay + 92) -#define ActDowAssPrj (ActChgCrsTT1stDay + 93) +// Test +#define ActReqTst (ActRenTag + 1) +#define ActSeeTst (ActRenTag + 2) +#define ActReqAssTst (ActRenTag + 3) +#define ActAssTst (ActRenTag + 4) +#define ActCfgTst (ActRenTag + 5) +#define ActRcvCfgTst (ActRenTag + 6) +#define ActReqSeeMyTstRes (ActRenTag + 7) +#define ActSeeMyTstResCrs (ActRenTag + 8) +#define ActSeeOneTstResMe (ActRenTag + 9) +#define ActReqSeeUsrTstRes (ActRenTag + 10) +#define ActSeeUsrTstResCrs (ActRenTag + 11) +#define ActSeeOneTstResOth (ActRenTag + 12) -#define ActSeeOneCfe (ActChgCrsTT1stDay + 94) -#define ActSeeDatCfe (ActChgCrsTT1stDay + 95) -#define ActEdiCfe (ActChgCrsTT1stDay + 96) -#define ActRcvCfe (ActChgCrsTT1stDay + 97) -#define ActPrnCfe (ActChgCrsTT1stDay + 98) -#define ActReqRemCfe (ActChgCrsTT1stDay + 99) -#define ActRemCfe (ActChgCrsTT1stDay + 100) -#define ActHidCfe (ActChgCrsTT1stDay + 101) -#define ActUnhCfe (ActChgCrsTT1stDay + 102) -#define ActReqLnkCfe (ActChgCrsTT1stDay + 103) +// Exams +#define ActSeeAllExa (ActSeeOneTstResOth + 1) +#define ActSeeOneExa (ActSeeOneTstResOth + 2) +#define ActFrmNewExa (ActSeeOneTstResOth + 3) +#define ActEdiOneExa (ActSeeOneTstResOth + 4) +#define ActNewExa (ActSeeOneTstResOth + 5) +#define ActChgExa (ActSeeOneTstResOth + 6) +#define ActReqRemExa (ActSeeOneTstResOth + 7) +#define ActRemExa (ActSeeOneTstResOth + 8) +#define ActHidExa (ActSeeOneTstResOth + 9) +#define ActUnhExa (ActSeeOneTstResOth + 10) +#define ActReqLnkExa (ActSeeOneTstResOth + 11) +#define ActNewExaSet (ActSeeOneTstResOth + 12) +#define ActReqRemExaSet (ActSeeOneTstResOth + 13) +#define ActRemExaSet (ActSeeOneTstResOth + 14) +#define ActUp_ExaSet (ActSeeOneTstResOth + 15) +#define ActDwnExaSet (ActSeeOneTstResOth + 16) +#define ActChgTitExaSet (ActSeeOneTstResOth + 17) +#define ActChgNumQstExaSet (ActSeeOneTstResOth + 18) +#define ActReqAddQstExaSet (ActSeeOneTstResOth + 19) +#define ActLstTstQstForSet (ActSeeOneTstResOth + 20) +#define ActAddQstToExa (ActSeeOneTstResOth + 21) +#define ActReqRemSetQst (ActSeeOneTstResOth + 22) +#define ActRemExaQst (ActSeeOneTstResOth + 23) +#define ActValSetQst (ActSeeOneTstResOth + 24) +#define ActInvSetQst (ActSeeOneTstResOth + 25) +#define ActReqNewExaSes (ActSeeOneTstResOth + 26) +#define ActReqChgExaSes (ActSeeOneTstResOth + 27) +#define ActNewExaSes (ActSeeOneTstResOth + 28) +#define ActChgExaSes (ActSeeOneTstResOth + 29) +#define ActReqRemExaSes (ActSeeOneTstResOth + 30) +#define ActRemExaSes (ActSeeOneTstResOth + 31) +#define ActHidExaSes (ActSeeOneTstResOth + 32) +#define ActUnhExaSes (ActSeeOneTstResOth + 33) +#define ActSeeExaPrn (ActSeeOneTstResOth + 34) +#define ActAnsExaPrn (ActSeeOneTstResOth + 35) +#define ActEndExaPrn (ActSeeOneTstResOth + 36) +#define ActSeeMyExaResCrs (ActSeeOneTstResOth + 37) +#define ActSeeMyExaResExa (ActSeeOneTstResOth + 38) +#define ActSeeMyExaResSes (ActSeeOneTstResOth + 39) +#define ActSeeOneExaResMe (ActSeeOneTstResOth + 40) +#define ActReqSeeUsrExaRes (ActSeeOneTstResOth + 41) +#define ActSeeUsrExaResCrs (ActSeeOneTstResOth + 42) +#define ActSeeUsrExaResExa (ActSeeOneTstResOth + 43) +#define ActSeeUsrExaResSes (ActSeeOneTstResOth + 44) +#define ActSeeOneExaResOth (ActSeeOneTstResOth + 45) +#define ActChgVisExaRes (ActSeeOneTstResOth + 46) -#define ActEdiOneTstQst (ActChgCrsTT1stDay + 104) -#define ActReqImpTstQst (ActChgCrsTT1stDay + 105) -#define ActImpTstQst (ActChgCrsTT1stDay + 106) -#define ActLstTstQst (ActChgCrsTT1stDay + 107) -#define ActNewTstQst (ActChgCrsTT1stDay + 108) -#define ActChgTstQst (ActChgCrsTT1stDay + 109) -#define ActReqRemSevTstQst (ActChgCrsTT1stDay + 110) -#define ActRemSevTstQst (ActChgCrsTT1stDay + 111) -#define ActReqRemOneTstQst (ActChgCrsTT1stDay + 112) -#define ActRemOneTstQst (ActChgCrsTT1stDay + 113) -#define ActChgShfTstQst (ActChgCrsTT1stDay + 114) +// Games +#define ActSeeAllGam (ActChgVisExaRes + 1) +#define ActSeeOneGam (ActChgVisExaRes + 2) +#define ActReqNewMch (ActChgVisExaRes + 3) +#define ActReqChgMch (ActChgVisExaRes + 4) +#define ActNewMch (ActChgVisExaRes + 5) +#define ActChgMch (ActChgVisExaRes + 6) +#define ActReqRemMch (ActChgVisExaRes + 7) +#define ActRemMch (ActChgVisExaRes + 8) +#define ActResMch (ActChgVisExaRes + 9) +#define ActBckMch (ActChgVisExaRes + 10) +#define ActPlyPauMch (ActChgVisExaRes + 11) +#define ActFwdMch (ActChgVisExaRes + 12) +#define ActChgNumColMch (ActChgVisExaRes + 13) +#define ActChgVisResMchQst (ActChgVisExaRes + 14) +#define ActMchCntDwn (ActChgVisExaRes + 15) +#define ActRefMchTch (ActChgVisExaRes + 16) +#define ActJoiMch (ActChgVisExaRes + 17) +#define ActSeeMchAnsQstStd (ActChgVisExaRes + 18) +#define ActRemMchAnsQstStd (ActChgVisExaRes + 19) +#define ActAnsMchQstStd (ActChgVisExaRes + 20) +#define ActRefMchStd (ActChgVisExaRes + 21) +#define ActSeeMyMchResCrs (ActChgVisExaRes + 22) +#define ActSeeMyMchResGam (ActChgVisExaRes + 23) +#define ActSeeMyMchResMch (ActChgVisExaRes + 24) +#define ActSeeOneMchResMe (ActChgVisExaRes + 25) +#define ActReqSeeUsrMchRes (ActChgVisExaRes + 26) +#define ActSeeUsrMchResCrs (ActChgVisExaRes + 27) +#define ActSeeUsrMchResGam (ActChgVisExaRes + 28) +#define ActSeeUsrMchResMch (ActChgVisExaRes + 29) +#define ActSeeOneMchResOth (ActChgVisExaRes + 30) +#define ActChgVisResMchUsr (ActChgVisExaRes + 31) +#define ActLstOneGam (ActChgVisExaRes + 32) +#define ActFrmNewGam (ActChgVisExaRes + 33) +#define ActEdiOneGam (ActChgVisExaRes + 34) +#define ActNewGam (ActChgVisExaRes + 35) +#define ActChgGam (ActChgVisExaRes + 36) +#define ActReqRemGam (ActChgVisExaRes + 37) +#define ActRemGam (ActChgVisExaRes + 38) +#define ActHidGam (ActChgVisExaRes + 39) +#define ActUnhGam (ActChgVisExaRes + 40) +#define ActAddOneGamQst (ActChgVisExaRes + 41) +#define ActGamLstTstQst (ActChgVisExaRes + 42) +#define ActAddTstQstToGam (ActChgVisExaRes + 43) +#define ActReqRemGamQst (ActChgVisExaRes + 44) +#define ActRemGamQst (ActChgVisExaRes + 45) +#define ActUp_GamQst (ActChgVisExaRes + 46) +#define ActDwnGamQst (ActChgVisExaRes + 47) +#define ActReqLnkGam (ActChgVisExaRes + 48) -#define ActEdiTag (ActChgCrsTT1stDay + 115) -#define ActEnaTag (ActChgCrsTT1stDay + 116) -#define ActDisTag (ActChgCrsTT1stDay + 117) -#define ActRenTag (ActChgCrsTT1stDay + 118) - -#define ActSeeTst (ActChgCrsTT1stDay + 119) -#define ActReqAssTst (ActChgCrsTT1stDay + 120) -#define ActAssTst (ActChgCrsTT1stDay + 121) -#define ActCfgTst (ActChgCrsTT1stDay + 122) -#define ActRcvCfgTst (ActChgCrsTT1stDay + 123) - -#define ActReqSeeMyTstRes (ActChgCrsTT1stDay + 124) -#define ActSeeMyTstResCrs (ActChgCrsTT1stDay + 125) -#define ActSeeOneTstResMe (ActChgCrsTT1stDay + 126) -#define ActReqSeeUsrTstRes (ActChgCrsTT1stDay + 127) -#define ActSeeUsrTstResCrs (ActChgCrsTT1stDay + 128) -#define ActSeeOneTstResOth (ActChgCrsTT1stDay + 129) - -#define ActSeeOneExa (ActChgCrsTT1stDay + 130) - -#define ActFrmNewExa (ActChgCrsTT1stDay + 131) -#define ActEdiOneExa (ActChgCrsTT1stDay + 132) -#define ActNewExa (ActChgCrsTT1stDay + 133) -#define ActChgExa (ActChgCrsTT1stDay + 134) -#define ActReqRemExa (ActChgCrsTT1stDay + 135) -#define ActRemExa (ActChgCrsTT1stDay + 136) -#define ActHidExa (ActChgCrsTT1stDay + 137) -#define ActUnhExa (ActChgCrsTT1stDay + 138) -#define ActReqLnkExa (ActChgCrsTT1stDay + 139) - -#define ActNewExaSet (ActChgCrsTT1stDay + 140) -#define ActReqRemExaSet (ActChgCrsTT1stDay + 141) -#define ActRemExaSet (ActChgCrsTT1stDay + 142) -#define ActUp_ExaSet (ActChgCrsTT1stDay + 143) -#define ActDwnExaSet (ActChgCrsTT1stDay + 144) -#define ActChgTitExaSet (ActChgCrsTT1stDay + 145) -#define ActChgNumQstExaSet (ActChgCrsTT1stDay + 146) - -#define ActReqAddQstExaSet (ActChgCrsTT1stDay + 147) -#define ActLstTstQstForSet (ActChgCrsTT1stDay + 148) -#define ActAddQstToExa (ActChgCrsTT1stDay + 149) -#define ActReqRemSetQst (ActChgCrsTT1stDay + 150) -#define ActRemExaQst (ActChgCrsTT1stDay + 151) -#define ActValSetQst (ActChgCrsTT1stDay + 152) -#define ActInvSetQst (ActChgCrsTT1stDay + 153) - -#define ActReqNewExaSes (ActChgCrsTT1stDay + 154) -#define ActReqChgExaSes (ActChgCrsTT1stDay + 155) -#define ActNewExaSes (ActChgCrsTT1stDay + 156) -#define ActChgExaSes (ActChgCrsTT1stDay + 157) -#define ActReqRemExaSes (ActChgCrsTT1stDay + 158) -#define ActRemExaSes (ActChgCrsTT1stDay + 159) -#define ActHidExaSes (ActChgCrsTT1stDay + 160) -#define ActUnhExaSes (ActChgCrsTT1stDay + 161) - -#define ActSeeExaPrn (ActChgCrsTT1stDay + 162) -#define ActAnsExaPrn (ActChgCrsTT1stDay + 163) -#define ActEndExaPrn (ActChgCrsTT1stDay + 164) - -#define ActSeeMyExaResCrs (ActChgCrsTT1stDay + 165) -#define ActSeeMyExaResExa (ActChgCrsTT1stDay + 166) -#define ActSeeMyExaResSes (ActChgCrsTT1stDay + 167) -#define ActSeeOneExaResMe (ActChgCrsTT1stDay + 168) -#define ActReqSeeUsrExaRes (ActChgCrsTT1stDay + 169) -#define ActSeeUsrExaResCrs (ActChgCrsTT1stDay + 170) -#define ActSeeUsrExaResExa (ActChgCrsTT1stDay + 171) -#define ActSeeUsrExaResSes (ActChgCrsTT1stDay + 172) -#define ActSeeOneExaResOth (ActChgCrsTT1stDay + 173) -#define ActChgVisExaRes (ActChgCrsTT1stDay + 174) - -#define ActSeeOneGam (ActChgCrsTT1stDay + 175) -#define ActReqNewMch (ActChgCrsTT1stDay + 176) -#define ActReqChgMch (ActChgCrsTT1stDay + 177) -#define ActNewMch (ActChgCrsTT1stDay + 178) -#define ActChgMch (ActChgCrsTT1stDay + 179) -#define ActReqRemMch (ActChgCrsTT1stDay + 180) -#define ActRemMch (ActChgCrsTT1stDay + 181) -#define ActResMch (ActChgCrsTT1stDay + 182) -#define ActBckMch (ActChgCrsTT1stDay + 183) -#define ActPlyPauMch (ActChgCrsTT1stDay + 184) -#define ActFwdMch (ActChgCrsTT1stDay + 185) -#define ActChgNumColMch (ActChgCrsTT1stDay + 186) -#define ActChgVisResMchQst (ActChgCrsTT1stDay + 187) -#define ActMchCntDwn (ActChgCrsTT1stDay + 188) -#define ActRefMchTch (ActChgCrsTT1stDay + 189) - -#define ActJoiMch (ActChgCrsTT1stDay + 190) -#define ActSeeMchAnsQstStd (ActChgCrsTT1stDay + 191) -#define ActRemMchAnsQstStd (ActChgCrsTT1stDay + 192) -#define ActAnsMchQstStd (ActChgCrsTT1stDay + 193) -#define ActRefMchStd (ActChgCrsTT1stDay + 194) - -#define ActSeeMyMchResCrs (ActChgCrsTT1stDay + 195) -#define ActSeeMyMchResGam (ActChgCrsTT1stDay + 196) -#define ActSeeMyMchResMch (ActChgCrsTT1stDay + 197) -#define ActSeeOneMchResMe (ActChgCrsTT1stDay + 198) - -#define ActReqSeeUsrMchRes (ActChgCrsTT1stDay + 199) -#define ActSeeUsrMchResCrs (ActChgCrsTT1stDay + 200) -#define ActSeeUsrMchResGam (ActChgCrsTT1stDay + 201) -#define ActSeeUsrMchResMch (ActChgCrsTT1stDay + 202) -#define ActSeeOneMchResOth (ActChgCrsTT1stDay + 203) - -#define ActChgVisResMchUsr (ActChgCrsTT1stDay + 204) - -#define ActLstOneGam (ActChgCrsTT1stDay + 205) - -#define ActFrmNewGam (ActChgCrsTT1stDay + 206) -#define ActEdiOneGam (ActChgCrsTT1stDay + 207) -#define ActNewGam (ActChgCrsTT1stDay + 208) -#define ActChgGam (ActChgCrsTT1stDay + 209) -#define ActReqRemGam (ActChgCrsTT1stDay + 210) -#define ActRemGam (ActChgCrsTT1stDay + 211) -#define ActHidGam (ActChgCrsTT1stDay + 212) -#define ActUnhGam (ActChgCrsTT1stDay + 213) -#define ActAddOneGamQst (ActChgCrsTT1stDay + 214) -#define ActGamLstTstQst (ActChgCrsTT1stDay + 215) -#define ActAddTstQstToGam (ActChgCrsTT1stDay + 216) -#define ActReqRemGamQst (ActChgCrsTT1stDay + 217) -#define ActRemGamQst (ActChgCrsTT1stDay + 218) -#define ActUp_GamQst (ActChgCrsTT1stDay + 219) -#define ActDwnGamQst (ActChgCrsTT1stDay + 220) -#define ActReqLnkGam (ActChgCrsTT1stDay + 221) - -#define ActSeeOneRub (ActChgCrsTT1stDay + 222) -#define ActFrmNewRub (ActChgCrsTT1stDay + 223) -#define ActEdiOneRub (ActChgCrsTT1stDay + 224) -#define ActNewRub (ActChgCrsTT1stDay + 225) -#define ActChgRub (ActChgCrsTT1stDay + 226) -#define ActReqRemRub (ActChgCrsTT1stDay + 227) -#define ActRemRub (ActChgCrsTT1stDay + 228) -#define ActReqLnkRub (ActChgCrsTT1stDay + 229) - -#define ActSeeRscCli_InRub (ActChgCrsTT1stDay + 230) -#define ActRemRscCli_InRub (ActChgCrsTT1stDay + 231) -#define ActNewRubCri (ActChgCrsTT1stDay + 232) -#define ActReqRemRubCri (ActChgCrsTT1stDay + 233) -#define ActRemRubCri (ActChgCrsTT1stDay + 234) -#define ActUp_RubCri (ActChgCrsTT1stDay + 235) -#define ActDwnRubCri (ActChgCrsTT1stDay + 236) -#define ActChgTitRubCri (ActChgCrsTT1stDay + 237) -#define ActChgLnkRubCri (ActChgCrsTT1stDay + 238) -#define ActChgMinRubCri (ActChgCrsTT1stDay + 239) -#define ActChgMaxRubCri (ActChgCrsTT1stDay + 240) -#define ActChgWeiRubCri (ActChgCrsTT1stDay + 241) +// Rubrics +#define ActSeeAllRub (ActReqLnkGam + 1) +#define ActSeeOneRub (ActReqLnkGam + 2) +#define ActFrmNewRub (ActReqLnkGam + 3) +#define ActEdiOneRub (ActReqLnkGam + 4) +#define ActNewRub (ActReqLnkGam + 5) +#define ActChgRub (ActReqLnkGam + 6) +#define ActReqRemRub (ActReqLnkGam + 7) +#define ActRemRub (ActReqLnkGam + 8) +#define ActReqLnkRub (ActReqLnkGam + 9) +#define ActSeeRscCli_InRub (ActReqLnkGam + 10) +#define ActRemRscCli_InRub (ActReqLnkGam + 11) +#define ActNewRubCri (ActReqLnkGam + 12) +#define ActReqRemRubCri (ActReqLnkGam + 13) +#define ActRemRubCri (ActReqLnkGam + 14) +#define ActUp_RubCri (ActReqLnkGam + 15) +#define ActDwnRubCri (ActReqLnkGam + 16) +#define ActChgTitRubCri (ActReqLnkGam + 17) +#define ActChgLnkRubCri (ActReqLnkGam + 18) +#define ActChgMinRubCri (ActReqLnkGam + 19) +#define ActChgMaxRubCri (ActReqLnkGam + 20) +#define ActChgWeiRubCri (ActReqLnkGam + 21) /*****************************************************************************/ /******************************** Files tab **********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeAdmDocIns (ActChgWeiRubCri + 1) -#define ActAdmShaIns (ActChgWeiRubCri + 2) -#define ActSeeAdmDocCtr (ActChgWeiRubCri + 3) -#define ActAdmShaCtr (ActChgWeiRubCri + 4) -#define ActSeeAdmDocDeg (ActChgWeiRubCri + 5) -#define ActAdmShaDeg (ActChgWeiRubCri + 6) -#define ActSeeAdmDocCrsGrp (ActChgWeiRubCri + 7) -#define ActAdmTchCrsGrp (ActChgWeiRubCri + 8) -#define ActAdmShaCrsGrp (ActChgWeiRubCri + 9) -#define ActAdmAsgWrkUsr (ActChgWeiRubCri + 10) -#define ActReqAsgWrkCrs (ActChgWeiRubCri + 11) -#define ActSeeAdmMrk (ActChgWeiRubCri + 12) -#define ActAdmBrf (ActChgWeiRubCri + 13) -// Secondary actions -#define ActChgToSeeDocIns (ActChgWeiRubCri + 14) -#define ActSeeDocIns (ActChgWeiRubCri + 15) -#define ActExpSeeDocIns (ActChgWeiRubCri + 16) -#define ActConSeeDocIns (ActChgWeiRubCri + 17) -#define ActZIPSeeDocIns (ActChgWeiRubCri + 18) -#define ActReqDatSeeDocIns (ActChgWeiRubCri + 19) -#define ActDowSeeDocIns (ActChgWeiRubCri + 20) -#define ActChgToAdmDocIns (ActChgWeiRubCri + 21) -#define ActAdmDocIns (ActChgWeiRubCri + 22) -#define ActReqRemFilDocIns (ActChgWeiRubCri + 23) -#define ActRemFilDocIns (ActChgWeiRubCri + 24) -#define ActRemFolDocIns (ActChgWeiRubCri + 25) -#define ActCopDocIns (ActChgWeiRubCri + 26) -#define ActPasDocIns (ActChgWeiRubCri + 27) -#define ActRemTreDocIns (ActChgWeiRubCri + 28) -#define ActFrmCreDocIns (ActChgWeiRubCri + 29) -#define ActCreFolDocIns (ActChgWeiRubCri + 30) -#define ActCreLnkDocIns (ActChgWeiRubCri + 31) -#define ActRenFolDocIns (ActChgWeiRubCri + 32) -#define ActRcvFilDocInsDZ (ActChgWeiRubCri + 33) -#define ActRcvFilDocInsCla (ActChgWeiRubCri + 34) -#define ActExpAdmDocIns (ActChgWeiRubCri + 35) -#define ActConAdmDocIns (ActChgWeiRubCri + 36) -#define ActZIPAdmDocIns (ActChgWeiRubCri + 37) -#define ActUnhDocIns (ActChgWeiRubCri + 38) -#define ActHidDocIns (ActChgWeiRubCri + 39) -#define ActReqDatAdmDocIns (ActChgWeiRubCri + 40) -#define ActChgDatAdmDocIns (ActChgWeiRubCri + 41) -#define ActDowAdmDocIns (ActChgWeiRubCri + 42) +// Documents of institution +#define ActSeeAdmDocIns (ActChgWeiRubCri + 1) +#define ActChgToSeeDocIns (ActChgWeiRubCri + 2) +#define ActSeeDocIns (ActChgWeiRubCri + 3) +#define ActExpSeeDocIns (ActChgWeiRubCri + 4) +#define ActConSeeDocIns (ActChgWeiRubCri + 5) +#define ActZIPSeeDocIns (ActChgWeiRubCri + 6) +#define ActReqDatSeeDocIns (ActChgWeiRubCri + 7) +#define ActDowSeeDocIns (ActChgWeiRubCri + 8) +#define ActChgToAdmDocIns (ActChgWeiRubCri + 9) +#define ActAdmDocIns (ActChgWeiRubCri + 10) +#define ActReqRemFilDocIns (ActChgWeiRubCri + 11) +#define ActRemFilDocIns (ActChgWeiRubCri + 12) +#define ActRemFolDocIns (ActChgWeiRubCri + 13) +#define ActCopDocIns (ActChgWeiRubCri + 14) +#define ActPasDocIns (ActChgWeiRubCri + 15) +#define ActRemTreDocIns (ActChgWeiRubCri + 16) +#define ActFrmCreDocIns (ActChgWeiRubCri + 17) +#define ActCreFolDocIns (ActChgWeiRubCri + 18) +#define ActCreLnkDocIns (ActChgWeiRubCri + 19) +#define ActRenFolDocIns (ActChgWeiRubCri + 20) +#define ActRcvFilDocInsDZ (ActChgWeiRubCri + 21) +#define ActRcvFilDocInsCla (ActChgWeiRubCri + 22) +#define ActExpAdmDocIns (ActChgWeiRubCri + 23) +#define ActConAdmDocIns (ActChgWeiRubCri + 24) +#define ActZIPAdmDocIns (ActChgWeiRubCri + 25) +#define ActUnhDocIns (ActChgWeiRubCri + 26) +#define ActHidDocIns (ActChgWeiRubCri + 27) +#define ActReqDatAdmDocIns (ActChgWeiRubCri + 28) +#define ActChgDatAdmDocIns (ActChgWeiRubCri + 29) +#define ActDowAdmDocIns (ActChgWeiRubCri + 30) -#define ActReqRemFilShaIns (ActChgWeiRubCri + 43) -#define ActRemFilShaIns (ActChgWeiRubCri + 44) -#define ActRemFolShaIns (ActChgWeiRubCri + 45) -#define ActCopShaIns (ActChgWeiRubCri + 46) -#define ActPasShaIns (ActChgWeiRubCri + 47) -#define ActRemTreShaIns (ActChgWeiRubCri + 48) -#define ActFrmCreShaIns (ActChgWeiRubCri + 49) -#define ActCreFolShaIns (ActChgWeiRubCri + 50) -#define ActCreLnkShaIns (ActChgWeiRubCri + 51) -#define ActRenFolShaIns (ActChgWeiRubCri + 52) -#define ActRcvFilShaInsDZ (ActChgWeiRubCri + 53) -#define ActRcvFilShaInsCla (ActChgWeiRubCri + 54) -#define ActExpShaIns (ActChgWeiRubCri + 55) -#define ActConShaIns (ActChgWeiRubCri + 56) -#define ActZIPShaIns (ActChgWeiRubCri + 57) -#define ActReqDatShaIns (ActChgWeiRubCri + 58) -#define ActChgDatShaIns (ActChgWeiRubCri + 59) -#define ActDowShaIns (ActChgWeiRubCri + 60) +// Shared files of institution +#define ActAdmShaIns (ActDowAdmDocIns + 1) +#define ActReqRemFilShaIns (ActDowAdmDocIns + 2) +#define ActRemFilShaIns (ActDowAdmDocIns + 3) +#define ActRemFolShaIns (ActDowAdmDocIns + 4) +#define ActCopShaIns (ActDowAdmDocIns + 5) +#define ActPasShaIns (ActDowAdmDocIns + 6) +#define ActRemTreShaIns (ActDowAdmDocIns + 7) +#define ActFrmCreShaIns (ActDowAdmDocIns + 8) +#define ActCreFolShaIns (ActDowAdmDocIns + 9) +#define ActCreLnkShaIns (ActDowAdmDocIns + 10) +#define ActRenFolShaIns (ActDowAdmDocIns + 11) +#define ActRcvFilShaInsDZ (ActDowAdmDocIns + 12) +#define ActRcvFilShaInsCla (ActDowAdmDocIns + 13) +#define ActExpShaIns (ActDowAdmDocIns + 14) +#define ActConShaIns (ActDowAdmDocIns + 15) +#define ActZIPShaIns (ActDowAdmDocIns + 16) +#define ActReqDatShaIns (ActDowAdmDocIns + 17) +#define ActChgDatShaIns (ActDowAdmDocIns + 18) +#define ActDowShaIns (ActDowAdmDocIns + 19) -#define ActChgToSeeDocCtr (ActChgWeiRubCri + 61) -#define ActSeeDocCtr (ActChgWeiRubCri + 62) -#define ActExpSeeDocCtr (ActChgWeiRubCri + 63) -#define ActConSeeDocCtr (ActChgWeiRubCri + 64) -#define ActZIPSeeDocCtr (ActChgWeiRubCri + 65) -#define ActReqDatSeeDocCtr (ActChgWeiRubCri + 66) -#define ActDowSeeDocCtr (ActChgWeiRubCri + 67) -#define ActChgToAdmDocCtr (ActChgWeiRubCri + 68) -#define ActAdmDocCtr (ActChgWeiRubCri + 69) -#define ActReqRemFilDocCtr (ActChgWeiRubCri + 70) -#define ActRemFilDocCtr (ActChgWeiRubCri + 71) -#define ActRemFolDocCtr (ActChgWeiRubCri + 72) -#define ActCopDocCtr (ActChgWeiRubCri + 73) -#define ActPasDocCtr (ActChgWeiRubCri + 74) -#define ActRemTreDocCtr (ActChgWeiRubCri + 75) -#define ActFrmCreDocCtr (ActChgWeiRubCri + 76) -#define ActCreFolDocCtr (ActChgWeiRubCri + 77) -#define ActCreLnkDocCtr (ActChgWeiRubCri + 78) -#define ActRenFolDocCtr (ActChgWeiRubCri + 79) -#define ActRcvFilDocCtrDZ (ActChgWeiRubCri + 80) -#define ActRcvFilDocCtrCla (ActChgWeiRubCri + 81) -#define ActExpAdmDocCtr (ActChgWeiRubCri + 82) -#define ActConAdmDocCtr (ActChgWeiRubCri + 83) -#define ActZIPAdmDocCtr (ActChgWeiRubCri + 84) -#define ActUnhDocCtr (ActChgWeiRubCri + 85) -#define ActHidDocCtr (ActChgWeiRubCri + 86) -#define ActReqDatAdmDocCtr (ActChgWeiRubCri + 87) -#define ActChgDatAdmDocCtr (ActChgWeiRubCri + 88) -#define ActDowAdmDocCtr (ActChgWeiRubCri + 89) +// Documents of center +#define ActSeeAdmDocCtr (ActDowShaIns + 1) +#define ActChgToSeeDocCtr (ActDowShaIns + 2) +#define ActSeeDocCtr (ActDowShaIns + 3) +#define ActExpSeeDocCtr (ActDowShaIns + 4) +#define ActConSeeDocCtr (ActDowShaIns + 5) +#define ActZIPSeeDocCtr (ActDowShaIns + 6) +#define ActReqDatSeeDocCtr (ActDowShaIns + 7) +#define ActDowSeeDocCtr (ActDowShaIns + 8) +#define ActChgToAdmDocCtr (ActDowShaIns + 9) +#define ActAdmDocCtr (ActDowShaIns + 10) +#define ActReqRemFilDocCtr (ActDowShaIns + 11) +#define ActRemFilDocCtr (ActDowShaIns + 12) +#define ActRemFolDocCtr (ActDowShaIns + 13) +#define ActCopDocCtr (ActDowShaIns + 14) +#define ActPasDocCtr (ActDowShaIns + 15) +#define ActRemTreDocCtr (ActDowShaIns + 16) +#define ActFrmCreDocCtr (ActDowShaIns + 17) +#define ActCreFolDocCtr (ActDowShaIns + 18) +#define ActCreLnkDocCtr (ActDowShaIns + 19) +#define ActRenFolDocCtr (ActDowShaIns + 20) +#define ActRcvFilDocCtrDZ (ActDowShaIns + 21) +#define ActRcvFilDocCtrCla (ActDowShaIns + 22) +#define ActExpAdmDocCtr (ActDowShaIns + 23) +#define ActConAdmDocCtr (ActDowShaIns + 24) +#define ActZIPAdmDocCtr (ActDowShaIns + 25) +#define ActUnhDocCtr (ActDowShaIns + 26) +#define ActHidDocCtr (ActDowShaIns + 27) +#define ActReqDatAdmDocCtr (ActDowShaIns + 28) +#define ActChgDatAdmDocCtr (ActDowShaIns + 29) +#define ActDowAdmDocCtr (ActDowShaIns + 30) -#define ActReqRemFilShaCtr (ActChgWeiRubCri + 90) -#define ActRemFilShaCtr (ActChgWeiRubCri + 91) -#define ActRemFolShaCtr (ActChgWeiRubCri + 92) -#define ActCopShaCtr (ActChgWeiRubCri + 93) -#define ActPasShaCtr (ActChgWeiRubCri + 94) -#define ActRemTreShaCtr (ActChgWeiRubCri + 95) -#define ActFrmCreShaCtr (ActChgWeiRubCri + 96) -#define ActCreFolShaCtr (ActChgWeiRubCri + 97) -#define ActCreLnkShaCtr (ActChgWeiRubCri + 98) -#define ActRenFolShaCtr (ActChgWeiRubCri + 99) -#define ActRcvFilShaCtrDZ (ActChgWeiRubCri + 100) -#define ActRcvFilShaCtrCla (ActChgWeiRubCri + 101) -#define ActExpShaCtr (ActChgWeiRubCri + 102) -#define ActConShaCtr (ActChgWeiRubCri + 103) -#define ActZIPShaCtr (ActChgWeiRubCri + 104) -#define ActReqDatShaCtr (ActChgWeiRubCri + 105) -#define ActChgDatShaCtr (ActChgWeiRubCri + 106) -#define ActDowShaCtr (ActChgWeiRubCri + 107) +// Shared files of center +#define ActAdmShaCtr (ActDowAdmDocCtr + 1) +#define ActReqRemFilShaCtr (ActDowAdmDocCtr + 2) +#define ActRemFilShaCtr (ActDowAdmDocCtr + 3) +#define ActRemFolShaCtr (ActDowAdmDocCtr + 4) +#define ActCopShaCtr (ActDowAdmDocCtr + 5) +#define ActPasShaCtr (ActDowAdmDocCtr + 6) +#define ActRemTreShaCtr (ActDowAdmDocCtr + 7) +#define ActFrmCreShaCtr (ActDowAdmDocCtr + 8) +#define ActCreFolShaCtr (ActDowAdmDocCtr + 9) +#define ActCreLnkShaCtr (ActDowAdmDocCtr + 10) +#define ActRenFolShaCtr (ActDowAdmDocCtr + 11) +#define ActRcvFilShaCtrDZ (ActDowAdmDocCtr + 12) +#define ActRcvFilShaCtrCla (ActDowAdmDocCtr + 13) +#define ActExpShaCtr (ActDowAdmDocCtr + 14) +#define ActConShaCtr (ActDowAdmDocCtr + 15) +#define ActZIPShaCtr (ActDowAdmDocCtr + 16) +#define ActReqDatShaCtr (ActDowAdmDocCtr + 17) +#define ActChgDatShaCtr (ActDowAdmDocCtr + 18) +#define ActDowShaCtr (ActDowAdmDocCtr + 19) -#define ActChgToSeeDocDeg (ActChgWeiRubCri + 108) -#define ActSeeDocDeg (ActChgWeiRubCri + 109) -#define ActExpSeeDocDeg (ActChgWeiRubCri + 110) -#define ActConSeeDocDeg (ActChgWeiRubCri + 111) -#define ActZIPSeeDocDeg (ActChgWeiRubCri + 112) -#define ActReqDatSeeDocDeg (ActChgWeiRubCri + 113) -#define ActDowSeeDocDeg (ActChgWeiRubCri + 114) -#define ActChgToAdmDocDeg (ActChgWeiRubCri + 115) -#define ActAdmDocDeg (ActChgWeiRubCri + 116) -#define ActReqRemFilDocDeg (ActChgWeiRubCri + 117) -#define ActRemFilDocDeg (ActChgWeiRubCri + 118) -#define ActRemFolDocDeg (ActChgWeiRubCri + 119) -#define ActCopDocDeg (ActChgWeiRubCri + 120) -#define ActPasDocDeg (ActChgWeiRubCri + 121) -#define ActRemTreDocDeg (ActChgWeiRubCri + 122) -#define ActFrmCreDocDeg (ActChgWeiRubCri + 123) -#define ActCreFolDocDeg (ActChgWeiRubCri + 124) -#define ActCreLnkDocDeg (ActChgWeiRubCri + 125) -#define ActRenFolDocDeg (ActChgWeiRubCri + 126) -#define ActRcvFilDocDegDZ (ActChgWeiRubCri + 127) -#define ActRcvFilDocDegCla (ActChgWeiRubCri + 128) -#define ActExpAdmDocDeg (ActChgWeiRubCri + 129) -#define ActConAdmDocDeg (ActChgWeiRubCri + 130) -#define ActZIPAdmDocDeg (ActChgWeiRubCri + 131) -#define ActUnhDocDeg (ActChgWeiRubCri + 132) -#define ActHidDocDeg (ActChgWeiRubCri + 133) -#define ActReqDatAdmDocDeg (ActChgWeiRubCri + 134) -#define ActChgDatAdmDocDeg (ActChgWeiRubCri + 135) -#define ActDowAdmDocDeg (ActChgWeiRubCri + 136) +// Deocuments of degree +#define ActSeeAdmDocDeg (ActDowShaCtr + 1) +#define ActChgToSeeDocDeg (ActDowShaCtr + 2) +#define ActSeeDocDeg (ActDowShaCtr + 3) +#define ActExpSeeDocDeg (ActDowShaCtr + 4) +#define ActConSeeDocDeg (ActDowShaCtr + 5) +#define ActZIPSeeDocDeg (ActDowShaCtr + 6) +#define ActReqDatSeeDocDeg (ActDowShaCtr + 7) +#define ActDowSeeDocDeg (ActDowShaCtr + 8) +#define ActChgToAdmDocDeg (ActDowShaCtr + 9) +#define ActAdmDocDeg (ActDowShaCtr + 10) +#define ActReqRemFilDocDeg (ActDowShaCtr + 11) +#define ActRemFilDocDeg (ActDowShaCtr + 12) +#define ActRemFolDocDeg (ActDowShaCtr + 13) +#define ActCopDocDeg (ActDowShaCtr + 14) +#define ActPasDocDeg (ActDowShaCtr + 15) +#define ActRemTreDocDeg (ActDowShaCtr + 16) +#define ActFrmCreDocDeg (ActDowShaCtr + 17) +#define ActCreFolDocDeg (ActDowShaCtr + 18) +#define ActCreLnkDocDeg (ActDowShaCtr + 19) +#define ActRenFolDocDeg (ActDowShaCtr + 20) +#define ActRcvFilDocDegDZ (ActDowShaCtr + 21) +#define ActRcvFilDocDegCla (ActDowShaCtr + 22) +#define ActExpAdmDocDeg (ActDowShaCtr + 23) +#define ActConAdmDocDeg (ActDowShaCtr + 24) +#define ActZIPAdmDocDeg (ActDowShaCtr + 25) +#define ActUnhDocDeg (ActDowShaCtr + 26) +#define ActHidDocDeg (ActDowShaCtr + 27) +#define ActReqDatAdmDocDeg (ActDowShaCtr + 28) +#define ActChgDatAdmDocDeg (ActDowShaCtr + 29) +#define ActDowAdmDocDeg (ActDowShaCtr + 30) -#define ActReqRemFilShaDeg (ActChgWeiRubCri + 137) -#define ActRemFilShaDeg (ActChgWeiRubCri + 138) -#define ActRemFolShaDeg (ActChgWeiRubCri + 139) -#define ActCopShaDeg (ActChgWeiRubCri + 140) -#define ActPasShaDeg (ActChgWeiRubCri + 141) -#define ActRemTreShaDeg (ActChgWeiRubCri + 142) -#define ActFrmCreShaDeg (ActChgWeiRubCri + 143) -#define ActCreFolShaDeg (ActChgWeiRubCri + 144) -#define ActCreLnkShaDeg (ActChgWeiRubCri + 145) -#define ActRenFolShaDeg (ActChgWeiRubCri + 146) -#define ActRcvFilShaDegDZ (ActChgWeiRubCri + 147) -#define ActRcvFilShaDegCla (ActChgWeiRubCri + 148) -#define ActExpShaDeg (ActChgWeiRubCri + 149) -#define ActConShaDeg (ActChgWeiRubCri + 150) -#define ActZIPShaDeg (ActChgWeiRubCri + 151) -#define ActReqDatShaDeg (ActChgWeiRubCri + 152) -#define ActChgDatShaDeg (ActChgWeiRubCri + 153) -#define ActDowShaDeg (ActChgWeiRubCri + 154) +// Shared files of degree +#define ActAdmShaDeg (ActDowAdmDocDeg + 1) +#define ActReqRemFilShaDeg (ActDowAdmDocDeg + 2) +#define ActRemFilShaDeg (ActDowAdmDocDeg + 3) +#define ActRemFolShaDeg (ActDowAdmDocDeg + 4) +#define ActCopShaDeg (ActDowAdmDocDeg + 5) +#define ActPasShaDeg (ActDowAdmDocDeg + 6) +#define ActRemTreShaDeg (ActDowAdmDocDeg + 7) +#define ActFrmCreShaDeg (ActDowAdmDocDeg + 8) +#define ActCreFolShaDeg (ActDowAdmDocDeg + 9) +#define ActCreLnkShaDeg (ActDowAdmDocDeg + 10) +#define ActRenFolShaDeg (ActDowAdmDocDeg + 11) +#define ActRcvFilShaDegDZ (ActDowAdmDocDeg + 12) +#define ActRcvFilShaDegCla (ActDowAdmDocDeg + 13) +#define ActExpShaDeg (ActDowAdmDocDeg + 14) +#define ActConShaDeg (ActDowAdmDocDeg + 15) +#define ActZIPShaDeg (ActDowAdmDocDeg + 16) +#define ActReqDatShaDeg (ActDowAdmDocDeg + 17) +#define ActChgDatShaDeg (ActDowAdmDocDeg + 18) +#define ActDowShaDeg (ActDowAdmDocDeg + 19) -#define ActChgToSeeDocCrs (ActChgWeiRubCri + 155) -#define ActSeeDocCrs (ActChgWeiRubCri + 156) -#define ActExpSeeDocCrs (ActChgWeiRubCri + 157) -#define ActConSeeDocCrs (ActChgWeiRubCri + 158) -#define ActZIPSeeDocCrs (ActChgWeiRubCri + 159) -#define ActReqDatSeeDocCrs (ActChgWeiRubCri + 160) -#define ActReqLnkSeeDocCrs (ActChgWeiRubCri + 161) -#define ActDowSeeDocCrs (ActChgWeiRubCri + 162) +// Documents of course +#define ActSeeAdmDocCrsGrp (ActDowShaDeg + 1) +#define ActChgToSeeDocCrs (ActDowShaDeg + 2) +#define ActSeeDocCrs (ActDowShaDeg + 3) +#define ActExpSeeDocCrs (ActDowShaDeg + 4) +#define ActConSeeDocCrs (ActDowShaDeg + 5) +#define ActZIPSeeDocCrs (ActDowShaDeg + 6) +#define ActReqDatSeeDocCrs (ActDowShaDeg + 7) +#define ActReqLnkSeeDocCrs (ActDowShaDeg + 8) +#define ActDowSeeDocCrs (ActDowShaDeg + 9) +#define ActSeeDocGrp (ActDowShaDeg + 10) +#define ActExpSeeDocGrp (ActDowShaDeg + 11) +#define ActConSeeDocGrp (ActDowShaDeg + 12) +#define ActZIPSeeDocGrp (ActDowShaDeg + 13) +#define ActReqDatSeeDocGrp (ActDowShaDeg + 14) +#define ActDowSeeDocGrp (ActDowShaDeg + 15) +#define ActChgToAdmDocCrs (ActDowShaDeg + 16) +#define ActAdmDocCrs (ActDowShaDeg + 17) +#define ActReqRemFilDocCrs (ActDowShaDeg + 18) +#define ActRemFilDocCrs (ActDowShaDeg + 19) +#define ActRemFolDocCrs (ActDowShaDeg + 20) +#define ActCopDocCrs (ActDowShaDeg + 21) +#define ActPasDocCrs (ActDowShaDeg + 22) +#define ActRemTreDocCrs (ActDowShaDeg + 23) +#define ActFrmCreDocCrs (ActDowShaDeg + 24) +#define ActCreFolDocCrs (ActDowShaDeg + 25) +#define ActCreLnkDocCrs (ActDowShaDeg + 26) +#define ActRenFolDocCrs (ActDowShaDeg + 27) +#define ActRcvFilDocCrsDZ (ActDowShaDeg + 28) +#define ActRcvFilDocCrsCla (ActDowShaDeg + 29) +#define ActExpAdmDocCrs (ActDowShaDeg + 30) +#define ActConAdmDocCrs (ActDowShaDeg + 31) +#define ActZIPAdmDocCrs (ActDowShaDeg + 32) +#define ActUnhDocCrs (ActDowShaDeg + 33) +#define ActHidDocCrs (ActDowShaDeg + 34) +#define ActReqDatAdmDocCrs (ActDowShaDeg + 35) +#define ActChgDatAdmDocCrs (ActDowShaDeg + 36) +#define ActReqLnkAdmDocCrs (ActDowShaDeg + 37) +#define ActDowAdmDocCrs (ActDowShaDeg + 38) +#define ActAdmDocGrp (ActDowShaDeg + 39) +#define ActReqRemFilDocGrp (ActDowShaDeg + 40) +#define ActRemFilDocGrp (ActDowShaDeg + 41) +#define ActRemFolDocGrp (ActDowShaDeg + 42) +#define ActCopDocGrp (ActDowShaDeg + 43) +#define ActPasDocGrp (ActDowShaDeg + 44) +#define ActRemTreDocGrp (ActDowShaDeg + 45) +#define ActFrmCreDocGrp (ActDowShaDeg + 46) +#define ActCreFolDocGrp (ActDowShaDeg + 47) +#define ActCreLnkDocGrp (ActDowShaDeg + 48) +#define ActRenFolDocGrp (ActDowShaDeg + 49) +#define ActRcvFilDocGrpDZ (ActDowShaDeg + 50) +#define ActRcvFilDocGrpCla (ActDowShaDeg + 51) +#define ActExpAdmDocGrp (ActDowShaDeg + 52) +#define ActConAdmDocGrp (ActDowShaDeg + 53) +#define ActZIPAdmDocGrp (ActDowShaDeg + 54) +#define ActUnhDocGrp (ActDowShaDeg + 55) +#define ActHidDocGrp (ActDowShaDeg + 56) +#define ActReqDatAdmDocGrp (ActDowShaDeg + 57) +#define ActChgDatAdmDocGrp (ActDowShaDeg + 58) +#define ActDowAdmDocGrp (ActDowShaDeg + 59) -#define ActSeeDocGrp (ActChgWeiRubCri + 163) -#define ActExpSeeDocGrp (ActChgWeiRubCri + 164) -#define ActConSeeDocGrp (ActChgWeiRubCri + 165) -#define ActZIPSeeDocGrp (ActChgWeiRubCri + 166) -#define ActReqDatSeeDocGrp (ActChgWeiRubCri + 167) -#define ActDowSeeDocGrp (ActChgWeiRubCri + 168) +// Private documents for course teachers +#define ActAdmTchCrsGrp (ActDowAdmDocGrp + 1) +#define ActChgToAdmTch (ActDowAdmDocGrp + 2) +#define ActAdmTchCrs (ActDowAdmDocGrp + 3) +#define ActReqRemFilTchCrs (ActDowAdmDocGrp + 4) +#define ActRemFilTchCrs (ActDowAdmDocGrp + 5) +#define ActRemFolTchCrs (ActDowAdmDocGrp + 6) +#define ActCopTchCrs (ActDowAdmDocGrp + 7) +#define ActPasTchCrs (ActDowAdmDocGrp + 8) +#define ActRemTreTchCrs (ActDowAdmDocGrp + 9) +#define ActFrmCreTchCrs (ActDowAdmDocGrp + 10) +#define ActCreFolTchCrs (ActDowAdmDocGrp + 11) +#define ActCreLnkTchCrs (ActDowAdmDocGrp + 12) +#define ActRenFolTchCrs (ActDowAdmDocGrp + 13) +#define ActRcvFilTchCrsDZ (ActDowAdmDocGrp + 14) +#define ActRcvFilTchCrsCla (ActDowAdmDocGrp + 15) +#define ActExpTchCrs (ActDowAdmDocGrp + 16) +#define ActConTchCrs (ActDowAdmDocGrp + 17) +#define ActZIPTchCrs (ActDowAdmDocGrp + 18) +#define ActReqDatTchCrs (ActDowAdmDocGrp + 19) +#define ActChgDatTchCrs (ActDowAdmDocGrp + 20) +#define ActDowTchCrs (ActDowAdmDocGrp + 21) +#define ActAdmTchGrp (ActDowAdmDocGrp + 22) +#define ActReqRemFilTchGrp (ActDowAdmDocGrp + 23) +#define ActRemFilTchGrp (ActDowAdmDocGrp + 24) +#define ActRemFolTchGrp (ActDowAdmDocGrp + 25) +#define ActCopTchGrp (ActDowAdmDocGrp + 26) +#define ActPasTchGrp (ActDowAdmDocGrp + 27) +#define ActRemTreTchGrp (ActDowAdmDocGrp + 28) +#define ActFrmCreTchGrp (ActDowAdmDocGrp + 29) +#define ActCreFolTchGrp (ActDowAdmDocGrp + 30) +#define ActCreLnkTchGrp (ActDowAdmDocGrp + 31) +#define ActRenFolTchGrp (ActDowAdmDocGrp + 32) +#define ActRcvFilTchGrpDZ (ActDowAdmDocGrp + 33) +#define ActRcvFilTchGrpCla (ActDowAdmDocGrp + 34) +#define ActExpTchGrp (ActDowAdmDocGrp + 35) +#define ActConTchGrp (ActDowAdmDocGrp + 36) +#define ActZIPTchGrp (ActDowAdmDocGrp + 37) +#define ActReqDatTchGrp (ActDowAdmDocGrp + 38) +#define ActChgDatTchGrp (ActDowAdmDocGrp + 39) +#define ActDowTchGrp (ActDowAdmDocGrp + 40) -#define ActChgToAdmDocCrs (ActChgWeiRubCri + 169) -#define ActAdmDocCrs (ActChgWeiRubCri + 170) -#define ActReqRemFilDocCrs (ActChgWeiRubCri + 171) -#define ActRemFilDocCrs (ActChgWeiRubCri + 172) -#define ActRemFolDocCrs (ActChgWeiRubCri + 173) -#define ActCopDocCrs (ActChgWeiRubCri + 174) -#define ActPasDocCrs (ActChgWeiRubCri + 175) -#define ActRemTreDocCrs (ActChgWeiRubCri + 176) -#define ActFrmCreDocCrs (ActChgWeiRubCri + 177) -#define ActCreFolDocCrs (ActChgWeiRubCri + 178) -#define ActCreLnkDocCrs (ActChgWeiRubCri + 179) -#define ActRenFolDocCrs (ActChgWeiRubCri + 180) -#define ActRcvFilDocCrsDZ (ActChgWeiRubCri + 181) -#define ActRcvFilDocCrsCla (ActChgWeiRubCri + 182) -#define ActExpAdmDocCrs (ActChgWeiRubCri + 183) -#define ActConAdmDocCrs (ActChgWeiRubCri + 184) -#define ActZIPAdmDocCrs (ActChgWeiRubCri + 185) -#define ActUnhDocCrs (ActChgWeiRubCri + 186) -#define ActHidDocCrs (ActChgWeiRubCri + 187) -#define ActReqDatAdmDocCrs (ActChgWeiRubCri + 188) -#define ActChgDatAdmDocCrs (ActChgWeiRubCri + 189) -#define ActReqLnkAdmDocCrs (ActChgWeiRubCri + 190) -#define ActDowAdmDocCrs (ActChgWeiRubCri + 191) +// Shared files of course +#define ActAdmShaCrsGrp (ActDowTchGrp + 1) +#define ActChgToAdmSha (ActDowTchGrp + 2) +#define ActAdmShaCrs (ActDowTchGrp + 3) +#define ActReqRemFilShaCrs (ActDowTchGrp + 4) +#define ActRemFilShaCrs (ActDowTchGrp + 5) +#define ActRemFolShaCrs (ActDowTchGrp + 6) +#define ActCopShaCrs (ActDowTchGrp + 7) +#define ActPasShaCrs (ActDowTchGrp + 8) +#define ActRemTreShaCrs (ActDowTchGrp + 9) +#define ActFrmCreShaCrs (ActDowTchGrp + 10) +#define ActCreFolShaCrs (ActDowTchGrp + 11) +#define ActCreLnkShaCrs (ActDowTchGrp + 12) +#define ActRenFolShaCrs (ActDowTchGrp + 13) +#define ActRcvFilShaCrsDZ (ActDowTchGrp + 14) +#define ActRcvFilShaCrsCla (ActDowTchGrp + 15) +#define ActExpShaCrs (ActDowTchGrp + 16) +#define ActConShaCrs (ActDowTchGrp + 17) +#define ActZIPShaCrs (ActDowTchGrp + 18) +#define ActReqDatShaCrs (ActDowTchGrp + 19) +#define ActChgDatShaCrs (ActDowTchGrp + 20) +#define ActDowShaCrs (ActDowTchGrp + 21) +#define ActAdmShaGrp (ActDowTchGrp + 22) +#define ActReqRemFilShaGrp (ActDowTchGrp + 23) +#define ActRemFilShaGrp (ActDowTchGrp + 24) +#define ActRemFolShaGrp (ActDowTchGrp + 25) +#define ActCopShaGrp (ActDowTchGrp + 26) +#define ActPasShaGrp (ActDowTchGrp + 27) +#define ActRemTreShaGrp (ActDowTchGrp + 28) +#define ActFrmCreShaGrp (ActDowTchGrp + 29) +#define ActCreFolShaGrp (ActDowTchGrp + 30) +#define ActCreLnkShaGrp (ActDowTchGrp + 31) +#define ActRenFolShaGrp (ActDowTchGrp + 32) +#define ActRcvFilShaGrpDZ (ActDowTchGrp + 33) +#define ActRcvFilShaGrpCla (ActDowTchGrp + 34) +#define ActExpShaGrp (ActDowTchGrp + 35) +#define ActConShaGrp (ActDowTchGrp + 36) +#define ActZIPShaGrp (ActDowTchGrp + 37) +#define ActReqDatShaGrp (ActDowTchGrp + 38) +#define ActChgDatShaGrp (ActDowTchGrp + 39) +#define ActDowShaGrp (ActDowTchGrp + 40) -#define ActAdmDocGrp (ActChgWeiRubCri + 192) -#define ActReqRemFilDocGrp (ActChgWeiRubCri + 193) -#define ActRemFilDocGrp (ActChgWeiRubCri + 194) -#define ActRemFolDocGrp (ActChgWeiRubCri + 195) -#define ActCopDocGrp (ActChgWeiRubCri + 196) -#define ActPasDocGrp (ActChgWeiRubCri + 197) -#define ActRemTreDocGrp (ActChgWeiRubCri + 198) -#define ActFrmCreDocGrp (ActChgWeiRubCri + 199) -#define ActCreFolDocGrp (ActChgWeiRubCri + 200) -#define ActCreLnkDocGrp (ActChgWeiRubCri + 201) -#define ActRenFolDocGrp (ActChgWeiRubCri + 202) -#define ActRcvFilDocGrpDZ (ActChgWeiRubCri + 203) -#define ActRcvFilDocGrpCla (ActChgWeiRubCri + 204) -#define ActExpAdmDocGrp (ActChgWeiRubCri + 205) -#define ActConAdmDocGrp (ActChgWeiRubCri + 206) -#define ActZIPAdmDocGrp (ActChgWeiRubCri + 207) -#define ActUnhDocGrp (ActChgWeiRubCri + 208) -#define ActHidDocGrp (ActChgWeiRubCri + 209) -#define ActReqDatAdmDocGrp (ActChgWeiRubCri + 210) -#define ActChgDatAdmDocGrp (ActChgWeiRubCri + 211) -#define ActDowAdmDocGrp (ActChgWeiRubCri + 212) +// Assignments and works of user +#define ActAdmAsgWrkUsr (ActDowShaGrp + 1) +#define ActReqRemFilAsgUsr (ActDowShaGrp + 2) +#define ActRemFilAsgUsr (ActDowShaGrp + 3) +#define ActRemFolAsgUsr (ActDowShaGrp + 4) +#define ActCopAsgUsr (ActDowShaGrp + 5) +#define ActPasAsgUsr (ActDowShaGrp + 6) +#define ActRemTreAsgUsr (ActDowShaGrp + 7) +#define ActFrmCreAsgUsr (ActDowShaGrp + 8) +#define ActCreFolAsgUsr (ActDowShaGrp + 9) +#define ActCreLnkAsgUsr (ActDowShaGrp + 10) +#define ActRenFolAsgUsr (ActDowShaGrp + 11) +#define ActRcvFilAsgUsrDZ (ActDowShaGrp + 12) +#define ActRcvFilAsgUsrCla (ActDowShaGrp + 13) +#define ActExpAsgUsr (ActDowShaGrp + 14) +#define ActConAsgUsr (ActDowShaGrp + 15) +#define ActZIPAsgUsr (ActDowShaGrp + 16) +#define ActReqDatAsgUsr (ActDowShaGrp + 17) +#define ActChgDatAsgUsr (ActDowShaGrp + 18) +#define ActDowAsgUsr (ActDowShaGrp + 19) +#define ActReqRemFilWrkUsr (ActDowShaGrp + 20) +#define ActRemFilWrkUsr (ActDowShaGrp + 21) +#define ActRemFolWrkUsr (ActDowShaGrp + 22) +#define ActCopWrkUsr (ActDowShaGrp + 23) +#define ActPasWrkUsr (ActDowShaGrp + 24) +#define ActRemTreWrkUsr (ActDowShaGrp + 25) +#define ActFrmCreWrkUsr (ActDowShaGrp + 26) +#define ActCreFolWrkUsr (ActDowShaGrp + 27) +#define ActCreLnkWrkUsr (ActDowShaGrp + 28) +#define ActRenFolWrkUsr (ActDowShaGrp + 29) +#define ActRcvFilWrkUsrDZ (ActDowShaGrp + 30) +#define ActRcvFilWrkUsrCla (ActDowShaGrp + 31) +#define ActExpWrkUsr (ActDowShaGrp + 32) +#define ActConWrkUsr (ActDowShaGrp + 33) +#define ActZIPWrkUsr (ActDowShaGrp + 34) +#define ActReqDatWrkUsr (ActDowShaGrp + 35) +#define ActChgDatWrkUsr (ActDowShaGrp + 36) +#define ActDowWrkUsr (ActDowShaGrp + 37) -#define ActChgToAdmTch (ActChgWeiRubCri + 213) +// Assignments and works of course +#define ActReqAsgWrkCrs (ActDowWrkUsr + 1) +#define ActAdmAsgWrkCrs (ActDowWrkUsr + 2) +#define ActReqRemFilAsgCrs (ActDowWrkUsr + 3) +#define ActRemFilAsgCrs (ActDowWrkUsr + 4) +#define ActRemFolAsgCrs (ActDowWrkUsr + 5) +#define ActCopAsgCrs (ActDowWrkUsr + 6) +#define ActPasAsgCrs (ActDowWrkUsr + 7) +#define ActRemTreAsgCrs (ActDowWrkUsr + 8) +#define ActFrmCreAsgCrs (ActDowWrkUsr + 9) +#define ActCreFolAsgCrs (ActDowWrkUsr + 10) +#define ActCreLnkAsgCrs (ActDowWrkUsr + 11) +#define ActRenFolAsgCrs (ActDowWrkUsr + 12) +#define ActRcvFilAsgCrsDZ (ActDowWrkUsr + 13) +#define ActRcvFilAsgCrsCla (ActDowWrkUsr + 14) +#define ActExpAsgCrs (ActDowWrkUsr + 15) +#define ActConAsgCrs (ActDowWrkUsr + 16) +#define ActZIPAsgCrs (ActDowWrkUsr + 17) +#define ActReqDatAsgCrs (ActDowWrkUsr + 18) +#define ActChgDatAsgCrs (ActDowWrkUsr + 19) +#define ActDowAsgCrs (ActDowWrkUsr + 20) +#define ActReqRemFilWrkCrs (ActDowWrkUsr + 21) +#define ActRemFilWrkCrs (ActDowWrkUsr + 22) +#define ActRemFolWrkCrs (ActDowWrkUsr + 23) +#define ActCopWrkCrs (ActDowWrkUsr + 24) +#define ActPasWrkCrs (ActDowWrkUsr + 25) +#define ActRemTreWrkCrs (ActDowWrkUsr + 26) +#define ActFrmCreWrkCrs (ActDowWrkUsr + 27) +#define ActCreFolWrkCrs (ActDowWrkUsr + 28) +#define ActCreLnkWrkCrs (ActDowWrkUsr + 29) +#define ActRenFolWrkCrs (ActDowWrkUsr + 30) +#define ActRcvFilWrkCrsDZ (ActDowWrkUsr + 31) +#define ActRcvFilWrkCrsCla (ActDowWrkUsr + 32) +#define ActExpWrkCrs (ActDowWrkUsr + 33) +#define ActConWrkCrs (ActDowWrkUsr + 34) +#define ActZIPWrkCrs (ActDowWrkUsr + 35) +#define ActReqDatWrkCrs (ActDowWrkUsr + 36) +#define ActChgDatWrkCrs (ActDowWrkUsr + 37) +#define ActDowWrkCrs (ActDowWrkUsr + 38) -#define ActAdmTchCrs (ActChgWeiRubCri + 214) -#define ActReqRemFilTchCrs (ActChgWeiRubCri + 215) -#define ActRemFilTchCrs (ActChgWeiRubCri + 216) -#define ActRemFolTchCrs (ActChgWeiRubCri + 217) -#define ActCopTchCrs (ActChgWeiRubCri + 218) -#define ActPasTchCrs (ActChgWeiRubCri + 219) -#define ActRemTreTchCrs (ActChgWeiRubCri + 220) -#define ActFrmCreTchCrs (ActChgWeiRubCri + 221) -#define ActCreFolTchCrs (ActChgWeiRubCri + 222) -#define ActCreLnkTchCrs (ActChgWeiRubCri + 223) -#define ActRenFolTchCrs (ActChgWeiRubCri + 224) -#define ActRcvFilTchCrsDZ (ActChgWeiRubCri + 225) -#define ActRcvFilTchCrsCla (ActChgWeiRubCri + 226) -#define ActExpTchCrs (ActChgWeiRubCri + 227) -#define ActConTchCrs (ActChgWeiRubCri + 228) -#define ActZIPTchCrs (ActChgWeiRubCri + 229) -#define ActReqDatTchCrs (ActChgWeiRubCri + 230) -#define ActChgDatTchCrs (ActChgWeiRubCri + 231) -#define ActDowTchCrs (ActChgWeiRubCri + 232) +// Marks +#define ActSeeAdmMrk (ActDowWrkCrs + 1) +#define ActChgToSeeMrk (ActDowWrkCrs + 2) +#define ActSeeMrkCrs (ActDowWrkCrs + 3) +#define ActExpSeeMrkCrs (ActDowWrkCrs + 4) +#define ActConSeeMrkCrs (ActDowWrkCrs + 5) +#define ActReqDatSeeMrkCrs (ActDowWrkCrs + 6) +#define ActReqLnkSeeMrkCrs (ActDowWrkCrs + 7) +#define ActSeeMyMrkCrs (ActDowWrkCrs + 8) +#define ActSeeMrkGrp (ActDowWrkCrs + 9) +#define ActExpSeeMrkGrp (ActDowWrkCrs + 10) +#define ActConSeeMrkGrp (ActDowWrkCrs + 11) +#define ActReqDatSeeMrkGrp (ActDowWrkCrs + 12) +#define ActSeeMyMrkGrp (ActDowWrkCrs + 13) +#define ActChgToAdmMrk (ActDowWrkCrs + 14) +#define ActAdmMrkCrs (ActDowWrkCrs + 15) +#define ActReqRemFilMrkCrs (ActDowWrkCrs + 16) +#define ActRemFilMrkCrs (ActDowWrkCrs + 17) +#define ActRemFolMrkCrs (ActDowWrkCrs + 18) +#define ActCopMrkCrs (ActDowWrkCrs + 19) +#define ActPasMrkCrs (ActDowWrkCrs + 20) +#define ActRemTreMrkCrs (ActDowWrkCrs + 21) +#define ActFrmCreMrkCrs (ActDowWrkCrs + 22) +#define ActCreFolMrkCrs (ActDowWrkCrs + 23) +#define ActRenFolMrkCrs (ActDowWrkCrs + 24) +#define ActRcvFilMrkCrsDZ (ActDowWrkCrs + 25) +#define ActRcvFilMrkCrsCla (ActDowWrkCrs + 26) +#define ActExpAdmMrkCrs (ActDowWrkCrs + 27) +#define ActConAdmMrkCrs (ActDowWrkCrs + 28) +#define ActZIPAdmMrkCrs (ActDowWrkCrs + 29) +#define ActUnhMrkCrs (ActDowWrkCrs + 30) +#define ActHidMrkCrs (ActDowWrkCrs + 31) +#define ActReqDatAdmMrkCrs (ActDowWrkCrs + 32) +#define ActChgDatAdmMrkCrs (ActDowWrkCrs + 33) +#define ActReqLnkAdmMrkCrs (ActDowWrkCrs + 34) +#define ActDowAdmMrkCrs (ActDowWrkCrs + 35) +#define ActChgNumRowHeaCrs (ActDowWrkCrs + 36) +#define ActChgNumRowFooCrs (ActDowWrkCrs + 37) +#define ActAdmMrkGrp (ActDowWrkCrs + 38) +#define ActReqRemFilMrkGrp (ActDowWrkCrs + 39) +#define ActRemFilMrkGrp (ActDowWrkCrs + 40) +#define ActRemFolMrkGrp (ActDowWrkCrs + 41) +#define ActCopMrkGrp (ActDowWrkCrs + 42) +#define ActPasMrkGrp (ActDowWrkCrs + 43) +#define ActRemTreMrkGrp (ActDowWrkCrs + 44) +#define ActFrmCreMrkGrp (ActDowWrkCrs + 45) +#define ActCreFolMrkGrp (ActDowWrkCrs + 46) +#define ActRenFolMrkGrp (ActDowWrkCrs + 47) +#define ActRcvFilMrkGrpDZ (ActDowWrkCrs + 48) +#define ActRcvFilMrkGrpCla (ActDowWrkCrs + 49) +#define ActExpAdmMrkGrp (ActDowWrkCrs + 50) +#define ActConAdmMrkGrp (ActDowWrkCrs + 51) +#define ActZIPAdmMrkGrp (ActDowWrkCrs + 52) +#define ActUnhMrkGrp (ActDowWrkCrs + 53) +#define ActHidMrkGrp (ActDowWrkCrs + 54) +#define ActReqDatAdmMrkGrp (ActDowWrkCrs + 55) +#define ActChgDatAdmMrkGrp (ActDowWrkCrs + 56) +#define ActDowAdmMrkGrp (ActDowWrkCrs + 57) +#define ActChgNumRowHeaGrp (ActDowWrkCrs + 58) +#define ActChgNumRowFooGrp (ActDowWrkCrs + 59) -#define ActAdmTchGrp (ActChgWeiRubCri + 233) -#define ActReqRemFilTchGrp (ActChgWeiRubCri + 234) -#define ActRemFilTchGrp (ActChgWeiRubCri + 235) -#define ActRemFolTchGrp (ActChgWeiRubCri + 236) -#define ActCopTchGrp (ActChgWeiRubCri + 237) -#define ActPasTchGrp (ActChgWeiRubCri + 238) -#define ActRemTreTchGrp (ActChgWeiRubCri + 239) -#define ActFrmCreTchGrp (ActChgWeiRubCri + 240) -#define ActCreFolTchGrp (ActChgWeiRubCri + 241) -#define ActCreLnkTchGrp (ActChgWeiRubCri + 242) -#define ActRenFolTchGrp (ActChgWeiRubCri + 243) -#define ActRcvFilTchGrpDZ (ActChgWeiRubCri + 244) -#define ActRcvFilTchGrpCla (ActChgWeiRubCri + 245) -#define ActExpTchGrp (ActChgWeiRubCri + 246) -#define ActConTchGrp (ActChgWeiRubCri + 247) -#define ActZIPTchGrp (ActChgWeiRubCri + 248) -#define ActReqDatTchGrp (ActChgWeiRubCri + 249) -#define ActChgDatTchGrp (ActChgWeiRubCri + 250) -#define ActDowTchGrp (ActChgWeiRubCri + 251) - -#define ActChgToAdmSha (ActChgWeiRubCri + 252) - -#define ActAdmShaCrs (ActChgWeiRubCri + 253) -#define ActReqRemFilShaCrs (ActChgWeiRubCri + 254) -#define ActRemFilShaCrs (ActChgWeiRubCri + 255) -#define ActRemFolShaCrs (ActChgWeiRubCri + 256) -#define ActCopShaCrs (ActChgWeiRubCri + 257) -#define ActPasShaCrs (ActChgWeiRubCri + 258) -#define ActRemTreShaCrs (ActChgWeiRubCri + 259) -#define ActFrmCreShaCrs (ActChgWeiRubCri + 260) -#define ActCreFolShaCrs (ActChgWeiRubCri + 261) -#define ActCreLnkShaCrs (ActChgWeiRubCri + 262) -#define ActRenFolShaCrs (ActChgWeiRubCri + 263) -#define ActRcvFilShaCrsDZ (ActChgWeiRubCri + 264) -#define ActRcvFilShaCrsCla (ActChgWeiRubCri + 265) -#define ActExpShaCrs (ActChgWeiRubCri + 266) -#define ActConShaCrs (ActChgWeiRubCri + 267) -#define ActZIPShaCrs (ActChgWeiRubCri + 268) -#define ActReqDatShaCrs (ActChgWeiRubCri + 269) -#define ActChgDatShaCrs (ActChgWeiRubCri + 270) -#define ActDowShaCrs (ActChgWeiRubCri + 271) - -#define ActAdmShaGrp (ActChgWeiRubCri + 272) -#define ActReqRemFilShaGrp (ActChgWeiRubCri + 273) -#define ActRemFilShaGrp (ActChgWeiRubCri + 274) -#define ActRemFolShaGrp (ActChgWeiRubCri + 275) -#define ActCopShaGrp (ActChgWeiRubCri + 276) -#define ActPasShaGrp (ActChgWeiRubCri + 277) -#define ActRemTreShaGrp (ActChgWeiRubCri + 278) -#define ActFrmCreShaGrp (ActChgWeiRubCri + 279) -#define ActCreFolShaGrp (ActChgWeiRubCri + 280) -#define ActCreLnkShaGrp (ActChgWeiRubCri + 281) -#define ActRenFolShaGrp (ActChgWeiRubCri + 282) -#define ActRcvFilShaGrpDZ (ActChgWeiRubCri + 283) -#define ActRcvFilShaGrpCla (ActChgWeiRubCri + 284) -#define ActExpShaGrp (ActChgWeiRubCri + 285) -#define ActConShaGrp (ActChgWeiRubCri + 286) -#define ActZIPShaGrp (ActChgWeiRubCri + 287) -#define ActReqDatShaGrp (ActChgWeiRubCri + 288) -#define ActChgDatShaGrp (ActChgWeiRubCri + 289) -#define ActDowShaGrp (ActChgWeiRubCri + 290) - -#define ActAdmAsgWrkCrs (ActChgWeiRubCri + 291) - -#define ActReqRemFilAsgUsr (ActChgWeiRubCri + 292) -#define ActRemFilAsgUsr (ActChgWeiRubCri + 293) -#define ActRemFolAsgUsr (ActChgWeiRubCri + 294) -#define ActCopAsgUsr (ActChgWeiRubCri + 295) -#define ActPasAsgUsr (ActChgWeiRubCri + 296) -#define ActRemTreAsgUsr (ActChgWeiRubCri + 297) -#define ActFrmCreAsgUsr (ActChgWeiRubCri + 298) -#define ActCreFolAsgUsr (ActChgWeiRubCri + 299) -#define ActCreLnkAsgUsr (ActChgWeiRubCri + 300) -#define ActRenFolAsgUsr (ActChgWeiRubCri + 301) -#define ActRcvFilAsgUsrDZ (ActChgWeiRubCri + 302) -#define ActRcvFilAsgUsrCla (ActChgWeiRubCri + 303) -#define ActExpAsgUsr (ActChgWeiRubCri + 304) -#define ActConAsgUsr (ActChgWeiRubCri + 305) -#define ActZIPAsgUsr (ActChgWeiRubCri + 306) -#define ActReqDatAsgUsr (ActChgWeiRubCri + 307) -#define ActChgDatAsgUsr (ActChgWeiRubCri + 308) -#define ActDowAsgUsr (ActChgWeiRubCri + 309) - -#define ActReqRemFilWrkUsr (ActChgWeiRubCri + 310) -#define ActRemFilWrkUsr (ActChgWeiRubCri + 311) -#define ActRemFolWrkUsr (ActChgWeiRubCri + 312) -#define ActCopWrkUsr (ActChgWeiRubCri + 313) -#define ActPasWrkUsr (ActChgWeiRubCri + 314) -#define ActRemTreWrkUsr (ActChgWeiRubCri + 315) -#define ActFrmCreWrkUsr (ActChgWeiRubCri + 316) -#define ActCreFolWrkUsr (ActChgWeiRubCri + 317) -#define ActCreLnkWrkUsr (ActChgWeiRubCri + 318) -#define ActRenFolWrkUsr (ActChgWeiRubCri + 319) -#define ActRcvFilWrkUsrDZ (ActChgWeiRubCri + 320) -#define ActRcvFilWrkUsrCla (ActChgWeiRubCri + 321) -#define ActExpWrkUsr (ActChgWeiRubCri + 322) -#define ActConWrkUsr (ActChgWeiRubCri + 323) -#define ActZIPWrkUsr (ActChgWeiRubCri + 324) -#define ActReqDatWrkUsr (ActChgWeiRubCri + 325) -#define ActChgDatWrkUsr (ActChgWeiRubCri + 326) -#define ActDowWrkUsr (ActChgWeiRubCri + 327) - -#define ActReqRemFilAsgCrs (ActChgWeiRubCri + 328) -#define ActRemFilAsgCrs (ActChgWeiRubCri + 329) -#define ActRemFolAsgCrs (ActChgWeiRubCri + 330) -#define ActCopAsgCrs (ActChgWeiRubCri + 331) -#define ActPasAsgCrs (ActChgWeiRubCri + 332) -#define ActRemTreAsgCrs (ActChgWeiRubCri + 333) -#define ActFrmCreAsgCrs (ActChgWeiRubCri + 334) -#define ActCreFolAsgCrs (ActChgWeiRubCri + 335) -#define ActCreLnkAsgCrs (ActChgWeiRubCri + 336) -#define ActRenFolAsgCrs (ActChgWeiRubCri + 337) -#define ActRcvFilAsgCrsDZ (ActChgWeiRubCri + 338) -#define ActRcvFilAsgCrsCla (ActChgWeiRubCri + 339) -#define ActExpAsgCrs (ActChgWeiRubCri + 340) -#define ActConAsgCrs (ActChgWeiRubCri + 341) -#define ActZIPAsgCrs (ActChgWeiRubCri + 342) -#define ActReqDatAsgCrs (ActChgWeiRubCri + 343) -#define ActChgDatAsgCrs (ActChgWeiRubCri + 344) -#define ActDowAsgCrs (ActChgWeiRubCri + 345) - -#define ActReqRemFilWrkCrs (ActChgWeiRubCri + 346) -#define ActRemFilWrkCrs (ActChgWeiRubCri + 347) -#define ActRemFolWrkCrs (ActChgWeiRubCri + 348) -#define ActCopWrkCrs (ActChgWeiRubCri + 349) -#define ActPasWrkCrs (ActChgWeiRubCri + 350) -#define ActRemTreWrkCrs (ActChgWeiRubCri + 351) -#define ActFrmCreWrkCrs (ActChgWeiRubCri + 352) -#define ActCreFolWrkCrs (ActChgWeiRubCri + 353) -#define ActCreLnkWrkCrs (ActChgWeiRubCri + 354) -#define ActRenFolWrkCrs (ActChgWeiRubCri + 355) -#define ActRcvFilWrkCrsDZ (ActChgWeiRubCri + 356) -#define ActRcvFilWrkCrsCla (ActChgWeiRubCri + 357) -#define ActExpWrkCrs (ActChgWeiRubCri + 358) -#define ActConWrkCrs (ActChgWeiRubCri + 359) -#define ActZIPWrkCrs (ActChgWeiRubCri + 360) -#define ActReqDatWrkCrs (ActChgWeiRubCri + 361) -#define ActChgDatWrkCrs (ActChgWeiRubCri + 362) -#define ActDowWrkCrs (ActChgWeiRubCri + 363) - -#define ActChgToSeeMrk (ActChgWeiRubCri + 364) - -#define ActSeeMrkCrs (ActChgWeiRubCri + 365) -#define ActExpSeeMrkCrs (ActChgWeiRubCri + 366) -#define ActConSeeMrkCrs (ActChgWeiRubCri + 367) -#define ActReqDatSeeMrkCrs (ActChgWeiRubCri + 368) -#define ActReqLnkSeeMrkCrs (ActChgWeiRubCri + 369) -#define ActSeeMyMrkCrs (ActChgWeiRubCri + 370) - -#define ActSeeMrkGrp (ActChgWeiRubCri + 371) -#define ActExpSeeMrkGrp (ActChgWeiRubCri + 372) -#define ActConSeeMrkGrp (ActChgWeiRubCri + 373) -#define ActReqDatSeeMrkGrp (ActChgWeiRubCri + 374) -#define ActSeeMyMrkGrp (ActChgWeiRubCri + 375) - -#define ActChgToAdmMrk (ActChgWeiRubCri + 376) - -#define ActAdmMrkCrs (ActChgWeiRubCri + 377) -#define ActReqRemFilMrkCrs (ActChgWeiRubCri + 378) -#define ActRemFilMrkCrs (ActChgWeiRubCri + 379) -#define ActRemFolMrkCrs (ActChgWeiRubCri + 380) -#define ActCopMrkCrs (ActChgWeiRubCri + 381) -#define ActPasMrkCrs (ActChgWeiRubCri + 382) -#define ActRemTreMrkCrs (ActChgWeiRubCri + 383) -#define ActFrmCreMrkCrs (ActChgWeiRubCri + 384) -#define ActCreFolMrkCrs (ActChgWeiRubCri + 385) -#define ActRenFolMrkCrs (ActChgWeiRubCri + 386) -#define ActRcvFilMrkCrsDZ (ActChgWeiRubCri + 387) -#define ActRcvFilMrkCrsCla (ActChgWeiRubCri + 388) -#define ActExpAdmMrkCrs (ActChgWeiRubCri + 389) -#define ActConAdmMrkCrs (ActChgWeiRubCri + 390) -#define ActZIPAdmMrkCrs (ActChgWeiRubCri + 391) -#define ActUnhMrkCrs (ActChgWeiRubCri + 392) -#define ActHidMrkCrs (ActChgWeiRubCri + 393) -#define ActReqDatAdmMrkCrs (ActChgWeiRubCri + 394) -#define ActChgDatAdmMrkCrs (ActChgWeiRubCri + 395) -#define ActReqLnkAdmMrkCrs (ActChgWeiRubCri + 396) -#define ActDowAdmMrkCrs (ActChgWeiRubCri + 397) -#define ActChgNumRowHeaCrs (ActChgWeiRubCri + 398) -#define ActChgNumRowFooCrs (ActChgWeiRubCri + 399) - -#define ActAdmMrkGrp (ActChgWeiRubCri + 400) -#define ActReqRemFilMrkGrp (ActChgWeiRubCri + 401) -#define ActRemFilMrkGrp (ActChgWeiRubCri + 402) -#define ActRemFolMrkGrp (ActChgWeiRubCri + 403) -#define ActCopMrkGrp (ActChgWeiRubCri + 404) -#define ActPasMrkGrp (ActChgWeiRubCri + 405) -#define ActRemTreMrkGrp (ActChgWeiRubCri + 406) -#define ActFrmCreMrkGrp (ActChgWeiRubCri + 407) -#define ActCreFolMrkGrp (ActChgWeiRubCri + 408) -#define ActRenFolMrkGrp (ActChgWeiRubCri + 409) -#define ActRcvFilMrkGrpDZ (ActChgWeiRubCri + 410) -#define ActRcvFilMrkGrpCla (ActChgWeiRubCri + 411) -#define ActExpAdmMrkGrp (ActChgWeiRubCri + 412) -#define ActConAdmMrkGrp (ActChgWeiRubCri + 413) -#define ActZIPAdmMrkGrp (ActChgWeiRubCri + 414) -#define ActUnhMrkGrp (ActChgWeiRubCri + 415) -#define ActHidMrkGrp (ActChgWeiRubCri + 416) -#define ActReqDatAdmMrkGrp (ActChgWeiRubCri + 417) -#define ActChgDatAdmMrkGrp (ActChgWeiRubCri + 418) -#define ActDowAdmMrkGrp (ActChgWeiRubCri + 419) -#define ActChgNumRowHeaGrp (ActChgWeiRubCri + 420) -#define ActChgNumRowFooGrp (ActChgWeiRubCri + 421) - -#define ActReqRemFilBrf (ActChgWeiRubCri + 422) -#define ActRemFilBrf (ActChgWeiRubCri + 423) -#define ActRemFolBrf (ActChgWeiRubCri + 424) -#define ActCopBrf (ActChgWeiRubCri + 425) -#define ActPasBrf (ActChgWeiRubCri + 426) -#define ActRemTreBrf (ActChgWeiRubCri + 427) -#define ActFrmCreBrf (ActChgWeiRubCri + 428) -#define ActCreFolBrf (ActChgWeiRubCri + 429) -#define ActCreLnkBrf (ActChgWeiRubCri + 430) -#define ActRenFolBrf (ActChgWeiRubCri + 431) -#define ActRcvFilBrfDZ (ActChgWeiRubCri + 432) -#define ActRcvFilBrfCla (ActChgWeiRubCri + 433) -#define ActExpBrf (ActChgWeiRubCri + 434) -#define ActConBrf (ActChgWeiRubCri + 435) -#define ActZIPBrf (ActChgWeiRubCri + 436) -#define ActReqDatBrf (ActChgWeiRubCri + 437) -#define ActChgDatBrf (ActChgWeiRubCri + 438) -#define ActDowBrf (ActChgWeiRubCri + 439) -#define ActReqRemOldBrf (ActChgWeiRubCri + 440) -#define ActRemOldBrf (ActChgWeiRubCri + 441) +// Briefcase +#define ActAdmBrf (ActChgNumRowFooGrp + 1) +#define ActReqRemFilBrf (ActChgNumRowFooGrp + 2) +#define ActRemFilBrf (ActChgNumRowFooGrp + 3) +#define ActRemFolBrf (ActChgNumRowFooGrp + 4) +#define ActCopBrf (ActChgNumRowFooGrp + 5) +#define ActPasBrf (ActChgNumRowFooGrp + 6) +#define ActRemTreBrf (ActChgNumRowFooGrp + 7) +#define ActFrmCreBrf (ActChgNumRowFooGrp + 8) +#define ActCreFolBrf (ActChgNumRowFooGrp + 9) +#define ActCreLnkBrf (ActChgNumRowFooGrp + 10) +#define ActRenFolBrf (ActChgNumRowFooGrp + 11) +#define ActRcvFilBrfDZ (ActChgNumRowFooGrp + 12) +#define ActRcvFilBrfCla (ActChgNumRowFooGrp + 13) +#define ActExpBrf (ActChgNumRowFooGrp + 14) +#define ActConBrf (ActChgNumRowFooGrp + 15) +#define ActZIPBrf (ActChgNumRowFooGrp + 16) +#define ActReqDatBrf (ActChgNumRowFooGrp + 17) +#define ActChgDatBrf (ActChgNumRowFooGrp + 18) +#define ActDowBrf (ActChgNumRowFooGrp + 19) +#define ActReqRemOldBrf (ActChgNumRowFooGrp + 20) +#define ActRemOldBrf (ActChgNumRowFooGrp + 21) /*****************************************************************************/ /******************************* Users tab ***********************************/ /*****************************************************************************/ -// Actions in menu -#define ActReqSelGrp (ActRemOldBrf + 1) -#define ActLstStd (ActRemOldBrf + 2) -#define ActLstTch (ActRemOldBrf + 3) -#define ActLstOth (ActRemOldBrf + 4) -#define ActSeeAllAtt (ActRemOldBrf + 5) -#define ActReqSignUp (ActRemOldBrf + 6) -#define ActSeeSignUpReq (ActRemOldBrf + 7) -#define ActLstCon (ActRemOldBrf + 8) +// Groups +#define ActReqSelGrp (ActRemOldBrf + 1) +#define ActChgGrp (ActRemOldBrf + 2) +#define ActReqEdiGrp (ActRemOldBrf + 3) +#define ActNewGrpTyp (ActRemOldBrf + 4) +#define ActReqRemGrpTyp (ActRemOldBrf + 5) +#define ActRemGrpTyp (ActRemOldBrf + 6) +#define ActRenGrpTyp (ActRemOldBrf + 7) +#define ActChgMdtGrpTyp (ActRemOldBrf + 8) +#define ActChgMulGrpTyp (ActRemOldBrf + 9) +#define ActChgTimGrpTyp (ActRemOldBrf + 10) +#define ActNewGrp (ActRemOldBrf + 11) +#define ActReqRemGrp (ActRemOldBrf + 12) +#define ActRemGrp (ActRemOldBrf + 13) +#define ActOpeGrp (ActRemOldBrf + 14) +#define ActCloGrp (ActRemOldBrf + 15) +#define ActEnaFilZonGrp (ActRemOldBrf + 16) +#define ActDisFilZonGrp (ActRemOldBrf + 17) +#define ActChgGrpTyp (ActRemOldBrf + 18) +#define ActRenGrp (ActRemOldBrf + 19) +#define ActChgGrpRoo (ActRemOldBrf + 20) +#define ActChgMaxStdGrp (ActRemOldBrf + 21) -// Secondary actions -#define ActChgGrp (ActRemOldBrf + 9) -#define ActReqEdiGrp (ActRemOldBrf + 10) -#define ActNewGrpTyp (ActRemOldBrf + 11) -#define ActReqRemGrpTyp (ActRemOldBrf + 12) -#define ActRemGrpTyp (ActRemOldBrf + 13) -#define ActRenGrpTyp (ActRemOldBrf + 14) -#define ActChgMdtGrpTyp (ActRemOldBrf + 15) -#define ActChgMulGrpTyp (ActRemOldBrf + 16) -#define ActChgTimGrpTyp (ActRemOldBrf + 17) -#define ActNewGrp (ActRemOldBrf + 18) -#define ActReqRemGrp (ActRemOldBrf + 19) -#define ActRemGrp (ActRemOldBrf + 20) -#define ActOpeGrp (ActRemOldBrf + 21) -#define ActCloGrp (ActRemOldBrf + 22) -#define ActEnaFilZonGrp (ActRemOldBrf + 23) -#define ActDisFilZonGrp (ActRemOldBrf + 24) -#define ActChgGrpTyp (ActRemOldBrf + 25) -#define ActRenGrp (ActRemOldBrf + 26) -#define ActChgGrpRoo (ActRemOldBrf + 27) -#define ActChgMaxStdGrp (ActRemOldBrf + 28) +// Students +#define ActLstStd (ActChgMaxStdGrp + 1) +#define ActLstStdAll (ActChgMaxStdGrp + 2) +#define ActPrnStdPho (ActChgMaxStdGrp + 3) +#define ActDoActOnSevStd (ActChgMaxStdGrp + 4) +#define ActSeeRecSevStd (ActChgMaxStdGrp + 5) +#define ActPrnRecSevStd (ActChgMaxStdGrp + 6) +#define ActReqMdfOneStd (ActChgMaxStdGrp + 7) +#define ActReqMdfStd (ActChgMaxStdGrp + 8) +#define ActReqStdPho (ActChgMaxStdGrp + 9) +#define ActDetStdPho (ActChgMaxStdGrp + 10) +#define ActChgStdPho (ActChgMaxStdGrp + 11) +#define ActReqRemStdPho (ActChgMaxStdGrp + 12) +#define ActRemStdPho (ActChgMaxStdGrp + 13) +#define ActCreStd (ActChgMaxStdGrp + 14) +#define ActUpdStd (ActChgMaxStdGrp + 15) +#define ActCnfID_Std (ActChgMaxStdGrp + 16) +#define ActFrmAccStd (ActChgMaxStdGrp + 17) +#define ActRemNicStd (ActChgMaxStdGrp + 18) +#define ActChgNicStd (ActChgMaxStdGrp + 19) +#define ActRemID_Std (ActChgMaxStdGrp + 20) +#define ActChgID_Std (ActChgMaxStdGrp + 21) +#define ActChgPwdStd (ActChgMaxStdGrp + 22) +#define ActRemMaiStd (ActChgMaxStdGrp + 23) +#define ActChgMaiStd (ActChgMaxStdGrp + 24) +#define ActRemStdCrs (ActChgMaxStdGrp + 25) +#define ActReqRemAllStdCrs (ActChgMaxStdGrp + 26) +#define ActRemAllStdCrs (ActChgMaxStdGrp + 27) +#define ActReqAccEnrStd (ActChgMaxStdGrp + 28) +#define ActAccEnrStd (ActChgMaxStdGrp + 29) +#define ActRemMe_Std (ActChgMaxStdGrp + 30) +#define ActReqFolSevStd (ActChgMaxStdGrp + 31) +#define ActReqUnfSevStd (ActChgMaxStdGrp + 32) +#define ActFolSevStd (ActChgMaxStdGrp + 33) +#define ActUnfSevStd (ActChgMaxStdGrp + 34) +#define ActSeeRecOneStd (ActChgMaxStdGrp + 35) +#define ActReqEnrSevStd (ActChgMaxStdGrp + 36) +#define ActRcvFrmEnrSevStd (ActChgMaxStdGrp + 37) +#define ActRcvRecOthUsr (ActChgMaxStdGrp + 38) +#define ActEdiRecFie (ActChgMaxStdGrp + 39) +#define ActNewFie (ActChgMaxStdGrp + 40) +#define ActReqRemFie (ActChgMaxStdGrp + 41) +#define ActRemFie (ActChgMaxStdGrp + 42) +#define ActRenFie (ActChgMaxStdGrp + 43) +#define ActChgRowFie (ActChgMaxStdGrp + 44) +#define ActChgVisFie (ActChgMaxStdGrp + 45) +#define ActRcvRecCrs (ActChgMaxStdGrp + 46) -#define ActLstGst (ActRemOldBrf + 29) +// Teachers +#define ActLstTch (ActRcvRecCrs + 1) +#define ActLstTchAll (ActRcvRecCrs + 2) +#define ActPrnTchPho (ActRcvRecCrs + 3) +#define ActDoActOnSevTch (ActRcvRecCrs + 4) +#define ActSeeRecSevTch (ActRcvRecCrs + 5) +#define ActPrnRecSevTch (ActRcvRecCrs + 6) +#define ActReqMdfOneTch (ActRcvRecCrs + 7) +#define ActReqMdfNET (ActRcvRecCrs + 8) +#define ActReqMdfTch (ActRcvRecCrs + 9) +#define ActReqTchPho (ActRcvRecCrs + 10) +#define ActDetTchPho (ActRcvRecCrs + 11) +#define ActChgTchPho (ActRcvRecCrs + 12) +#define ActReqRemTchPho (ActRcvRecCrs + 13) +#define ActRemTchPho (ActRcvRecCrs + 14) +#define ActCreNET (ActRcvRecCrs + 15) +#define ActCreTch (ActRcvRecCrs + 16) +#define ActUpdNET (ActRcvRecCrs + 17) +#define ActUpdTch (ActRcvRecCrs + 18) +#define ActCnfID_Tch (ActRcvRecCrs + 19) +#define ActFrmAccTch (ActRcvRecCrs + 20) +#define ActRemNicTch (ActRcvRecCrs + 21) +#define ActChgNicTch (ActRcvRecCrs + 22) +#define ActRemID_Tch (ActRcvRecCrs + 23) +#define ActChgID_Tch (ActRcvRecCrs + 24) +#define ActChgPwdTch (ActRcvRecCrs + 25) +#define ActRemMaiTch (ActRcvRecCrs + 26) +#define ActChgMaiTch (ActRcvRecCrs + 27) +#define ActRemNETCrs (ActRcvRecCrs + 28) +#define ActRemTchCrs (ActRcvRecCrs + 29) +#define ActReqAccEnrNET (ActRcvRecCrs + 30) +#define ActReqAccEnrTch (ActRcvRecCrs + 31) +#define ActAccEnrNET (ActRcvRecCrs + 32) +#define ActAccEnrTch (ActRcvRecCrs + 33) +#define ActRemMe_NET (ActRcvRecCrs + 34) +#define ActRemMe_Tch (ActRcvRecCrs + 35) +#define ActReqFolSevTch (ActRcvRecCrs + 36) +#define ActReqUnfSevTch (ActRcvRecCrs + 37) +#define ActFolSevTch (ActRcvRecCrs + 38) +#define ActUnfSevTch (ActRcvRecCrs + 39) +#define ActSeeRecOneTch (ActRcvRecCrs + 40) +#define ActReqEnrSevNET (ActRcvRecCrs + 41) +#define ActRcvFrmEnrSevNET (ActRcvRecCrs + 42) +#define ActReqEnrSevTch (ActRcvRecCrs + 43) +#define ActRcvFrmEnrSevTch (ActRcvRecCrs + 44) +#define ActFrmLogInUsrAgd (ActRcvRecCrs + 45) +#define ActLogInUsrAgd (ActRcvRecCrs + 46) +#define ActLogInUsrAgdLan (ActRcvRecCrs + 47) -#define ActPrnGstPho (ActRemOldBrf + 30) -#define ActPrnStdPho (ActRemOldBrf + 31) -#define ActPrnTchPho (ActRemOldBrf + 32) -#define ActLstGstAll (ActRemOldBrf + 33) -#define ActLstStdAll (ActRemOldBrf + 34) -#define ActLstTchAll (ActRemOldBrf + 35) +// Others +#define ActLstOth (ActLogInUsrAgdLan + 1) +#define ActNewAdmIns (ActLogInUsrAgdLan + 2) +#define ActRemAdmIns (ActLogInUsrAgdLan + 3) +#define ActNewAdmCtr (ActLogInUsrAgdLan + 4) +#define ActRemAdmCtr (ActLogInUsrAgdLan + 5) +#define ActNewAdmDeg (ActLogInUsrAgdLan + 6) +#define ActRemAdmDeg (ActLogInUsrAgdLan + 7) +#define ActLstGst (ActLogInUsrAgdLan + 8) +#define ActLstGstAll (ActLogInUsrAgdLan + 9) +#define ActPrnGstPho (ActLogInUsrAgdLan + 10) +#define ActDoActOnSevGst (ActLogInUsrAgdLan + 11) +#define ActSeeRecSevGst (ActLogInUsrAgdLan + 12) +#define ActPrnRecSevGst (ActLogInUsrAgdLan + 13) +#define ActReqMdfOneOth (ActLogInUsrAgdLan + 14) +#define ActReqMdfOth (ActLogInUsrAgdLan + 15) +#define ActReqOthPho (ActLogInUsrAgdLan + 16) +#define ActDetOthPho (ActLogInUsrAgdLan + 17) +#define ActChgOthPho (ActLogInUsrAgdLan + 18) +#define ActReqRemOthPho (ActLogInUsrAgdLan + 19) +#define ActRemOthPho (ActLogInUsrAgdLan + 20) +#define ActCreOth (ActLogInUsrAgdLan + 21) +#define ActUpdOth (ActLogInUsrAgdLan + 22) +#define ActCnfID_Oth (ActLogInUsrAgdLan + 23) +#define ActFrmAccOth (ActLogInUsrAgdLan + 24) +#define ActRemNicOth (ActLogInUsrAgdLan + 25) +#define ActChgNicOth (ActLogInUsrAgdLan + 26) +#define ActRemID_Oth (ActLogInUsrAgdLan + 27) +#define ActChgID_Oth (ActLogInUsrAgdLan + 28) +#define ActChgPwdOth (ActLogInUsrAgdLan + 29) +#define ActRemMaiOth (ActLogInUsrAgdLan + 30) +#define ActChgMaiOth (ActLogInUsrAgdLan + 31) +#define ActRemUsrGbl (ActLogInUsrAgdLan + 32) +#define ActReqRemOldUsr (ActLogInUsrAgdLan + 33) +#define ActRemOldUsr (ActLogInUsrAgdLan + 34) +#define ActLstDupUsr (ActLogInUsrAgdLan + 35) +#define ActLstSimUsr (ActLogInUsrAgdLan + 36) +#define ActRemDupUsr (ActLogInUsrAgdLan + 37) -#define ActSeeRecOneStd (ActRemOldBrf + 36) -#define ActSeeRecOneTch (ActRemOldBrf + 37) -#define ActDoActOnSevGst (ActRemOldBrf + 38) -#define ActDoActOnSevStd (ActRemOldBrf + 39) -#define ActDoActOnSevTch (ActRemOldBrf + 40) -#define ActSeeRecSevGst (ActRemOldBrf + 41) -#define ActSeeRecSevStd (ActRemOldBrf + 42) -#define ActSeeRecSevTch (ActRemOldBrf + 43) -#define ActPrnRecSevGst (ActRemOldBrf + 44) -#define ActPrnRecSevStd (ActRemOldBrf + 45) -#define ActPrnRecSevTch (ActRemOldBrf + 46) -#define ActRcvRecOthUsr (ActRemOldBrf + 47) -#define ActEdiRecFie (ActRemOldBrf + 48) -#define ActNewFie (ActRemOldBrf + 49) -#define ActReqRemFie (ActRemOldBrf + 50) -#define ActRemFie (ActRemOldBrf + 51) -#define ActRenFie (ActRemOldBrf + 52) -#define ActChgRowFie (ActRemOldBrf + 53) -#define ActChgVisFie (ActRemOldBrf + 54) -#define ActRcvRecCrs (ActRemOldBrf + 55) +// Attendance +#define ActSeeAllAtt (ActRemDupUsr + 1) +#define ActReqLstUsrAtt (ActRemDupUsr + 2) +#define ActSeeLstMyAtt (ActRemDupUsr + 3) +#define ActPrnLstMyAtt (ActRemDupUsr + 4) +#define ActSeeLstUsrAtt (ActRemDupUsr + 5) +#define ActPrnLstUsrAtt (ActRemDupUsr + 6) +#define ActFrmNewAtt (ActRemDupUsr + 7) +#define ActEdiOneAtt (ActRemDupUsr + 8) +#define ActNewAtt (ActRemDupUsr + 9) +#define ActChgAtt (ActRemDupUsr + 10) +#define ActReqRemAtt (ActRemDupUsr + 11) +#define ActRemAtt (ActRemDupUsr + 12) +#define ActHidAtt (ActRemDupUsr + 13) +#define ActUnhAtt (ActRemDupUsr + 14) +#define ActSeeOneAtt (ActRemDupUsr + 15) +#define ActReqLnkAtt (ActRemDupUsr + 16) +#define ActRecAttStd (ActRemDupUsr + 17) +#define ActRecAttMe (ActRemDupUsr + 18) -#define ActFrmLogInUsrAgd (ActRemOldBrf + 56) -#define ActLogInUsrAgd (ActRemOldBrf + 57) -#define ActLogInUsrAgdLan (ActRemOldBrf + 58) +// Sign up +#define ActReqSignUp (ActRecAttMe + 1) +#define ActSignUp (ActRecAttMe + 2) -#define ActReqEnrSevStd (ActRemOldBrf + 59) -#define ActReqEnrSevNET (ActRemOldBrf + 60) -#define ActReqEnrSevTch (ActRemOldBrf + 61) +// Requests +#define ActSeeSignUpReq (ActSignUp + 1) +#define ActUpdSignUpReq (ActSignUp + 2) +#define ActReqRejSignUp (ActSignUp + 3) +#define ActRejSignUp (ActSignUp + 4) -#define ActReqLstUsrAtt (ActRemOldBrf + 62) -#define ActSeeLstMyAtt (ActRemOldBrf + 63) -#define ActPrnLstMyAtt (ActRemOldBrf + 64) -#define ActSeeLstUsrAtt (ActRemOldBrf + 65) -#define ActPrnLstUsrAtt (ActRemOldBrf + 66) -#define ActFrmNewAtt (ActRemOldBrf + 67) -#define ActEdiOneAtt (ActRemOldBrf + 68) -#define ActNewAtt (ActRemOldBrf + 69) -#define ActChgAtt (ActRemOldBrf + 70) -#define ActReqRemAtt (ActRemOldBrf + 71) -#define ActRemAtt (ActRemOldBrf + 72) -#define ActHidAtt (ActRemOldBrf + 73) -#define ActUnhAtt (ActRemOldBrf + 74) -#define ActSeeOneAtt (ActRemOldBrf + 75) -#define ActReqLnkAtt (ActRemOldBrf + 76) -#define ActRecAttStd (ActRemOldBrf + 77) -#define ActRecAttMe (ActRemOldBrf + 78) - -#define ActSignUp (ActRemOldBrf + 79) -#define ActUpdSignUpReq (ActRemOldBrf + 80) -#define ActReqRejSignUp (ActRemOldBrf + 81) -#define ActRejSignUp (ActRemOldBrf + 82) - -#define ActReqMdfOneOth (ActRemOldBrf + 83) -#define ActReqMdfOneStd (ActRemOldBrf + 84) -#define ActReqMdfOneTch (ActRemOldBrf + 85) - -#define ActReqMdfOth (ActRemOldBrf + 86) -#define ActReqMdfStd (ActRemOldBrf + 87) -#define ActReqMdfNET (ActRemOldBrf + 88) -#define ActReqMdfTch (ActRemOldBrf + 89) - -#define ActReqOthPho (ActRemOldBrf + 90) -#define ActReqStdPho (ActRemOldBrf + 91) -#define ActReqTchPho (ActRemOldBrf + 92) -#define ActDetOthPho (ActRemOldBrf + 93) -#define ActDetStdPho (ActRemOldBrf + 94) -#define ActDetTchPho (ActRemOldBrf + 95) -#define ActChgOthPho (ActRemOldBrf + 96) -#define ActChgStdPho (ActRemOldBrf + 97) -#define ActChgTchPho (ActRemOldBrf + 98) -#define ActReqRemOthPho (ActRemOldBrf + 99) -#define ActReqRemStdPho (ActRemOldBrf + 100) -#define ActReqRemTchPho (ActRemOldBrf + 101) -#define ActRemOthPho (ActRemOldBrf + 102) -#define ActRemStdPho (ActRemOldBrf + 103) -#define ActRemTchPho (ActRemOldBrf + 104) - -#define ActCreOth (ActRemOldBrf + 105) -#define ActCreStd (ActRemOldBrf + 106) -#define ActCreNET (ActRemOldBrf + 107) -#define ActCreTch (ActRemOldBrf + 108) -#define ActUpdOth (ActRemOldBrf + 109) -#define ActUpdStd (ActRemOldBrf + 110) -#define ActUpdNET (ActRemOldBrf + 111) -#define ActUpdTch (ActRemOldBrf + 112) - -#define ActReqAccEnrStd (ActRemOldBrf + 113) -#define ActReqAccEnrNET (ActRemOldBrf + 114) -#define ActReqAccEnrTch (ActRemOldBrf + 115) -#define ActAccEnrStd (ActRemOldBrf + 116) -#define ActAccEnrNET (ActRemOldBrf + 117) -#define ActAccEnrTch (ActRemOldBrf + 118) -#define ActRemMe_Std (ActRemOldBrf + 119) -#define ActRemMe_NET (ActRemOldBrf + 120) -#define ActRemMe_Tch (ActRemOldBrf + 121) - -#define ActNewAdmIns (ActRemOldBrf + 122) -#define ActRemAdmIns (ActRemOldBrf + 123) -#define ActNewAdmCtr (ActRemOldBrf + 124) -#define ActRemAdmCtr (ActRemOldBrf + 125) -#define ActNewAdmDeg (ActRemOldBrf + 126) -#define ActRemAdmDeg (ActRemOldBrf + 127) - -#define ActRcvFrmEnrSevStd (ActRemOldBrf + 128) -#define ActRcvFrmEnrSevNET (ActRemOldBrf + 129) -#define ActRcvFrmEnrSevTch (ActRemOldBrf + 130) - -#define ActCnfID_Oth (ActRemOldBrf + 131) -#define ActCnfID_Std (ActRemOldBrf + 132) -#define ActCnfID_Tch (ActRemOldBrf + 133) - -#define ActFrmAccOth (ActRemOldBrf + 134) -#define ActFrmAccStd (ActRemOldBrf + 135) -#define ActFrmAccTch (ActRemOldBrf + 136) - -#define ActRemNicOth (ActRemOldBrf + 137) -#define ActRemNicStd (ActRemOldBrf + 138) -#define ActRemNicTch (ActRemOldBrf + 139) -#define ActChgNicOth (ActRemOldBrf + 140) -#define ActChgNicStd (ActRemOldBrf + 141) -#define ActChgNicTch (ActRemOldBrf + 142) - -#define ActRemID_Oth (ActRemOldBrf + 143) -#define ActRemID_Std (ActRemOldBrf + 144) -#define ActRemID_Tch (ActRemOldBrf + 145) -#define ActChgID_Oth (ActRemOldBrf + 146) -#define ActChgID_Std (ActRemOldBrf + 147) -#define ActChgID_Tch (ActRemOldBrf + 148) - -#define ActChgPwdOth (ActRemOldBrf + 149) -#define ActChgPwdStd (ActRemOldBrf + 150) -#define ActChgPwdTch (ActRemOldBrf + 151) - -#define ActRemMaiOth (ActRemOldBrf + 152) -#define ActRemMaiStd (ActRemOldBrf + 153) -#define ActRemMaiTch (ActRemOldBrf + 154) -#define ActChgMaiOth (ActRemOldBrf + 155) -#define ActChgMaiStd (ActRemOldBrf + 156) -#define ActChgMaiTch (ActRemOldBrf + 157) - -#define ActRemStdCrs (ActRemOldBrf + 158) -#define ActRemNETCrs (ActRemOldBrf + 159) -#define ActRemTchCrs (ActRemOldBrf + 160) -#define ActRemUsrGbl (ActRemOldBrf + 161) - -#define ActReqRemAllStdCrs (ActRemOldBrf + 162) -#define ActRemAllStdCrs (ActRemOldBrf + 163) - -#define ActReqRemOldUsr (ActRemOldBrf + 164) -#define ActRemOldUsr (ActRemOldBrf + 165) - -#define ActLstDupUsr (ActRemOldBrf + 166) -#define ActLstSimUsr (ActRemOldBrf + 167) -#define ActRemDupUsr (ActRemOldBrf + 168) - -#define ActReqFolSevStd (ActRemOldBrf + 169) -#define ActReqFolSevTch (ActRemOldBrf + 170) -#define ActReqUnfSevStd (ActRemOldBrf + 171) -#define ActReqUnfSevTch (ActRemOldBrf + 172) -#define ActFolSevStd (ActRemOldBrf + 173) -#define ActFolSevTch (ActRemOldBrf + 174) -#define ActUnfSevStd (ActRemOldBrf + 175) -#define ActUnfSevTch (ActRemOldBrf + 176) +// Connected +#define ActLstCon (ActRejSignUp + 1) /*****************************************************************************/ /******************************* Messages tab ********************************/ /*****************************************************************************/ -// Actions in menu -#define ActSeeAnn (ActUnfSevTch + 1) -#define ActSeeAllNot (ActUnfSevTch + 2) -#define ActSeeFor (ActUnfSevTch + 3) -#define ActSeeChtRms (ActUnfSevTch + 4) -#define ActSeeRcvMsg (ActUnfSevTch + 5) -#define ActReqMaiUsr (ActUnfSevTch + 6) -// Secondary actions -#define ActWriAnn (ActUnfSevTch + 7) -#define ActNewAnn (ActUnfSevTch + 8) -#define ActHidAnn (ActUnfSevTch + 9) -#define ActUnhAnn (ActUnfSevTch + 10) -#define ActRemAnn (ActUnfSevTch + 11) -#define ActSeeOneNot (ActUnfSevTch + 12) -#define ActWriNot (ActUnfSevTch + 13) -#define ActNewNot (ActUnfSevTch + 14) -#define ActHidNot (ActUnfSevTch + 15) -#define ActUnhNot (ActUnfSevTch + 16) -#define ActReqRemNot (ActUnfSevTch + 17) -#define ActRemNot (ActUnfSevTch + 18) +// Announcements +#define ActSeeAnn (ActLstCon + 1) +#define ActWriAnn (ActLstCon + 2) +#define ActNewAnn (ActLstCon + 3) +#define ActHidAnn (ActLstCon + 4) +#define ActUnhAnn (ActLstCon + 5) +#define ActRemAnn (ActLstCon + 6) -#define ActSeeForCrsUsr (ActUnfSevTch + 19) -#define ActSeeForCrsTch (ActUnfSevTch + 20) -#define ActSeeForDegUsr (ActUnfSevTch + 21) -#define ActSeeForDegTch (ActUnfSevTch + 22) -#define ActSeeForCtrUsr (ActUnfSevTch + 23) -#define ActSeeForCtrTch (ActUnfSevTch + 24) -#define ActSeeForInsUsr (ActUnfSevTch + 25) -#define ActSeeForInsTch (ActUnfSevTch + 26) -#define ActSeeForGenUsr (ActUnfSevTch + 27) -#define ActSeeForGenTch (ActUnfSevTch + 28) -#define ActSeeForSWAUsr (ActUnfSevTch + 29) -#define ActSeeForSWATch (ActUnfSevTch + 30) -#define ActSeePstForCrsUsr (ActUnfSevTch + 31) -#define ActSeePstForCrsTch (ActUnfSevTch + 32) -#define ActSeePstForDegUsr (ActUnfSevTch + 33) -#define ActSeePstForDegTch (ActUnfSevTch + 34) -#define ActSeePstForCtrUsr (ActUnfSevTch + 35) -#define ActSeePstForCtrTch (ActUnfSevTch + 36) -#define ActSeePstForInsUsr (ActUnfSevTch + 37) -#define ActSeePstForInsTch (ActUnfSevTch + 38) -#define ActSeePstForGenUsr (ActUnfSevTch + 39) -#define ActSeePstForGenTch (ActUnfSevTch + 40) -#define ActSeePstForSWAUsr (ActUnfSevTch + 41) -#define ActSeePstForSWATch (ActUnfSevTch + 42) -#define ActRcvThrForCrsUsr (ActUnfSevTch + 43) -#define ActRcvThrForCrsTch (ActUnfSevTch + 44) -#define ActRcvThrForDegUsr (ActUnfSevTch + 45) -#define ActRcvThrForDegTch (ActUnfSevTch + 46) -#define ActRcvThrForCtrUsr (ActUnfSevTch + 47) -#define ActRcvThrForCtrTch (ActUnfSevTch + 48) -#define ActRcvThrForInsUsr (ActUnfSevTch + 49) -#define ActRcvThrForInsTch (ActUnfSevTch + 50) -#define ActRcvThrForGenUsr (ActUnfSevTch + 51) -#define ActRcvThrForGenTch (ActUnfSevTch + 52) -#define ActRcvThrForSWAUsr (ActUnfSevTch + 53) -#define ActRcvThrForSWATch (ActUnfSevTch + 54) -#define ActRcvRepForCrsUsr (ActUnfSevTch + 55) -#define ActRcvRepForCrsTch (ActUnfSevTch + 56) -#define ActRcvRepForDegUsr (ActUnfSevTch + 57) -#define ActRcvRepForDegTch (ActUnfSevTch + 58) -#define ActRcvRepForCtrUsr (ActUnfSevTch + 59) -#define ActRcvRepForCtrTch (ActUnfSevTch + 60) -#define ActRcvRepForInsUsr (ActUnfSevTch + 61) -#define ActRcvRepForInsTch (ActUnfSevTch + 62) -#define ActRcvRepForGenUsr (ActUnfSevTch + 63) -#define ActRcvRepForGenTch (ActUnfSevTch + 64) -#define ActRcvRepForSWAUsr (ActUnfSevTch + 65) -#define ActRcvRepForSWATch (ActUnfSevTch + 66) -#define ActReqDelThrCrsUsr (ActUnfSevTch + 67) -#define ActReqDelThrCrsTch (ActUnfSevTch + 68) -#define ActReqDelThrDegUsr (ActUnfSevTch + 69) -#define ActReqDelThrDegTch (ActUnfSevTch + 70) -#define ActReqDelThrCtrUsr (ActUnfSevTch + 71) -#define ActReqDelThrCtrTch (ActUnfSevTch + 72) -#define ActReqDelThrInsUsr (ActUnfSevTch + 73) -#define ActReqDelThrInsTch (ActUnfSevTch + 74) -#define ActReqDelThrGenUsr (ActUnfSevTch + 75) -#define ActReqDelThrGenTch (ActUnfSevTch + 76) -#define ActReqDelThrSWAUsr (ActUnfSevTch + 77) -#define ActReqDelThrSWATch (ActUnfSevTch + 78) -#define ActDelThrForCrsUsr (ActUnfSevTch + 79) -#define ActDelThrForCrsTch (ActUnfSevTch + 80) -#define ActDelThrForDegUsr (ActUnfSevTch + 81) -#define ActDelThrForDegTch (ActUnfSevTch + 82) -#define ActDelThrForCtrUsr (ActUnfSevTch + 83) -#define ActDelThrForCtrTch (ActUnfSevTch + 84) -#define ActDelThrForInsUsr (ActUnfSevTch + 85) -#define ActDelThrForInsTch (ActUnfSevTch + 86) -#define ActDelThrForGenUsr (ActUnfSevTch + 87) -#define ActDelThrForGenTch (ActUnfSevTch + 88) -#define ActDelThrForSWAUsr (ActUnfSevTch + 89) -#define ActDelThrForSWATch (ActUnfSevTch + 90) -#define ActCutThrForCrsUsr (ActUnfSevTch + 91) -#define ActCutThrForCrsTch (ActUnfSevTch + 92) -#define ActCutThrForDegUsr (ActUnfSevTch + 93) -#define ActCutThrForDegTch (ActUnfSevTch + 94) -#define ActCutThrForCtrUsr (ActUnfSevTch + 95) -#define ActCutThrForCtrTch (ActUnfSevTch + 96) -#define ActCutThrForInsUsr (ActUnfSevTch + 97) -#define ActCutThrForInsTch (ActUnfSevTch + 98) -#define ActCutThrForGenUsr (ActUnfSevTch + 99) -#define ActCutThrForGenTch (ActUnfSevTch + 100) -#define ActCutThrForSWAUsr (ActUnfSevTch + 101) -#define ActCutThrForSWATch (ActUnfSevTch + 102) -#define ActPasThrForCrsUsr (ActUnfSevTch + 103) -#define ActPasThrForCrsTch (ActUnfSevTch + 104) -#define ActPasThrForDegUsr (ActUnfSevTch + 105) -#define ActPasThrForDegTch (ActUnfSevTch + 106) -#define ActPasThrForCtrUsr (ActUnfSevTch + 107) -#define ActPasThrForCtrTch (ActUnfSevTch + 108) -#define ActPasThrForInsUsr (ActUnfSevTch + 109) -#define ActPasThrForInsTch (ActUnfSevTch + 110) -#define ActPasThrForGenUsr (ActUnfSevTch + 111) -#define ActPasThrForGenTch (ActUnfSevTch + 112) -#define ActPasThrForSWAUsr (ActUnfSevTch + 113) -#define ActPasThrForSWATch (ActUnfSevTch + 114) -#define ActDelPstForCrsUsr (ActUnfSevTch + 115) -#define ActDelPstForCrsTch (ActUnfSevTch + 116) -#define ActDelPstForDegUsr (ActUnfSevTch + 117) -#define ActDelPstForDegTch (ActUnfSevTch + 118) -#define ActDelPstForCtrUsr (ActUnfSevTch + 119) -#define ActDelPstForCtrTch (ActUnfSevTch + 120) -#define ActDelPstForInsUsr (ActUnfSevTch + 121) -#define ActDelPstForInsTch (ActUnfSevTch + 122) -#define ActDelPstForGenUsr (ActUnfSevTch + 123) -#define ActDelPstForGenTch (ActUnfSevTch + 124) -#define ActDelPstForSWAUsr (ActUnfSevTch + 125) -#define ActDelPstForSWATch (ActUnfSevTch + 126) -#define ActEnbPstForCrsUsr (ActUnfSevTch + 127) -#define ActEnbPstForCrsTch (ActUnfSevTch + 128) -#define ActEnbPstForDegUsr (ActUnfSevTch + 129) -#define ActEnbPstForDegTch (ActUnfSevTch + 130) -#define ActEnbPstForCtrUsr (ActUnfSevTch + 131) -#define ActEnbPstForCtrTch (ActUnfSevTch + 132) -#define ActEnbPstForInsUsr (ActUnfSevTch + 133) -#define ActEnbPstForInsTch (ActUnfSevTch + 134) -#define ActEnbPstForGenUsr (ActUnfSevTch + 135) -#define ActEnbPstForGenTch (ActUnfSevTch + 136) -#define ActEnbPstForSWAUsr (ActUnfSevTch + 137) -#define ActEnbPstForSWATch (ActUnfSevTch + 138) -#define ActDisPstForCrsUsr (ActUnfSevTch + 139) -#define ActDisPstForCrsTch (ActUnfSevTch + 140) -#define ActDisPstForDegUsr (ActUnfSevTch + 141) -#define ActDisPstForDegTch (ActUnfSevTch + 142) -#define ActDisPstForCtrUsr (ActUnfSevTch + 143) -#define ActDisPstForCtrTch (ActUnfSevTch + 144) -#define ActDisPstForInsUsr (ActUnfSevTch + 145) -#define ActDisPstForInsTch (ActUnfSevTch + 146) -#define ActDisPstForGenUsr (ActUnfSevTch + 147) -#define ActDisPstForGenTch (ActUnfSevTch + 148) -#define ActDisPstForSWAUsr (ActUnfSevTch + 149) -#define ActDisPstForSWATch (ActUnfSevTch + 150) -#define ActReqLnkForCrsUsr (ActUnfSevTch + 151) +// Notices +#define ActSeeAllNot (ActRemAnn + 1) +#define ActSeeOneNot (ActRemAnn + 2) +#define ActWriNot (ActRemAnn + 3) +#define ActNewNot (ActRemAnn + 4) +#define ActHidNot (ActRemAnn + 5) +#define ActUnhNot (ActRemAnn + 6) +#define ActReqRemNot (ActRemAnn + 7) +#define ActRemNot (ActRemAnn + 8) -#define ActCht (ActUnfSevTch + 152) +// Forums +#define ActSeeFor (ActRemNot + 1) +#define ActSeeForCrsUsr (ActRemNot + 2) +#define ActSeeForCrsTch (ActRemNot + 3) +#define ActSeeForDegUsr (ActRemNot + 4) +#define ActSeeForDegTch (ActRemNot + 5) +#define ActSeeForCtrUsr (ActRemNot + 6) +#define ActSeeForCtrTch (ActRemNot + 7) +#define ActSeeForInsUsr (ActRemNot + 8) +#define ActSeeForInsTch (ActRemNot + 9) +#define ActSeeForGenUsr (ActRemNot + 10) +#define ActSeeForGenTch (ActRemNot + 11) +#define ActSeeForSWAUsr (ActRemNot + 12) +#define ActSeeForSWATch (ActRemNot + 13) +#define ActSeePstForCrsUsr (ActRemNot + 14) +#define ActSeePstForCrsTch (ActRemNot + 15) +#define ActSeePstForDegUsr (ActRemNot + 16) +#define ActSeePstForDegTch (ActRemNot + 17) +#define ActSeePstForCtrUsr (ActRemNot + 18) +#define ActSeePstForCtrTch (ActRemNot + 19) +#define ActSeePstForInsUsr (ActRemNot + 20) +#define ActSeePstForInsTch (ActRemNot + 21) +#define ActSeePstForGenUsr (ActRemNot + 22) +#define ActSeePstForGenTch (ActRemNot + 23) +#define ActSeePstForSWAUsr (ActRemNot + 24) +#define ActSeePstForSWATch (ActRemNot + 25) +#define ActRcvThrForCrsUsr (ActRemNot + 26) +#define ActRcvThrForCrsTch (ActRemNot + 27) +#define ActRcvThrForDegUsr (ActRemNot + 28) +#define ActRcvThrForDegTch (ActRemNot + 29) +#define ActRcvThrForCtrUsr (ActRemNot + 30) +#define ActRcvThrForCtrTch (ActRemNot + 31) +#define ActRcvThrForInsUsr (ActRemNot + 32) +#define ActRcvThrForInsTch (ActRemNot + 33) +#define ActRcvThrForGenUsr (ActRemNot + 34) +#define ActRcvThrForGenTch (ActRemNot + 35) +#define ActRcvThrForSWAUsr (ActRemNot + 36) +#define ActRcvThrForSWATch (ActRemNot + 37) +#define ActRcvRepForCrsUsr (ActRemNot + 38) +#define ActRcvRepForCrsTch (ActRemNot + 39) +#define ActRcvRepForDegUsr (ActRemNot + 40) +#define ActRcvRepForDegTch (ActRemNot + 41) +#define ActRcvRepForCtrUsr (ActRemNot + 42) +#define ActRcvRepForCtrTch (ActRemNot + 43) +#define ActRcvRepForInsUsr (ActRemNot + 44) +#define ActRcvRepForInsTch (ActRemNot + 45) +#define ActRcvRepForGenUsr (ActRemNot + 46) +#define ActRcvRepForGenTch (ActRemNot + 47) +#define ActRcvRepForSWAUsr (ActRemNot + 48) +#define ActRcvRepForSWATch (ActRemNot + 49) +#define ActReqDelThrCrsUsr (ActRemNot + 50) +#define ActReqDelThrCrsTch (ActRemNot + 51) +#define ActReqDelThrDegUsr (ActRemNot + 52) +#define ActReqDelThrDegTch (ActRemNot + 53) +#define ActReqDelThrCtrUsr (ActRemNot + 54) +#define ActReqDelThrCtrTch (ActRemNot + 55) +#define ActReqDelThrInsUsr (ActRemNot + 56) +#define ActReqDelThrInsTch (ActRemNot + 57) +#define ActReqDelThrGenUsr (ActRemNot + 58) +#define ActReqDelThrGenTch (ActRemNot + 59) +#define ActReqDelThrSWAUsr (ActRemNot + 60) +#define ActReqDelThrSWATch (ActRemNot + 61) +#define ActDelThrForCrsUsr (ActRemNot + 62) +#define ActDelThrForCrsTch (ActRemNot + 63) +#define ActDelThrForDegUsr (ActRemNot + 64) +#define ActDelThrForDegTch (ActRemNot + 65) +#define ActDelThrForCtrUsr (ActRemNot + 66) +#define ActDelThrForCtrTch (ActRemNot + 67) +#define ActDelThrForInsUsr (ActRemNot + 68) +#define ActDelThrForInsTch (ActRemNot + 69) +#define ActDelThrForGenUsr (ActRemNot + 70) +#define ActDelThrForGenTch (ActRemNot + 71) +#define ActDelThrForSWAUsr (ActRemNot + 72) +#define ActDelThrForSWATch (ActRemNot + 73) +#define ActCutThrForCrsUsr (ActRemNot + 74) +#define ActCutThrForCrsTch (ActRemNot + 75) +#define ActCutThrForDegUsr (ActRemNot + 76) +#define ActCutThrForDegTch (ActRemNot + 77) +#define ActCutThrForCtrUsr (ActRemNot + 78) +#define ActCutThrForCtrTch (ActRemNot + 79) +#define ActCutThrForInsUsr (ActRemNot + 80) +#define ActCutThrForInsTch (ActRemNot + 81) +#define ActCutThrForGenUsr (ActRemNot + 82) +#define ActCutThrForGenTch (ActRemNot + 83) +#define ActCutThrForSWAUsr (ActRemNot + 84) +#define ActCutThrForSWATch (ActRemNot + 85) +#define ActPasThrForCrsUsr (ActRemNot + 86) +#define ActPasThrForCrsTch (ActRemNot + 87) +#define ActPasThrForDegUsr (ActRemNot + 88) +#define ActPasThrForDegTch (ActRemNot + 89) +#define ActPasThrForCtrUsr (ActRemNot + 90) +#define ActPasThrForCtrTch (ActRemNot + 91) +#define ActPasThrForInsUsr (ActRemNot + 92) +#define ActPasThrForInsTch (ActRemNot + 93) +#define ActPasThrForGenUsr (ActRemNot + 94) +#define ActPasThrForGenTch (ActRemNot + 95) +#define ActPasThrForSWAUsr (ActRemNot + 96) +#define ActPasThrForSWATch (ActRemNot + 97) +#define ActDelPstForCrsUsr (ActRemNot + 98) +#define ActDelPstForCrsTch (ActRemNot + 99) +#define ActDelPstForDegUsr (ActRemNot + 100) +#define ActDelPstForDegTch (ActRemNot + 101) +#define ActDelPstForCtrUsr (ActRemNot + 102) +#define ActDelPstForCtrTch (ActRemNot + 103) +#define ActDelPstForInsUsr (ActRemNot + 104) +#define ActDelPstForInsTch (ActRemNot + 105) +#define ActDelPstForGenUsr (ActRemNot + 106) +#define ActDelPstForGenTch (ActRemNot + 107) +#define ActDelPstForSWAUsr (ActRemNot + 108) +#define ActDelPstForSWATch (ActRemNot + 109) +#define ActEnbPstForCrsUsr (ActRemNot + 110) +#define ActEnbPstForCrsTch (ActRemNot + 111) +#define ActEnbPstForDegUsr (ActRemNot + 112) +#define ActEnbPstForDegTch (ActRemNot + 113) +#define ActEnbPstForCtrUsr (ActRemNot + 114) +#define ActEnbPstForCtrTch (ActRemNot + 115) +#define ActEnbPstForInsUsr (ActRemNot + 116) +#define ActEnbPstForInsTch (ActRemNot + 117) +#define ActEnbPstForGenUsr (ActRemNot + 118) +#define ActEnbPstForGenTch (ActRemNot + 119) +#define ActEnbPstForSWAUsr (ActRemNot + 120) +#define ActEnbPstForSWATch (ActRemNot + 121) +#define ActDisPstForCrsUsr (ActRemNot + 122) +#define ActDisPstForCrsTch (ActRemNot + 123) +#define ActDisPstForDegUsr (ActRemNot + 124) +#define ActDisPstForDegTch (ActRemNot + 125) +#define ActDisPstForCtrUsr (ActRemNot + 126) +#define ActDisPstForCtrTch (ActRemNot + 127) +#define ActDisPstForInsUsr (ActRemNot + 128) +#define ActDisPstForInsTch (ActRemNot + 129) +#define ActDisPstForGenUsr (ActRemNot + 130) +#define ActDisPstForGenTch (ActRemNot + 131) +#define ActDisPstForSWAUsr (ActRemNot + 132) +#define ActDisPstForSWATch (ActRemNot + 133) +#define ActReqLnkForCrsUsr (ActRemNot + 134) -#define ActReqMsgUsr (ActUnfSevTch + 153) -#define ActSeeSntMsg (ActUnfSevTch + 154) +// Chat +#define ActSeeChtRms (ActReqLnkForCrsUsr + 1) +#define ActCht (ActReqLnkForCrsUsr + 2) -#define ActRcvMsgUsr (ActUnfSevTch + 155) -#define ActReqDelAllSntMsg (ActUnfSevTch + 156) -#define ActReqDelAllRcvMsg (ActUnfSevTch + 157) -#define ActDelAllSntMsg (ActUnfSevTch + 158) -#define ActDelAllRcvMsg (ActUnfSevTch + 159) -#define ActDelSntMsg (ActUnfSevTch + 160) -#define ActDelRcvMsg (ActUnfSevTch + 161) -#define ActExpSntMsg (ActUnfSevTch + 162) -#define ActExpRcvMsg (ActUnfSevTch + 163) -#define ActConSntMsg (ActUnfSevTch + 164) -#define ActConRcvMsg (ActUnfSevTch + 165) -#define ActLstBanUsr (ActUnfSevTch + 166) -#define ActBanUsrMsg (ActUnfSevTch + 167) -#define ActUnbUsrMsg (ActUnfSevTch + 168) -#define ActUnbUsrLst (ActUnfSevTch + 169) +// Messages +#define ActSeeRcvMsg (ActCht + 1) +#define ActReqMsgUsr (ActCht + 2) +#define ActSeeSntMsg (ActCht + 3) +#define ActRcvMsgUsr (ActCht + 4) +#define ActReqDelAllSntMsg (ActCht + 5) +#define ActReqDelAllRcvMsg (ActCht + 6) +#define ActDelAllSntMsg (ActCht + 7) +#define ActDelAllRcvMsg (ActCht + 8) +#define ActDelSntMsg (ActCht + 9) +#define ActDelRcvMsg (ActCht + 10) +#define ActExpSntMsg (ActCht + 11) +#define ActExpRcvMsg (ActCht + 12) +#define ActConSntMsg (ActCht + 13) +#define ActConRcvMsg (ActCht + 14) +#define ActLstBanUsr (ActCht + 15) +#define ActBanUsrMsg (ActCht + 16) +#define ActUnbUsrMsg (ActCht + 17) +#define ActUnbUsrLst (ActCht + 18) -#define ActMaiUsr (ActUnfSevTch + 170) +// Mail +#define ActReqMaiUsr (ActUnbUsrLst + 1) +#define ActMaiUsr (ActUnbUsrLst + 2) /*****************************************************************************/ /****************************** Analytics tab ********************************/ /*****************************************************************************/ -// Actions in menu +// Figures #define ActReqUseGbl (ActMaiUsr + 1) -#define ActSeePhoDeg (ActMaiUsr + 2) -#define ActReqStaCrs (ActMaiUsr + 3) -#define ActSeeAllSvy (ActMaiUsr + 4) -#define ActReqAccGbl (ActMaiUsr + 5) -#define ActReqMyUsgRep (ActMaiUsr + 6) -#define ActMFUAct (ActMaiUsr + 7) +#define ActSeeUseGbl (ActMaiUsr + 2) -// Secondary actions -#define ActSeeUseGbl (ActMaiUsr + 8) -#define ActPrnPhoDeg (ActMaiUsr + 9) -#define ActCalPhoDeg (ActMaiUsr + 10) +// Degrees +#define ActSeePhoDeg (ActSeeUseGbl + 1) +#define ActPrnPhoDeg (ActSeeUseGbl + 2) +#define ActCalPhoDeg (ActSeeUseGbl + 3) -#define ActSeeAllStaCrs (ActMaiUsr + 11) +// Indicators +#define ActReqStaCrs (ActCalPhoDeg + 1) +#define ActSeeAllStaCrs (ActCalPhoDeg + 2) -#define ActSeeOneSvy (ActMaiUsr + 12) -#define ActAnsSvy (ActMaiUsr + 13) -#define ActFrmNewSvy (ActMaiUsr + 14) -#define ActEdiOneSvy (ActMaiUsr + 15) -#define ActNewSvy (ActMaiUsr + 16) -#define ActChgSvy (ActMaiUsr + 17) -#define ActReqRemSvy (ActMaiUsr + 18) -#define ActRemSvy (ActMaiUsr + 19) -#define ActReqRstSvy (ActMaiUsr + 20) -#define ActRstSvy (ActMaiUsr + 21) -#define ActHidSvy (ActMaiUsr + 22) -#define ActUnhSvy (ActMaiUsr + 23) -#define ActReqLnkSvy (ActMaiUsr + 24) +// Surveys +#define ActSeeAllSvy (ActSeeAllStaCrs + 1) +#define ActSeeOneSvy (ActSeeAllStaCrs + 2) +#define ActAnsSvy (ActSeeAllStaCrs + 3) +#define ActFrmNewSvy (ActSeeAllStaCrs + 4) +#define ActEdiOneSvy (ActSeeAllStaCrs + 5) +#define ActNewSvy (ActSeeAllStaCrs + 6) +#define ActChgSvy (ActSeeAllStaCrs + 7) +#define ActReqRemSvy (ActSeeAllStaCrs + 8) +#define ActRemSvy (ActSeeAllStaCrs + 9) +#define ActReqRstSvy (ActSeeAllStaCrs + 10) +#define ActRstSvy (ActSeeAllStaCrs + 11) +#define ActHidSvy (ActSeeAllStaCrs + 12) +#define ActUnhSvy (ActSeeAllStaCrs + 13) +#define ActReqLnkSvy (ActSeeAllStaCrs + 14) +#define ActEdiOneSvyQst (ActSeeAllStaCrs + 15) +#define ActNewSvyQst (ActSeeAllStaCrs + 16) +#define ActChgSvyQst (ActSeeAllStaCrs + 17) +#define ActReqRemSvyQst (ActSeeAllStaCrs + 18) +#define ActRemSvyQst (ActSeeAllStaCrs + 19) -#define ActEdiOneSvyQst (ActMaiUsr + 25) -#define ActNewSvyQst (ActMaiUsr + 26) -#define ActChgSvyQst (ActMaiUsr + 27) -#define ActReqRemSvyQst (ActMaiUsr + 28) -#define ActRemSvyQst (ActMaiUsr + 29) +// Visits +#define ActReqAccGbl (ActRemSvyQst + 1) +#define ActSeeAccGbl (ActRemSvyQst + 2) +#define ActReqAccCrs (ActRemSvyQst + 3) +#define ActSeeAccCrs (ActRemSvyQst + 4) +#define ActLstClk (ActRemSvyQst + 5) +#define ActRefLstClk (ActRemSvyQst + 6) -#define ActSeeAccGbl (ActMaiUsr + 30) -#define ActReqAccCrs (ActMaiUsr + 31) -#define ActSeeAccCrs (ActMaiUsr + 32) +// Report +#define ActReqMyUsgRep (ActRefLstClk + 1) +#define ActSeeMyUsgRep (ActRefLstClk + 2) -#define ActLstClk (ActMaiUsr + 33) -#define ActRefLstClk (ActMaiUsr + 34) - -#define ActSeeMyUsgRep (ActMaiUsr + 35) +// Frequent +#define ActMFUAct (ActSeeMyUsgRep + 1) /*****************************************************************************/ /******************************** Profile tab ********************************/ /*****************************************************************************/ -// Actions in menu -#define ActFrmRolSes (ActSeeMyUsgRep + 1) -#define ActMyCrs (ActSeeMyUsgRep + 2) -#define ActSeeMyTT (ActSeeMyUsgRep + 3) -#define ActSeeMyAgd (ActSeeMyUsgRep + 4) -#define ActFrmMyAcc (ActSeeMyUsgRep + 5) -#define ActReqEdiRecSha (ActSeeMyUsgRep + 6) -#define ActReqEdiSet (ActSeeMyUsgRep + 7) -// Secondary actions -#define ActChgMyRol (ActSeeMyUsgRep + 8) -#define ActFrmNewEvtMyAgd (ActSeeMyUsgRep + 9) -#define ActEdiOneEvtMyAgd (ActSeeMyUsgRep + 10) -#define ActNewEvtMyAgd (ActSeeMyUsgRep + 11) -#define ActChgEvtMyAgd (ActSeeMyUsgRep + 12) -#define ActReqRemEvtMyAgd (ActSeeMyUsgRep + 13) -#define ActRemEvtMyAgd (ActSeeMyUsgRep + 14) -#define ActHidEvtMyAgd (ActSeeMyUsgRep + 15) -#define ActUnhEvtMyAgd (ActSeeMyUsgRep + 16) -#define ActPrvEvtMyAgd (ActSeeMyUsgRep + 17) -#define ActPubEvtMyAgd (ActSeeMyUsgRep + 18) -#define ActPrnAgdQR (ActSeeMyUsgRep + 19) +// Session +#define ActFrmRolSes (ActMFUAct + 1) +#define ActChgMyRol (ActMFUAct + 2) -#define ActChkUsrAcc (ActSeeMyUsgRep + 20) -#define ActCreMyAcc (ActSeeMyUsgRep + 21) -#define ActCreUsrAcc (ActSeeMyUsgRep + 22) -#define ActRemMyID (ActSeeMyUsgRep + 23) -#define ActChgMyID (ActSeeMyUsgRep + 24) -#define ActRemMyNck (ActSeeMyUsgRep + 25) -#define ActChgMyNck (ActSeeMyUsgRep + 26) -#define ActRemMyMai (ActSeeMyUsgRep + 27) -#define ActChgMyMai (ActSeeMyUsgRep + 28) -#define ActCnfMai (ActSeeMyUsgRep + 29) -#define ActChgMyPwd (ActSeeMyUsgRep + 30) -#define ActReqRemMyAcc (ActSeeMyUsgRep + 31) -#define ActRemMyAcc (ActSeeMyUsgRep + 32) +// Courses +#define ActMyCrs (ActChgMyRol + 1) -#define ActChgMyData (ActSeeMyUsgRep + 33) +// Timetable +#define ActSeeMyTT (ActMyCrs + 1) +#define ActPrnMyTT (ActMyCrs + 2) +#define ActEdiTut (ActMyCrs + 3) +#define ActChgTut (ActMyCrs + 4) +#define ActChgMyTT1stDay (ActMyCrs + 5) -#define ActReqMyPho (ActSeeMyUsgRep + 34) -#define ActDetMyPho (ActSeeMyUsgRep + 35) -#define ActUpdMyPho (ActSeeMyUsgRep + 36) -#define ActReqRemMyPho (ActSeeMyUsgRep + 37) -#define ActRemMyPho (ActSeeMyUsgRep + 38) +// Agenda +#define ActSeeMyAgd (ActChgMyTT1stDay + 1) +#define ActFrmNewEvtMyAgd (ActChgMyTT1stDay + 2) +#define ActEdiOneEvtMyAgd (ActChgMyTT1stDay + 3) +#define ActNewEvtMyAgd (ActChgMyTT1stDay + 4) +#define ActChgEvtMyAgd (ActChgMyTT1stDay + 5) +#define ActReqRemEvtMyAgd (ActChgMyTT1stDay + 6) +#define ActRemEvtMyAgd (ActChgMyTT1stDay + 7) +#define ActHidEvtMyAgd (ActChgMyTT1stDay + 8) +#define ActUnhEvtMyAgd (ActChgMyTT1stDay + 9) +#define ActPrvEvtMyAgd (ActChgMyTT1stDay + 10) +#define ActPubEvtMyAgd (ActChgMyTT1stDay + 11) +#define ActPrnAgdQR (ActChgMyTT1stDay + 12) -#define ActChgCtyMyIns (ActSeeMyUsgRep + 39) -#define ActChgMyIns (ActSeeMyUsgRep + 40) -#define ActChgMyCtr (ActSeeMyUsgRep + 41) -#define ActChgMyDpt (ActSeeMyUsgRep + 42) -#define ActChgMyOff (ActSeeMyUsgRep + 43) -#define ActChgMyOffPho (ActSeeMyUsgRep + 44) +// Account +#define ActFrmMyAcc (ActPrnAgdQR + 1) +#define ActChkUsrAcc (ActPrnAgdQR + 2) +#define ActCreMyAcc (ActPrnAgdQR + 3) +#define ActCreUsrAcc (ActPrnAgdQR + 4) +#define ActRemMyID (ActPrnAgdQR + 5) +#define ActChgMyID (ActPrnAgdQR + 6) +#define ActRemMyNck (ActPrnAgdQR + 7) +#define ActChgMyNck (ActPrnAgdQR + 8) +#define ActRemMyMai (ActPrnAgdQR + 9) +#define ActChgMyMai (ActPrnAgdQR + 10) +#define ActCnfMai (ActPrnAgdQR + 11) +#define ActChgMyPwd (ActPrnAgdQR + 12) +#define ActReqRemMyAcc (ActPrnAgdQR + 13) +#define ActRemMyAcc (ActPrnAgdQR + 14) +#define ActPrnUsrQR (ActPrnAgdQR + 15) -#define ActReqEdiMyNet (ActSeeMyUsgRep + 45) -#define ActChgMyNet (ActSeeMyUsgRep + 46) +// Record +#define ActReqEdiRecSha (ActPrnUsrQR + 1) +#define ActChgMyData (ActPrnUsrQR + 2) +#define ActReqMyPho (ActPrnUsrQR + 3) +#define ActDetMyPho (ActPrnUsrQR + 4) +#define ActUpdMyPho (ActPrnUsrQR + 5) +#define ActReqRemMyPho (ActPrnUsrQR + 6) +#define ActRemMyPho (ActPrnUsrQR + 7) +#define ActChgCtyMyIns (ActPrnUsrQR + 8) +#define ActChgMyIns (ActPrnUsrQR + 9) +#define ActChgMyCtr (ActPrnUsrQR + 10) +#define ActChgMyDpt (ActPrnUsrQR + 11) +#define ActChgMyOff (ActPrnUsrQR + 12) +#define ActChgMyOffPho (ActPrnUsrQR + 13) +#define ActReqEdiMyNet (ActPrnUsrQR + 14) +#define ActChgMyNet (ActPrnUsrQR + 15) -#define ActChgThe (ActSeeMyUsgRep + 47) -#define ActReqChgLan (ActSeeMyUsgRep + 48) -#define ActChgLan (ActSeeMyUsgRep + 49) -#define ActChg1stDay (ActSeeMyUsgRep + 50) -#define ActChgDatFmt (ActSeeMyUsgRep + 51) -#define ActChgCol (ActSeeMyUsgRep + 52) -#define ActChgIco (ActSeeMyUsgRep + 53) -#define ActChgMnu (ActSeeMyUsgRep + 54) -#define ActChgUsrPho (ActSeeMyUsgRep + 55) -#define ActChgPriPho (ActSeeMyUsgRep + 56) -#define ActChgBasPriPrf (ActSeeMyUsgRep + 57) -#define ActChgExtPriPrf (ActSeeMyUsgRep + 58) -#define ActChgCooPrf (ActSeeMyUsgRep + 59) -#define ActChgNtfPrf (ActSeeMyUsgRep + 60) - -#define ActPrnUsrQR (ActSeeMyUsgRep + 61) - -#define ActPrnMyTT (ActSeeMyUsgRep + 62) -#define ActEdiTut (ActSeeMyUsgRep + 63) -#define ActChgTut (ActSeeMyUsgRep + 64) -#define ActChgMyTT1stDay (ActSeeMyUsgRep + 65) +// Settings +#define ActReqEdiSet (ActChgMyNet + 1) +#define ActChgThe (ActChgMyNet + 2) +#define ActReqChgLan (ActChgMyNet + 3) +#define ActChgLan (ActChgMyNet + 4) +#define ActChg1stDay (ActChgMyNet + 5) +#define ActChgDatFmt (ActChgMyNet + 6) +#define ActChgCol (ActChgMyNet + 7) +#define ActChgIco (ActChgMyNet + 8) +#define ActChgMnu (ActChgMyNet + 9) +#define ActChgUsrPho (ActChgMyNet + 10) +#define ActChgPriPho (ActChgMyNet + 11) +#define ActChgBasPriPrf (ActChgMyNet + 12) +#define ActChgExtPriPrf (ActChgMyNet + 13) +#define ActChgCooPrf (ActChgMyNet + 14) +#define ActChgNtfPrf (ActChgMyNet + 15) //----------------------------------------------------------------------------- -#define ActLst_NUM_ACTIONS (ActChgMyTT1stDay + 1) +#define ActLst_NUM_ACTIONS (ActChgNtfPrf + 1) #define ActLst_MAX_ACTION_COD 1977 diff --git a/swad_browser.c b/swad_browser.c index e89e10c4..6000cb2d 100644 --- a/swad_browser.c +++ b/swad_browser.c @@ -6683,7 +6683,7 @@ void Brw_RenFolderFileBrowser (void) /****** Receive a new file in a file browser unsigned Dropzone.js ************/ /*****************************************************************************/ -void Brw_RcvFileInFileBrwDropzone (void) +void Brw_RcvFileInFileBrwDZ (void) { bool UploadSucessful; struct BrwSiz_BrowserSize *Size = BrwSiz_GetSize (); diff --git a/swad_browser.h b/swad_browser.h index 49dc0015..84295340 100644 --- a/swad_browser.h +++ b/swad_browser.h @@ -208,7 +208,7 @@ void Brw_RemSubtreeInFileBrowser (void); void Brw_ShowFormFileBrowser (void); void Brw_RecFolderFileBrowser (void); void Brw_RenFolderFileBrowser (void); -void Brw_RcvFileInFileBrwDropzone (void); +void Brw_RcvFileInFileBrwDZ (void); void Brw_RcvFileInFileBrwClassic (void); void Brw_RecLinkFileBrowser (void); void Brw_SetDocumentAsVisible (void); diff --git a/swad_changelog.h b/swad_changelog.h index abb7095a..be146fff 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -633,10 +633,11 @@ Me sale este error, no s "can npt create received message (duplicated entry '243218-2160773' for key 'UsrCod_MsgCod') */ -#define Log_PLATFORM_VERSION "SWAD 23.67.3 (2024-03-09)" +#define Log_PLATFORM_VERSION "SWAD 23.68 (2024-03-14)" #define CSS_FILE "swad23.67.2.css" #define JS_FILE "swad23.53.6.js" /* + Version 23.68: Mar 14, 2024 New order in list of actions. (335700 lines) Version 23.67.3: Mar 09, 2024 Changes in global hits. (335454 lines) Version 23.67.2: Mar 09, 2024 Changes in layout. Fixed missing texts in actions. (335424 lines) Version 23.67.1: Mar 08, 2024 Fixed issue in layout. (335308 lines) diff --git a/swad_country.c b/swad_country.c index f23ad464..28ce0676 100644 --- a/swad_country.c +++ b/swad_country.c @@ -865,7 +865,7 @@ void Cty_WriteCountryName (long CtyCod) { char CtyName[Cty_MAX_BYTES_NAME + 1]; Frm_PutForm_t PutForm = (!Frm_CheckIfInside () && // Only if not inside another form - Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB) ? Frm_PUT_FORM : // Only in main browser tab + Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB) ? Frm_PUT_FORM : // Only in main browser tab Frm_DONT_PUT_FORM; /***** Get country name *****/ diff --git a/swad_error.c b/swad_error.c index 43540cd8..36f45e8e 100644 --- a/swad_error.c +++ b/swad_error.c @@ -653,7 +653,7 @@ void Err_ShowErrorAndExit (const char *Txt) /***** End the output *****/ if (!Gbl.Layout.HTMLEndWritten) { - if (Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB) + if (Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB) Lay_WriteAboutZone (); HTM_Txt ("\n" diff --git a/swad_form.c b/swad_form.c index 4bd0eca5..5db12c80 100644 --- a/swad_form.c +++ b/swad_form.c @@ -135,8 +135,8 @@ static void Frm_BeginFormInternal (Act_Action_t NextAction,bool PutParLocationIf HTM_TxtF (" onsubmit=\"%s\"",OnSubmit); switch (Act_GetBrowserTab (NextAction)) { - case Act_BRW_NEW_TAB: - case Act_DOWNLD_FILE: + case Act_NEW_TAB: + case Act_DWN_FIL: HTM_Txt (" target=\"_blank\""); break; default: diff --git a/swad_global.c b/swad_global.c index b7d6f7f7..2fabd9d9 100644 --- a/swad_global.c +++ b/swad_global.c @@ -258,7 +258,7 @@ void Gbl_Cleanup (void) if (!Gbl.Action.UsesAJAX && !Gbl.WebService.IsWebService && - Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB) + Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB) Ses_DB_RemovePar (); Hie_FreeMyHierarchy (); diff --git a/swad_hierarchy.c b/swad_hierarchy.c index ae8379ab..d982bb35 100644 --- a/swad_hierarchy.c +++ b/swad_hierarchy.c @@ -1509,7 +1509,7 @@ void Hie_PutIconToSelectMyHierarchy (__attribute__((unused)) void *Args) /****************** Select one node from my hierarchy ************************/ /*****************************************************************************/ -void Hie_ReqSelectOneNodeFromMyHierarchy (void) +void Hie_SelOneNodeFromMyHierarchy (void) { /***** Fill the list with the courses I belong to, if not filled *****/ Hie_GetMyHierarchy (Hie_CRS); diff --git a/swad_hierarchy.h b/swad_hierarchy.h index 6c10212a..fae18477 100644 --- a/swad_hierarchy.h +++ b/swad_hierarchy.h @@ -97,6 +97,6 @@ unsigned Hie_GetNumUsrsWhoClaimToBelongTo (Hie_Level_t Level, void Hie_PutIconToSelectMyHierarchyInBreadcrumb (void); void Hie_PutIconToSelectMyHierarchy (__attribute__((unused)) void *Args); -void Hie_ReqSelectOneNodeFromMyHierarchy (void); +void Hie_SelOneNodeFromMyHierarchy (void); #endif diff --git a/swad_layout.c b/swad_layout.c index a1d93023..89d5b526 100644 --- a/swad_layout.c +++ b/swad_layout.c @@ -158,8 +158,8 @@ void Lay_WriteStartOfPage (void) BrowserTab = Act_GetBrowserTab (Gbl.Action.Act); switch (BrowserTab) { - case Act_BRW_NEW_TAB: - case Act_BRW_2ND_TAB: + case Act_NEW_TAB: + case Act_2ND_TAB: Gbl.Prefs.Theme = The_THEME_WHITE; // In a new tab, use white background break; default: @@ -281,7 +281,7 @@ void Lay_WriteStartOfPage (void) /***** HTML body *****/ switch (BrowserTab) { - case Act_BRW_1ST_TAB: + case Act_1ST_TAB: HTM_TxtF ("\n", The_GetSuffix ()); HTM_DIV_Begin ("id=\"zoomLyr\" class=\"ZOOM ZOOM_%s\"", @@ -292,8 +292,8 @@ void Lay_WriteStartOfPage (void) HTM_DIV_End (); HTM_DIV_End (); break; - case Act_BRW_NEW_TAB: - case Act_BRW_2ND_TAB: + case Act_NEW_TAB: + case Act_2ND_TAB: HTM_Txt ("= ActLst_NUM_ACTIONS) + return NULL; + + return Mnu_Menu[Gbl.Action.Tab][Act_GetIndexInMenu (Action)].Icon; + } + /*****************************************************************************/ /******* When I change to another tab, go to the first option allowed ********/ /*****************************************************************************/ @@ -203,7 +335,7 @@ Act_Action_t Mnu_GetFirstActionAvailableInCurrentTab (void) NumOptInMenu < Act_MAX_OPTIONS_IN_MENU_PER_TAB; NumOptInMenu++) { - if ((Action = Mnu_MenuActions[Gbl.Action.Tab][NumOptInMenu]) == 0) + if ((Action = Mnu_Menu[Gbl.Action.Tab][NumOptInMenu].Action) == 0) return ActUnk; if (Act_CheckIfIHavePermissionToExecuteAction (Action)) return Action; @@ -240,7 +372,7 @@ void Mnu_WriteMenuThisTab (void) NumOptInMenu < Act_MAX_OPTIONS_IN_MENU_PER_TAB; NumOptInMenu++) { - NumAct = Mnu_MenuActions[Gbl.Action.Tab][NumOptInMenu]; + NumAct = Mnu_Menu[Gbl.Action.Tab][NumOptInMenu].Action; if (NumAct == 0) // At the end of each tab, actions are initialized to 0, so 0 marks the end of the menu break; if (Act_CheckIfIHavePermissionToExecuteAction (NumAct)) diff --git a/swad_menu.h b/swad_menu.h index 35f0a9c6..ce310ad3 100644 --- a/swad_menu.h +++ b/swad_menu.h @@ -45,6 +45,8 @@ typedef enum /***************************** Public prototypes *****************************/ /*****************************************************************************/ +const char *Mnu_GetIcon (Act_Action_t Action); + Act_Action_t Mnu_GetFirstActionAvailableInCurrentTab (void); void Mnu_WriteMenuThisTab (void); diff --git a/swad_parameter.c b/swad_parameter.c index 41c066e7..05e70e3e 100644 --- a/swad_parameter.c +++ b/swad_parameter.c @@ -776,11 +776,11 @@ void Par_GetMainPars (void) /***** Some preliminary adjusts depending on action *****/ switch (Act_GetBrowserTab (Gbl.Action.Act)) { - case Act_AJAX_NORMAL: + case Act_AJAX_NR: Gbl.Action.UsesAJAX = true; Gbl.Action.IsAJAXAutoRefresh = false; break; - case Act_AJAX_RFRESH: + case Act_AJAX_RF: Gbl.Action.UsesAJAX = true; Gbl.Action.IsAJAXAutoRefresh = true; break; diff --git a/swad_photo.c b/swad_photo.c index da38ae1b..93740919 100644 --- a/swad_photo.c +++ b/swad_photo.c @@ -1073,9 +1073,9 @@ void Pho_BuildHTMLUsrPhoto (const struct Usr_Data *UsrDat,const char *PhotoURL, unsigned NumFollowers; bool PhotoExists; Act_BrowserTab_t BrowserTab = Act_GetBrowserTab (Gbl.Action.Act); - bool BrowserTabIs1stTab = (BrowserTab == Act_BRW_1ST_TAB || - BrowserTab == Act_AJAX_NORMAL || - BrowserTab == Act_AJAX_RFRESH); + bool BrowserTabIs1stTab = (BrowserTab == Act_1ST_TAB || + BrowserTab == Act_AJAX_NR || + BrowserTab == Act_AJAX_RF); bool PutZoomCode = (Zoom == Pho_ZOOM) && // Make zoom BrowserTabIs1stTab; // Only in main browser tab (or AJAX) char IdCaption[Frm_MAX_BYTES_ID + 1]; @@ -1279,9 +1279,9 @@ void Pho_ShowUsrPhoto (const struct Usr_Data *UsrDat,const char *PhotoURL, const char *ClassPhoto,Pho_Zoom_t Zoom) { Act_BrowserTab_t BrowserTab = Act_GetBrowserTab (Gbl.Action.Act); - bool BrowserTabIs1stTab = (BrowserTab == Act_BRW_1ST_TAB || - BrowserTab == Act_AJAX_NORMAL || - BrowserTab == Act_AJAX_RFRESH); + bool BrowserTabIs1stTab = (BrowserTab == Act_1ST_TAB || + BrowserTab == Act_AJAX_NR || + BrowserTab == Act_AJAX_RF); Frm_PutForm_t PutFormPublicProfile = (!Frm_CheckIfInside () && // Only if not inside another form BrowserTabIs1stTab) ? Frm_PUT_FORM : // Only in main browser tab (or AJAX) Frm_DONT_PUT_FORM; diff --git a/swad_record.c b/swad_record.c index cf3a20db..de305b47 100644 --- a/swad_record.c +++ b/swad_record.c @@ -2075,7 +2075,7 @@ void Rec_ShowSharedUsrRecord (Rec_SharedRecordViewType_t TypeOfView, Rec_RecordHelp[Rec_SHA_RECORD_LIST] = Rec_RecordListHelp[UsrDat->Roles.InCurrentCrs]; PutFormLinks = (!Frm_CheckIfInside () && // Only if not inside another form - Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB) ? Frm_PUT_FORM : // Only in main browser tab + Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB) ? Frm_PUT_FORM : // Only in main browser tab Frm_DONT_PUT_FORM; Ins.HieCod = UsrDat->InsCod; @@ -2347,7 +2347,7 @@ static void Rec_PutIconsCommands (__attribute__((unused)) void *Args) }; if (!Frm_CheckIfInside () && // Only if not inside another form - Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB && // Only in main browser tab + Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB && // Only in main browser tab Gbl.Usrs.Me.Logged) // Only if I am logged { ICanViewUsrProfile = Pri_ShowingIsAllowed (Rec_Record.UsrDat->BaPrfVisibility, diff --git a/swad_statistic.c b/swad_statistic.c index 5b91d236..a42990ac 100644 --- a/swad_statistic.c +++ b/swad_statistic.c @@ -680,14 +680,14 @@ static void Sta_WriteSelectorAction (const struct Sta_Stats *Stats) Action == Stats->NumAction ? HTM_OPTION_SELECTED : HTM_OPTION_UNSELECTED, HTM_OPTION_ENABLED, - "%u: %s", + "%04u: %s", (unsigned) Action,Act_GetActionText (Action)); else HTM_OPTION (HTM_Type_UNSIGNED,&ActionUnsigned, Action == Stats->NumAction ? HTM_OPTION_SELECTED : HTM_OPTION_UNSELECTED, HTM_OPTION_ENABLED, - "%u: %s > %s > %s", + "%04u: %s > %s > %s", (unsigned) Action,Tab_GetTxt (Tab), Act_GetTitleAction (Action), Act_GetActionText (Action)); diff --git a/swad_text_action.c b/swad_text_action.c index 137b1219..858e690b 100644 --- a/swad_text_action.c +++ b/swad_text_action.c @@ -173,121 +173,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Landing page" #elif L==10 // tr "Anasayfa" -#endif - , - [ActReqSch] = -#if L==1 // ca - "Sol·licitar la recerca" -#elif L==2 // de - "Suche anfordern" -#elif L==3 // en - "Request search" -#elif L==4 // es - "Solicitar búsqueda" -#elif L==5 // fr - "Demander une recherche" -#elif L==6 // gn - "Mba'ejerure jeheka" -#elif L==7 // it - "Richiedere la ricerca" -#elif L==8 // pl - "Poproś o wyszukiwanie" -#elif L==9 // pt - "Solicitar pesquisa" -#elif L==10 // tr - "Arama iste" -#endif - , - [ActSeeGblTL] = -#if L==1 // ca - "Mostrar timeline global" -#elif L==2 // de - "Globale Timeline anzeigen" -#elif L==3 // en - "Show global timeline" -#elif L==4 // es - "Mostrar timeline global" -#elif L==5 // fr - "Afficher chronologie globale" -#elif L==6 // gn - "Ohechauka línea de tiempo global" -#elif L==7 // it - "Mostra timeline globale" -#elif L==8 // pl - "Pokaż globalną timeline" -#elif L==9 // pt - "Mostrar timeline global" -#elif L==10 // tr - "Küresel zaman çizelgesini göster" -#endif - , - [ActSeeSocPrf] = -#if L==1 // ca - "Suggerir llista d'usuaris a seguir" -#elif L==2 // de - "Schlagen Sie eine Liste von Benutzern vor, denen Sie folgen möchten" -#elif L==3 // en - "Suggest list of users to follow" -#elif L==4 // es - "Sugerir lista de usuarios a seguir" -#elif L==5 // fr - "Suggérer liste d'utilisateurs à suivre" -#elif L==6 // gn - "Epropone lista de usuarios ojesegui ha>ilde;ua" -#elif L==7 // it - "Suggerisci elenco di utenti da seguire" -#elif L==8 // pl - "Zasugeruj listę użytkowników do obserwowania" -#elif L==9 // pt - "Sugerir lista de usuários a seguir" -#elif L==10 // tr - "Takip edilecek kullanıcıların listesini öner" -#endif - , - [ActSeeCal] = -#if L==1 // ca - "Mostrar calendari" -#elif L==2 // de - "Kalender zeigen" -#elif L==3 // en - "Show calendar" -#elif L==4 // es - "Mostrar calendario" -#elif L==5 // fr - "Afficher le calendrier" -#elif L==6 // gn - "Ohechauka calendario" -#elif L==7 // it - "Mostra il calendario" -#elif L==8 // pl - "Pokaż kalendarz" -#elif L==9 // pt - "Mostrar calendário" -#elif L==10 // tr - "Takvimi göster" -#endif - , - [ActSeeNtf] = -#if L==1 // ca - "Mostrar notificacions" -#elif L==2 // de - "Benachrichtigungen zeigen" -#elif L==3 // en - "Show notifications" -#elif L==4 // es - "Mostrar notificaciones" -#elif L==5 // fr - "Afficher les notifications" -#elif L==6 // gn - "Ohechauka marandu" -#elif L==7 // it - "Mostra notifiche" -#elif L==8 // pl - "Pokaż powiadomienia" -#elif L==9 // pt - "Mostrar notificações" -#elif L==10 // tr - "Bildirimleri göster" #endif , [ActLogIn] = @@ -449,6 +334,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Fechar sessão" #elif L==10 // tr "Çıkış yap" +#endif + , + [ActReqSch] = +#if L==1 // ca + "Sol·licitar la recerca" +#elif L==2 // de + "Suche anfordern" +#elif L==3 // en + "Request search" +#elif L==4 // es + "Solicitar búsqueda" +#elif L==5 // fr + "Demander une recherche" +#elif L==6 // gn + "Mba'ejerure jeheka" +#elif L==7 // it + "Richiedere la ricerca" +#elif L==8 // pl + "Poproś o wyszukiwanie" +#elif L==9 // pt + "Solicitar pesquisa" +#elif L==10 // tr + "Arama iste" #endif , [ActSch] = @@ -472,6 +380,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Procurar" #elif L==10 // tr "Aramak" +#endif + , + [ActSeeGblTL] = +#if L==1 // ca + "Mostrar timeline global" +#elif L==2 // de + "Globale Timeline anzeigen" +#elif L==3 // en + "Show global timeline" +#elif L==4 // es + "Mostrar timeline global" +#elif L==5 // fr + "Afficher chronologie globale" +#elif L==6 // gn + "Ohechauka línea de tiempo global" +#elif L==7 // it + "Mostra timeline globale" +#elif L==8 // pl + "Pokaż globalną timeline" +#elif L==9 // pt + "Mostrar timeline global" +#elif L==10 // tr + "Küresel zaman çizelgesini göster" #endif , [ActRefNewPubGblTL] = @@ -886,6 +817,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Delete a comment in global timeline" // Precisa de tradução #elif L==10 // tr "Delete a comment in global timeline" // Çeviri lazim! +#endif + , + [ActSeeSocPrf] = +#if L==1 // ca + "Suggerir llista d'usuaris a seguir" +#elif L==2 // de + "Schlagen Sie eine Liste von Benutzern vor, denen Sie folgen möchten" +#elif L==3 // en + "Suggest list of users to follow" +#elif L==4 // es + "Sugerir lista de usuarios a seguir" +#elif L==5 // fr + "Suggérer liste d'utilisateurs à suivre" +#elif L==6 // gn + "Epropone lista de usuarios ojesegui ha>ilde;ua" +#elif L==7 // it + "Suggerisci elenco di utenti da seguire" +#elif L==8 // pl + "Zasugeruj listę użytkowników do obserwowania" +#elif L==9 // pt + "Sugerir lista de usuários a seguir" +#elif L==10 // tr + "Takip edilecek kullanıcıların listesini öner" #endif , [ActReqOthPubPrf] = @@ -1438,6 +1392,52 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show followers" // Precisa de tradução #elif L==10 // tr "Show followers" // Çeviri lazim! +#endif + , + [ActSeeUsrAgd] = +#if L==1 // ca + "See a user's public agenda" // Necessita traducció +#elif L==2 // de + "See a user's public agenda" // Need Übersetzung +#elif L==3 // en + "See a user's public agenda" +#elif L==4 // es + "Ver la agenda pública de usuario" +#elif L==5 // fr + "See a user's public agenda" // Besoin de traduction +#elif L==6 // gn + "Ver la agenda pública de usuario" // Okoteve traducción +#elif L==7 // it + "See a user's public agenda" // Bisogno di traduzione +#elif L==8 // pl + "See a user's public agenda" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See a user's public agenda" // Precisa de tradução +#elif L==10 // tr + "See a user's public agenda" // Çeviri lazim! +#endif + , + [ActSeeCal] = +#if L==1 // ca + "Mostrar calendari" +#elif L==2 // de + "Kalender zeigen" +#elif L==3 // en + "Show calendar" +#elif L==4 // es + "Mostrar calendario" +#elif L==5 // fr + "Afficher le calendrier" +#elif L==6 // gn + "Ohechauka calendario" +#elif L==7 // it + "Mostra il calendario" +#elif L==8 // pl + "Pokaż kalendarz" +#elif L==9 // pt + "Mostrar calendário" +#elif L==10 // tr + "Takvimi göster" #endif , [ActPrnCal] = @@ -1484,6 +1484,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change first day of the week in calendar" // Precisa de tradução #elif L==10 // tr "Change first day of the week in calendar" // Çeviri lazim! +#endif + , + [ActSeeNtf] = +#if L==1 // ca + "Mostrar notificacions" +#elif L==2 // de + "Benachrichtigungen zeigen" +#elif L==3 // en + "Show notifications" +#elif L==4 // es + "Mostrar notificaciones" +#elif L==5 // fr + "Afficher les notifications" +#elif L==6 // gn + "Ohechauka marandu" +#elif L==7 // it + "Mostra notifiche" +#elif L==8 // pl + "Pokaż powiadomienia" +#elif L==9 // pt + "Mostrar notificações" +#elif L==10 // tr + "Bildirimleri göster" #endif , [ActSeeNewNtf] = @@ -1691,121 +1714,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show information on the platform" // Precisa de tradução #elif L==10 // tr "Show information on the platform" // Çeviri lazim! -#endif - , - [ActSeeCty] = -#if L==1 // ca - "List countries" // Necessita traducció -#elif L==2 // de - "List countries" // Need Übersetzung -#elif L==3 // en - "List countries" -#elif L==4 // es - "Listar países" -#elif L==5 // fr - "List countries" // Besoin de traduction -#elif L==6 // gn - "Listar países" // Okoteve traducción -#elif L==7 // it - "List countries" // Bisogno di traduzione -#elif L==8 // pl - "List countries" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List countries" // Precisa de tradução -#elif L==10 // tr - "List countries" // Çeviri lazim! -#endif - , - [ActSeePen] = -#if L==1 // ca - "Institutions, centers, titulacions i assignatures pendents d'activar" -#elif L==2 // de - "Anhängig Hochschulen, Lehrinstitute, Studiengang und Kursen" -#elif L==3 // en - "Pending institutions, centers, degrees and courses" -#elif L==4 // es - "Instituciones, centros, titulaciones y asignaturas pendientes de activar" -#elif L==5 // fr - "Établissements, centers, études et matières en attente" -#elif L==6 // gn - "Instituciones, centros, titulaciones y asignaturas pendientes de activar" // Okoteve traducción -#elif L==7 // it - "Istituzioni, centri, lauree e corsi in attesa di essere attivati" -#elif L==8 // pl - "Instytucje, centra, stopnie i kursõw oczekujący" -#elif L==9 // pt - "Instituções, centros, graus e disciplinas pendentes" -#elif L==10 // tr - "Pending institutions, centers, degrees and courses" // Çeviri lazim! -#endif - , - [ActSeeLnk] = -#if L==1 // ca - "See institutional links" // Necessita traducció -#elif L==2 // de - "See institutional links" // Need Übersetzung -#elif L==3 // en - "See institutional links" -#elif L==4 // es - "Ver enlaces institucionales" -#elif L==5 // fr - "See institutional links" // Besoin de traduction -#elif L==6 // gn - "Ver enlaces institucionales" // Okoteve traducción -#elif L==7 // it - "See institutional links" // Bisogno di traduzione -#elif L==8 // pl - "See institutional links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See institutional links" // Precisa de tradução -#elif L==10 // tr - "See institutional links" // Çeviri lazim! -#endif - , - [ActSeePlg] = -#if L==1 // ca - "List plugins" // Necessita traducció -#elif L==2 // de - "List plugins" // Need Übersetzung -#elif L==3 // en - "List plugins" -#elif L==4 // es - "Listar complementos" -#elif L==5 // fr - "List plugins" // Besoin de traduction -#elif L==6 // gn - "Listar complementos" // Okoteve traducción -#elif L==7 // it - "List plugins" // Bisogno di traduzione -#elif L==8 // pl - "List plugins" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List plugins" // Precisa de tradução -#elif L==10 // tr - "List plugins" // Çeviri lazim! -#endif - , - [ActMtn] = -#if L==1 // ca - "Manteniment" -#elif L==2 // de - "Erhaltung" -#elif L==3 // en - "Maintenance" -#elif L==4 // es - "Mantenimiento" -#elif L==5 // fr - "Entretien" -#elif L==6 // gn - "Ñemyatyrõ" -#elif L==7 // it - "Manutenzione" -#elif L==8 // pl - "Utrzymanie" -#elif L==9 // pt - "Manutenção" -#elif L==10 // tr - "Maintenance" // Çeviri lazim! #endif , [ActPrnSysInf] = @@ -1829,6 +1737,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Print information on the platform" // Precisa de tradução #elif L==10 // tr "Print information on the platform" // Çeviri lazim! +#endif + , + [ActSeeCty] = +#if L==1 // ca + "List countries" // Necessita traducció +#elif L==2 // de + "List countries" // Need Übersetzung +#elif L==3 // en + "List countries" +#elif L==4 // es + "Listar países" +#elif L==5 // fr + "List countries" // Besoin de traduction +#elif L==6 // gn + "Listar países" // Okoteve traducción +#elif L==7 // it + "List countries" // Bisogno di traduzione +#elif L==8 // pl + "List countries" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List countries" // Precisa de tradução +#elif L==10 // tr + "List countries" // Çeviri lazim! #endif , [ActEdiCty] = @@ -1944,6 +1875,190 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change web of country" // Precisa de tradução #elif L==10 // tr "Change web of country" // Çeviri lazim! +#endif + , + [ActSeePen] = +#if L==1 // ca + "Institutions, centers, titulacions i assignatures pendents d'activar" +#elif L==2 // de + "Anhängig Hochschulen, Lehrinstitute, Studiengang und Kursen" +#elif L==3 // en + "Pending institutions, centers, degrees and courses" +#elif L==4 // es + "Instituciones, centros, titulaciones y asignaturas pendientes de activar" +#elif L==5 // fr + "Établissements, centers, études et matières en attente" +#elif L==6 // gn + "Instituciones, centros, titulaciones y asignaturas pendientes de activar" // Okoteve traducción +#elif L==7 // it + "Istituzioni, centri, lauree e corsi in attesa di essere attivati" +#elif L==8 // pl + "Instytucje, centra, stopnie i kursõw oczekujący" +#elif L==9 // pt + "Instituções, centros, graus e disciplinas pendentes" +#elif L==10 // tr + "Pending institutions, centers, degrees and courses" // Çeviri lazim! +#endif + , + [ActSeeLnk] = +#if L==1 // ca + "See institutional links" // Necessita traducció +#elif L==2 // de + "See institutional links" // Need Übersetzung +#elif L==3 // en + "See institutional links" +#elif L==4 // es + "Ver enlaces institucionales" +#elif L==5 // fr + "See institutional links" // Besoin de traduction +#elif L==6 // gn + "Ver enlaces institucionales" // Okoteve traducción +#elif L==7 // it + "See institutional links" // Bisogno di traduzione +#elif L==8 // pl + "See institutional links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See institutional links" // Precisa de tradução +#elif L==10 // tr + "See institutional links" // Çeviri lazim! +#endif + , + [ActEdiLnk] = +#if L==1 // ca + "Edit institutional links" // Necessita traducció +#elif L==2 // de + "Edit institutional links" // Need Übersetzung +#elif L==3 // en + "Edit institutional links" +#elif L==4 // es + "Editar enlaces institucionales" +#elif L==5 // fr + "Edit institutional links" // Besoin de traduction +#elif L==6 // gn + "Editar enlaces institucionales" // Okoteve traducción +#elif L==7 // it + "Edit institutional links" // Bisogno di traduzione +#elif L==8 // pl + "Edit institutional links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit institutional links" // Precisa de tradução +#elif L==10 // tr + "Edit institutional links" // Çeviri lazim! +#endif + , + [ActNewLnk] = +#if L==1 // ca + "Crear enllaç" +#elif L==2 // de + "Link erstellen" +#elif L==3 // en + "Create link" +#elif L==4 // es + "Crear enlace" +#elif L==5 // fr + "Créer lien" +#elif L==6 // gn + "Crear enlace" // Okoteve traducción +#elif L==7 // it + "Creare link" +#elif L==8 // pl + "Utwórz link" +#elif L==9 // pt + "Criar ligação" +#elif L==10 // tr + "Create link" // Çeviri lazim! +#endif + , + [ActRemLnk] = +#if L==1 // ca + "Request removal of institutional link" // Necessita traducció +#elif L==2 // de + "Request removal of institutional link" // Need Übersetzung +#elif L==3 // en + "Request removal of institutional link" +#elif L==4 // es + "Solicitar eliminación de un enlace institucional" +#elif L==5 // fr + "Request removal of institutional link" // Besoin de traduction +#elif L==6 // gn + "Solicitar eliminación de un enlace institucional" // Okoteve traducción +#elif L==7 // it + "Request removal of institutional link" // Bisogno di traduzione +#elif L==8 // pl + "Request removal of institutional link" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request removal of institutional link" // Precisa de tradução +#elif L==10 // tr + "Request removal of institutional link" // Çeviri lazim! +#endif + , + [ActRenLnkSho] = +#if L==1 // ca + "Request change of the short name of institutional link" // Necessita traducció +#elif L==2 // de + "Request change of the short name of institutional link" // Need Übersetzung +#elif L==3 // en + "Request change of the short name of institutional link" +#elif L==4 // es + "Solicitar el cambio del nombre breve de un enlace institucional" +#elif L==5 // fr + "Request change of the short name of institutional link" // Besoin de traduction +#elif L==6 // gn + "Solicitar el cambio del nombre breve de un enlace institucional" // Okoteve traducción +#elif L==7 // it + "Request change of the short name of institutional link" // Bisogno di traduzione +#elif L==8 // pl + "Request change of the short name of institutional link" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request change of the short name of institutional link" // Precisa de tradução +#elif L==10 // tr + "Request change of the short name of institutional link" // Çeviri lazim! +#endif + , + [ActRenLnkFul] = +#if L==1 // ca + "Request change of the full name of institutional link" // Necessita traducció +#elif L==2 // de + "Request change of the full name of institutional link" // Need Übersetzung +#elif L==3 // en + "Request change of the full name of institutional link" +#elif L==4 // es + "Solicitar el cambio del nombre completo de un enlace institucional" +#elif L==5 // fr + "Request change of the full name of institutional link" // Besoin de traduction +#elif L==6 // gn + "Solicitar el cambio del nombre completo de un enlace institucional" // Okoteve traducción +#elif L==7 // it + "Request change of the full name of institutional link" // Bisogno di traduzione +#elif L==8 // pl + "Request change of the full name of institutional link" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request change of the full name of institutional link" // Precisa de tradução +#elif L==10 // tr + "Request change of the full name of institutional link" // Çeviri lazim! +#endif + , + [ActChgLnkWWW] = +#if L==1 // ca + "Request change of the web of institutional link" // Necessita traducció +#elif L==2 // de + "Request change of the web of institutional link" // Need Übersetzung +#elif L==3 // en + "Request change of the web of institutional link" +#elif L==4 // es + "Solicitar el cambio de la web de un enlace institucional" +#elif L==5 // fr + "Request change of the web of institutional link" // Besoin de traduction +#elif L==6 // gn + "Solicitar el cambio de la web de un enlace institucional" // Okoteve traducción +#elif L==7 // it + "Request change of the web of institutional link" // Bisogno di traduzione +#elif L==8 // pl + "Request change of the web of institutional link" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request change of the web of institutional link" // Precisa de tradução +#elif L==10 // tr + "Request change of the web of institutional link" // Çeviri lazim! #endif , [ActSeeBan] = @@ -2199,142 +2314,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Go to a banner when clicked" // Çeviri lazim! #endif , - [ActEdiLnk] = + [ActSeePlg] = #if L==1 // ca - "Edit institutional links" // Necessita traducció + "List plugins" // Necessita traducció #elif L==2 // de - "Edit institutional links" // Need Übersetzung + "List plugins" // Need Übersetzung #elif L==3 // en - "Edit institutional links" + "List plugins" #elif L==4 // es - "Editar enlaces institucionales" + "Listar complementos" #elif L==5 // fr - "Edit institutional links" // Besoin de traduction + "List plugins" // Besoin de traduction #elif L==6 // gn - "Editar enlaces institucionales" // Okoteve traducción + "Listar complementos" // Okoteve traducción #elif L==7 // it - "Edit institutional links" // Bisogno di traduzione + "List plugins" // Bisogno di traduzione #elif L==8 // pl - "Edit institutional links" // Potrzebujesz tlumaczenie + "List plugins" // Potrzebujesz tlumaczenie #elif L==9 // pt - "Edit institutional links" // Precisa de tradução + "List plugins" // Precisa de tradução #elif L==10 // tr - "Edit institutional links" // Çeviri lazim! -#endif - , - [ActNewLnk] = -#if L==1 // ca - "Crear enllaç" -#elif L==2 // de - "Link erstellen" -#elif L==3 // en - "Create link" -#elif L==4 // es - "Crear enlace" -#elif L==5 // fr - "Créer lien" -#elif L==6 // gn - "Crear enlace" // Okoteve traducción -#elif L==7 // it - "Creare link" -#elif L==8 // pl - "Utwórz link" -#elif L==9 // pt - "Criar ligação" -#elif L==10 // tr - "Create link" // Çeviri lazim! -#endif - , - [ActRemLnk] = -#if L==1 // ca - "Request removal of institutional link" // Necessita traducció -#elif L==2 // de - "Request removal of institutional link" // Need Übersetzung -#elif L==3 // en - "Request removal of institutional link" -#elif L==4 // es - "Solicitar eliminación de un enlace institucional" -#elif L==5 // fr - "Request removal of institutional link" // Besoin de traduction -#elif L==6 // gn - "Solicitar eliminación de un enlace institucional" // Okoteve traducción -#elif L==7 // it - "Request removal of institutional link" // Bisogno di traduzione -#elif L==8 // pl - "Request removal of institutional link" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request removal of institutional link" // Precisa de tradução -#elif L==10 // tr - "Request removal of institutional link" // Çeviri lazim! -#endif - , - [ActRenLnkSho] = -#if L==1 // ca - "Request change of the short name of institutional link" // Necessita traducció -#elif L==2 // de - "Request change of the short name of institutional link" // Need Übersetzung -#elif L==3 // en - "Request change of the short name of institutional link" -#elif L==4 // es - "Solicitar el cambio del nombre breve de un enlace institucional" -#elif L==5 // fr - "Request change of the short name of institutional link" // Besoin de traduction -#elif L==6 // gn - "Solicitar el cambio del nombre breve de un enlace institucional" // Okoteve traducción -#elif L==7 // it - "Request change of the short name of institutional link" // Bisogno di traduzione -#elif L==8 // pl - "Request change of the short name of institutional link" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request change of the short name of institutional link" // Precisa de tradução -#elif L==10 // tr - "Request change of the short name of institutional link" // Çeviri lazim! -#endif - , - [ActRenLnkFul] = -#if L==1 // ca - "Request change of the full name of institutional link" // Necessita traducció -#elif L==2 // de - "Request change of the full name of institutional link" // Need Übersetzung -#elif L==3 // en - "Request change of the full name of institutional link" -#elif L==4 // es - "Solicitar el cambio del nombre completo de un enlace institucional" -#elif L==5 // fr - "Request change of the full name of institutional link" // Besoin de traduction -#elif L==6 // gn - "Solicitar el cambio del nombre completo de un enlace institucional" // Okoteve traducción -#elif L==7 // it - "Request change of the full name of institutional link" // Bisogno di traduzione -#elif L==8 // pl - "Request change of the full name of institutional link" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request change of the full name of institutional link" // Precisa de tradução -#elif L==10 // tr - "Request change of the full name of institutional link" // Çeviri lazim! -#endif - , - [ActChgLnkWWW] = -#if L==1 // ca - "Request change of the web of institutional link" // Necessita traducció -#elif L==2 // de - "Request change of the web of institutional link" // Need Übersetzung -#elif L==3 // en - "Request change of the web of institutional link" -#elif L==4 // es - "Solicitar el cambio de la web de un enlace institucional" -#elif L==5 // fr - "Request change of the web of institutional link" // Besoin de traduction -#elif L==6 // gn - "Solicitar el cambio de la web de un enlace institucional" // Okoteve traducción -#elif L==7 // it - "Request change of the web of institutional link" // Bisogno di traduzione -#elif L==8 // pl - "Request change of the web of institutional link" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request change of the web of institutional link" // Precisa de tradução -#elif L==10 // tr - "Request change of the web of institutional link" // Çeviri lazim! + "List plugins" // Çeviri lazim! #endif , [ActEdiPlg] = @@ -2542,6 +2542,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change IP address of a plugin" // Precisa de tradução #elif L==10 // tr "Change IP address of a plugin" // Çeviri lazim! +#endif + , + [ActMtn] = +#if L==1 // ca + "Manteniment" +#elif L==2 // de + "Erhaltung" +#elif L==3 // en + "Maintenance" +#elif L==4 // es + "Mantenimiento" +#elif L==5 // fr + "Entretien" +#elif L==6 // gn + "Ñemyatyrõ" +#elif L==7 // it + "Manutenzione" +#elif L==8 // pl + "Utrzymanie" +#elif L==9 // pt + "Manutenção" +#elif L==10 // tr + "Maintenance" // Çeviri lazim! #endif , [ActSetUp] = @@ -2634,29 +2657,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show information on the country" // Precisa de tradução #elif L==10 // tr "Show information on the country" // Çeviri lazim! -#endif - , - [ActSeeIns] = -#if L==1 // ca - "List institutions" // Necessita traducció -#elif L==2 // de - "List institutions" // Need Übersetzung -#elif L==3 // en - "List institutions" -#elif L==4 // es - "Listar instituciones" -#elif L==5 // fr - "List institutions" // Besoin de traduction -#elif L==6 // gn - "Listar instituciones" // Okoteve traducción -#elif L==7 // it - "List institutions" // Bisogno di traduzione -#elif L==8 // pl - "List institutions" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List institutions" // Precisa de tradução -#elif L==10 // tr - "List institutions" // Çeviri lazim! #endif , [ActPrnCtyInf] = @@ -2703,6 +2703,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change map attribution of a country" // Precisa de tradução #elif L==10 // tr "Change map attribution of a country" // Çeviri lazim! +#endif + , + [ActSeeIns] = +#if L==1 // ca + "List institutions" // Necessita traducció +#elif L==2 // de + "List institutions" // Need Übersetzung +#elif L==3 // en + "List institutions" +#elif L==4 // es + "Listar instituciones" +#elif L==5 // fr + "List institutions" // Besoin de traduction +#elif L==6 // gn + "Listar instituciones" // Okoteve traducción +#elif L==7 // it + "List institutions" // Bisogno di traduzione +#elif L==8 // pl + "List institutions" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List institutions" // Precisa de tradução +#elif L==10 // tr + "List institutions" // Çeviri lazim! #endif , [ActEdiIns] = @@ -2910,98 +2933,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show information on the institution" // Precisa de tradução #elif L==10 // tr "Show information on the institution" // Çeviri lazim! -#endif - , - [ActSeeCtr] = -#if L==1 // ca - "List centers" // Necessita traducció -#elif L==2 // de - "List centers" // Need Übersetzung -#elif L==3 // en - "List centers" -#elif L==4 // es - "Listar centros" -#elif L==5 // fr - "List centers" // Besoin de traduction -#elif L==6 // gn - "Listar centros" // Okoteve traducción -#elif L==7 // it - "List centers" // Bisogno di traduzione -#elif L==8 // pl - "List centers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List centers" // Precisa de tradução -#elif L==10 // tr - "List centers" // Çeviri lazim! -#endif - , - [ActSeePlc] = -#if L==1 // ca - "List places" // Necessita traducció -#elif L==2 // de - "List places" // Need Übersetzung -#elif L==3 // en - "List places" -#elif L==4 // es - "Listar lugares" -#elif L==5 // fr - "List places" // Besoin de traduction -#elif L==6 // gn - "Listar lugares" // Okoteve traducción -#elif L==7 // it - "List places" // Bisogno di traduzione -#elif L==8 // pl - "List places" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List places" // Precisa de tradução -#elif L==10 // tr - "List places" // Çeviri lazim! -#endif - , - [ActSeeDpt] = -#if L==1 // ca - "List departments" // Necessita traducció -#elif L==2 // de - "List departments" // Need Übersetzung -#elif L==3 // en - "List departments" -#elif L==4 // es - "Listar departamentos" -#elif L==5 // fr - "List departments" // Besoin de traduction -#elif L==6 // gn - "Listar departamentos" // Okoteve traducción -#elif L==7 // it - "List departments" // Bisogno di traduzione -#elif L==8 // pl - "List departments" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List departments" // Precisa de tradução -#elif L==10 // tr - "List departments" // Çeviri lazim! -#endif - , - [ActSeeHld] = -#if L==1 // ca - "List holidays" // Necessita traducció -#elif L==2 // de - "List holidays" // Need Übersetzung -#elif L==3 // en - "List holidays" -#elif L==4 // es - "Listar festivos" -#elif L==5 // fr - "List holidays" // Besoin de traduction -#elif L==6 // gn - "Listar festivos" // Okoteve traducción -#elif L==7 // it - "List holidays" // Bisogno di traduzione -#elif L==8 // pl - "List holidays" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List holidays" // Precisa de tradução -#elif L==10 // tr - "List holidays" // Çeviri lazim! #endif , [ActPrnInsInf] = @@ -3186,6 +3117,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Remove the logo of the current institution" // Precisa de tradução #elif L==10 // tr "Remove the logo of the current institution" // Çeviri lazim! +#endif + , + [ActSeeCtr] = +#if L==1 // ca + "List centers" // Necessita traducció +#elif L==2 // de + "List centers" // Need Übersetzung +#elif L==3 // en + "List centers" +#elif L==4 // es + "Listar centros" +#elif L==5 // fr + "List centers" // Besoin de traduction +#elif L==6 // gn + "Listar centros" // Okoteve traducción +#elif L==7 // it + "List centers" // Bisogno di traduzione +#elif L==8 // pl + "List centers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List centers" // Precisa de tradução +#elif L==10 // tr + "List centers" // Çeviri lazim! #endif , [ActEdiCtr] = @@ -3393,6 +3347,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change status of center" // Precisa de tradução #elif L==10 // tr "Change status of center" // Çeviri lazim! +#endif + , + [ActSeePlc] = +#if L==1 // ca + "List places" // Necessita traducció +#elif L==2 // de + "List places" // Need Übersetzung +#elif L==3 // en + "List places" +#elif L==4 // es + "Listar lugares" +#elif L==5 // fr + "List places" // Besoin de traduction +#elif L==6 // gn + "Listar lugares" // Okoteve traducción +#elif L==7 // it + "List places" // Bisogno di traduzione +#elif L==8 // pl + "List places" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List places" // Precisa de tradução +#elif L==10 // tr + "List places" // Çeviri lazim! #endif , [ActEdiPlc] = @@ -3508,6 +3485,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change full name of a place" // Precisa de tradução #elif L==10 // tr "Change full name of a place" // Çeviri lazim! +#endif + , + [ActSeeDpt] = +#if L==1 // ca + "List departments" // Necessita traducció +#elif L==2 // de + "List departments" // Need Übersetzung +#elif L==3 // en + "List departments" +#elif L==4 // es + "Listar departamentos" +#elif L==5 // fr + "List departments" // Besoin de traduction +#elif L==6 // gn + "Listar departamentos" // Okoteve traducción +#elif L==7 // it + "List departments" // Bisogno di traduzione +#elif L==8 // pl + "List departments" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List departments" // Precisa de tradução +#elif L==10 // tr + "List departments" // Çeviri lazim! #endif , [ActEdiDpt] = @@ -3671,6 +3671,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change web of a department" // Precisa de tradução #elif L==10 // tr "Change web of a department" // Çeviri lazim! +#endif + , + [ActSeeHld] = +#if L==1 // ca + "List holidays" // Necessita traducció +#elif L==2 // de + "List holidays" // Need Übersetzung +#elif L==3 // en + "List holidays" +#elif L==4 // es + "Listar festivos" +#elif L==5 // fr + "List holidays" // Besoin de traduction +#elif L==6 // gn + "Listar festivos" // Okoteve traducción +#elif L==7 // it + "List holidays" // Bisogno di traduzione +#elif L==8 // pl + "List holidays" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List holidays" // Precisa de tradução +#elif L==10 // tr + "List holidays" // Çeviri lazim! #endif , [ActEdiHld] = @@ -3878,75 +3901,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show information on the center" // Precisa de tradução #elif L==10 // tr "Show information on the center" // Çeviri lazim! -#endif - , - [ActSeeDeg] = -#if L==1 // ca - "List degrees in a center" // Necessita traducció -#elif L==2 // de - "List degrees in a center" // Need Übersetzung -#elif L==3 // en - "List degrees in a center" -#elif L==4 // es - "Listar titulaciones de centro" -#elif L==5 // fr - "List degrees in a center" // Besoin de traduction -#elif L==6 // gn - "Listar titulaciones de centro" // Okoteve traducción -#elif L==7 // it - "List degrees in a center" // Bisogno di traduzione -#elif L==8 // pl - "List degrees in a center" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List degrees in a center" // Precisa de tradução -#elif L==10 // tr - "List degrees in a center" // Çeviri lazim! -#endif - , - [ActSeeBld] = -#if L==1 // ca - "List buildings in a center" // Necessita traducció -#elif L==2 // de - "List buildings in a center" // Need Übersetzung -#elif L==3 // en - "List buildings in a center" -#elif L==4 // es - "Listar edificios de centro" -#elif L==5 // fr - "List buildings in a center" // Besoin de traduction -#elif L==6 // gn - "Listar edificios de centro" // Okoteve traducción -#elif L==7 // it - "List buildings in a center" // Bisogno di traduzione -#elif L==8 // pl - "List buildings in a center" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List buildings in a center" // Precisa de tradução -#elif L==10 // tr - "List buildings in a center" // Çeviri lazim! -#endif - , - [ActSeeRoo] = -#if L==1 // ca - "List rooms in a center" // Necessita traducció -#elif L==2 // de - "List rooms in a center" // Need Übersetzung -#elif L==3 // en - "List rooms in a center" -#elif L==4 // es - "Listar salas de centro" -#elif L==5 // fr - "List rooms in a center" // Besoin de traduction -#elif L==6 // gn - "Listar salas de centro" // Okoteve traducción -#elif L==7 // it - "List rooms in a center" // Bisogno di traduzione -#elif L==8 // pl - "List rooms in a center" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List rooms in a center" // Precisa de tradução -#elif L==10 // tr - "List rooms in a center" // Çeviri lazim! #endif , [ActPrnCtrInf] = @@ -4294,119 +4248,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change attribution of center photo" // Çeviri lazim! #endif , - [ActSeeDegTyp] = + [ActSeeDeg] = #if L==1 // ca - "List types of degrees" // Necessita traducció + "List degrees in a center" // Necessita traducció #elif L==2 // de - "List types of degrees" // Need Übersetzung + "List degrees in a center" // Need Übersetzung #elif L==3 // en - "List types of degrees" + "List degrees in a center" #elif L==4 // es - "Listar tipos de titulación" + "Listar titulaciones de centro" #elif L==5 // fr - "List types of degrees" // Besoin de traduction + "List degrees in a center" // Besoin de traduction #elif L==6 // gn - "Listar tipos de titulación" // Okoteve traducción + "Listar titulaciones de centro" // Okoteve traducción #elif L==7 // it - "List types of degrees" // Bisogno di traduzione + "List degrees in a center" // Bisogno di traduzione #elif L==8 // pl - "List types of degrees" // Potrzebujesz tlumaczenie + "List degrees in a center" // Potrzebujesz tlumaczenie #elif L==9 // pt - "List types of degrees" // Precisa de tradução + "List degrees in a center" // Precisa de tradução #elif L==10 // tr - "List types of degrees" // Çeviri lazim! -#endif - , - [ActEdiDegTyp] = -#if L==1 // ca - "Request edition of types of degrees" // Necessita traducció -#elif L==2 // de - "Request edition of types of degrees" // Need Übersetzung -#elif L==3 // en - "Request edition of types of degrees" -#elif L==4 // es - "Solicitar edición de tipos de titulación" -#elif L==5 // fr - "Request edition of types of degrees" // Besoin de traduction -#elif L==6 // gn - "Solicitar edición de tipos de titulación" // Okoteve traducción -#elif L==7 // it - "Request edition of types of degrees" // Bisogno di traduzione -#elif L==8 // pl - "Request edition of types of degrees" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request edition of types of degrees" // Precisa de tradução -#elif L==10 // tr - "Request edition of types of degrees" // Çeviri lazim! -#endif - , - [ActNewDegTyp] = -#if L==1 // ca - "Crear tipus de titulació" -#elif L==2 // de - "Abschlussart definieren" -#elif L==3 // en - "Create type of degree" -#elif L==4 // es - "Crear tipo de titulación" -#elif L==5 // fr - "Créer type d'étude" -#elif L==6 // gn - "Crear tipo de titulación" // Okoteve traducción -#elif L==7 // it - "Creare tipo di laurea" -#elif L==8 // pl - "Utwórz typu stopnia" -#elif L==9 // pt - "Criar tipo de grau" -#elif L==10 // tr - "Create type of degree" // Çeviri lazim! -#endif - , - [ActRemDegTyp] = -#if L==1 // ca - "Remove type of degree" // Necessita traducció -#elif L==2 // de - "Remove type of degree" // Need Übersetzung -#elif L==3 // en - "Remove type of degree" -#elif L==4 // es - "Eliminar tipo de titulación" -#elif L==5 // fr - "Remove type of degree" // Besoin de traduction -#elif L==6 // gn - "Eliminar tipo de titulación" // Okoteve traducción -#elif L==7 // it - "Remove type of degree" // Bisogno di traduzione -#elif L==8 // pl - "Remove type of degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove type of degree" // Precisa de tradução -#elif L==10 // tr - "Remove type of degree" // Çeviri lazim! -#endif - , - [ActRenDegTyp] = -#if L==1 // ca - "Rename type of degree" // Necessita traducció -#elif L==2 // de - "Rename type of degree" // Need Übersetzung -#elif L==3 // en - "Rename type of degree" -#elif L==4 // es - "Renombrar tipo de titulación" -#elif L==5 // fr - "Rename type of degree" // Besoin de traduction -#elif L==6 // gn - "Renombrar tipo de titulación" // Okoteve traducción -#elif L==7 // it - "Rename type of degree" // Bisogno di traduzione -#elif L==8 // pl - "Rename type of degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rename type of degree" // Precisa de tradução -#elif L==10 // tr - "Rename type of degree" // Çeviri lazim! + "List degrees in a center" // Çeviri lazim! #endif , [ActEdiDeg] = @@ -4614,6 +4476,144 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change status of degree" // Precisa de tradução #elif L==10 // tr "Change status of degree" // Çeviri lazim! +#endif + , + [ActSeeDegTyp] = +#if L==1 // ca + "List types of degrees" // Necessita traducció +#elif L==2 // de + "List types of degrees" // Need Übersetzung +#elif L==3 // en + "List types of degrees" +#elif L==4 // es + "Listar tipos de titulación" +#elif L==5 // fr + "List types of degrees" // Besoin de traduction +#elif L==6 // gn + "Listar tipos de titulación" // Okoteve traducción +#elif L==7 // it + "List types of degrees" // Bisogno di traduzione +#elif L==8 // pl + "List types of degrees" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List types of degrees" // Precisa de tradução +#elif L==10 // tr + "List types of degrees" // Çeviri lazim! +#endif + , + [ActEdiDegTyp] = +#if L==1 // ca + "Request edition of types of degrees" // Necessita traducció +#elif L==2 // de + "Request edition of types of degrees" // Need Übersetzung +#elif L==3 // en + "Request edition of types of degrees" +#elif L==4 // es + "Solicitar edición de tipos de titulación" +#elif L==5 // fr + "Request edition of types of degrees" // Besoin de traduction +#elif L==6 // gn + "Solicitar edición de tipos de titulación" // Okoteve traducción +#elif L==7 // it + "Request edition of types of degrees" // Bisogno di traduzione +#elif L==8 // pl + "Request edition of types of degrees" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request edition of types of degrees" // Precisa de tradução +#elif L==10 // tr + "Request edition of types of degrees" // Çeviri lazim! +#endif + , + [ActNewDegTyp] = +#if L==1 // ca + "Crear tipus de titulació" +#elif L==2 // de + "Abschlussart definieren" +#elif L==3 // en + "Create type of degree" +#elif L==4 // es + "Crear tipo de titulación" +#elif L==5 // fr + "Créer type d'étude" +#elif L==6 // gn + "Crear tipo de titulación" // Okoteve traducción +#elif L==7 // it + "Creare tipo di laurea" +#elif L==8 // pl + "Utwórz typu stopnia" +#elif L==9 // pt + "Criar tipo de grau" +#elif L==10 // tr + "Create type of degree" // Çeviri lazim! +#endif + , + [ActRemDegTyp] = +#if L==1 // ca + "Remove type of degree" // Necessita traducció +#elif L==2 // de + "Remove type of degree" // Need Übersetzung +#elif L==3 // en + "Remove type of degree" +#elif L==4 // es + "Eliminar tipo de titulación" +#elif L==5 // fr + "Remove type of degree" // Besoin de traduction +#elif L==6 // gn + "Eliminar tipo de titulación" // Okoteve traducción +#elif L==7 // it + "Remove type of degree" // Bisogno di traduzione +#elif L==8 // pl + "Remove type of degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove type of degree" // Precisa de tradução +#elif L==10 // tr + "Remove type of degree" // Çeviri lazim! +#endif + , + [ActRenDegTyp] = +#if L==1 // ca + "Rename type of degree" // Necessita traducció +#elif L==2 // de + "Rename type of degree" // Need Übersetzung +#elif L==3 // en + "Rename type of degree" +#elif L==4 // es + "Renombrar tipo de titulación" +#elif L==5 // fr + "Rename type of degree" // Besoin de traduction +#elif L==6 // gn + "Renombrar tipo de titulación" // Okoteve traducción +#elif L==7 // it + "Rename type of degree" // Bisogno di traduzione +#elif L==8 // pl + "Rename type of degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rename type of degree" // Precisa de tradução +#elif L==10 // tr + "Rename type of degree" // Çeviri lazim! +#endif + , + [ActSeeBld] = +#if L==1 // ca + "List buildings in a center" // Necessita traducció +#elif L==2 // de + "List buildings in a center" // Need Übersetzung +#elif L==3 // en + "List buildings in a center" +#elif L==4 // es + "Listar edificios de centro" +#elif L==5 // fr + "List buildings in a center" // Besoin de traduction +#elif L==6 // gn + "Listar edificios de centro" // Okoteve traducción +#elif L==7 // it + "List buildings in a center" // Bisogno di traduzione +#elif L==8 // pl + "List buildings in a center" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List buildings in a center" // Precisa de tradução +#elif L==10 // tr + "List buildings in a center" // Çeviri lazim! #endif , [ActEdiBld] = @@ -4752,6 +4752,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change location of building" // Precisa de tradução #elif L==10 // tr "Change location of building" // Çeviri lazim! +#endif + , + [ActSeeRoo] = +#if L==1 // ca + "List rooms in a center" // Necessita traducció +#elif L==2 // de + "List rooms in a center" // Need Übersetzung +#elif L==3 // en + "List rooms in a center" +#elif L==4 // es + "Listar salas de centro" +#elif L==5 // fr + "List rooms in a center" // Besoin de traduction +#elif L==6 // gn + "Listar salas de centro" // Okoteve traducción +#elif L==7 // it + "List rooms in a center" // Bisogno di traduzione +#elif L==8 // pl + "List rooms in a center" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List rooms in a center" // Precisa de tradução +#elif L==10 // tr + "List rooms in a center" // Çeviri lazim! #endif , [ActEdiRoo] = @@ -5005,29 +5028,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show information on the degree" // Precisa de tradução #elif L==10 // tr "Show information on the degree" // Çeviri lazim! -#endif - , - [ActSeeCrs] = -#if L==1 // ca - "List courses of degree" // Necessita traducció -#elif L==2 // de - "List courses of degree" // Need Übersetzung -#elif L==3 // en - "List courses of degree" -#elif L==4 // es - "Listar asignaturas de titulación" -#elif L==5 // fr - "List courses of degree" // Besoin de traduction -#elif L==6 // gn - "Listar asignaturas de titulación" // Okoteve traducción -#elif L==7 // it - "List courses of degree" // Bisogno di traduzione -#elif L==8 // pl - "List courses of degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List courses of degree" // Precisa de tradução -#elif L==10 // tr - "List courses of degree" // Çeviri lazim! #endif , [ActPrnDegInf] = @@ -5212,6 +5212,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Remove the logo of the current degree" // Precisa de tradução #elif L==10 // tr "Remove the logo of the current degree" // Çeviri lazim! +#endif + , + [ActSeeCrs] = +#if L==1 // ca + "List courses of degree" // Necessita traducció +#elif L==2 // de + "List courses of degree" // Need Übersetzung +#elif L==3 // en + "List courses of degree" +#elif L==4 // es + "Listar asignaturas de titulación" +#elif L==5 // fr + "List courses of degree" // Besoin de traduction +#elif L==6 // gn + "Listar asignaturas de titulación" // Okoteve traducción +#elif L==7 // it + "List courses of degree" // Bisogno di traduzione +#elif L==8 // pl + "List courses of degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List courses of degree" // Precisa de tradução +#elif L==10 // tr + "List courses of degree" // Çeviri lazim! #endif , [ActEdiCrs] = @@ -5442,190 +5465,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show information on the course" // Precisa de tradução #elif L==10 // tr "Show information on the course" // Çeviri lazim! -#endif - , - [ActSeePrg] = -#if L==1 // ca - "Veure programació didàctica de l'assignatura" -#elif L==2 // de - "Siehe Ausbildungsplan des Kurses" -#elif L==3 // en - "See educational schedule of the course" -#elif L==4 // es - "Ver programación didáctica de la asignatura" -#elif L==5 // fr - "Voir programme didactique de la matière" -#elif L==6 // gn - "Ehecha programa didáctico upe materia rehegua" -#elif L==7 // it - "Vedi programma didattico della materia" -#elif L==8 // pl - "Zobacz program edukacyjny kursu" -#elif L==9 // pt - "Ver programa didático da disciplina" -#elif L==10 // tr - "Konunun didaktik programına bakın" -#endif - , - [ActSeeTchGui] = -#if L==1 // ca - "See the teaching guide of course" // Necessita traducció -#elif L==2 // de - "See the teaching guide of course" // Need Übersetzung -#elif L==3 // en - "See the teaching guide of course" -#elif L==4 // es - "Ver la guía docente de la asignatura" -#elif L==5 // fr - "See the teaching guide of course" // Besoin de traduction -#elif L==6 // gn - "Ver la guía docente de la asignatura" // Okoteve traducción -#elif L==7 // it - "See the teaching guide of course" // Bisogno di traduzione -#elif L==8 // pl - "See the teaching guide of course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the teaching guide of course" // Precisa de tradução -#elif L==10 // tr - "See the teaching guide of course" // Çeviri lazim! -#endif - , - [ActSeeSyl] = -#if L==1 // ca - "See the syllabus (lectures or practicals)" // Necessita traducció -#elif L==2 // de - "See the syllabus (lectures or practicals)" // Need Übersetzung -#elif L==3 // en - "See the syllabus (lectures or practicals)" -#elif L==4 // es - "Ver el temario (teoría o prácticas)" -#elif L==5 // fr - "See the syllabus (lectures or practicals)" // Besoin de traduction -#elif L==6 // gn - "Ver el temario (teoría o prácticas)" // Okoteve traducción -#elif L==7 // it - "See the syllabus (lectures or practicals)" // Bisogno di traduzione -#elif L==8 // pl - "See the syllabus (lectures or practicals)" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the syllabus (lectures or practicals)" // Precisa de tradução -#elif L==10 // tr - "See the syllabus (lectures or practicals)" // Çeviri lazim! -#endif - , - [ActSeeBib] = -#if L==1 // ca - "See the bibliography" // Necessita traducció -#elif L==2 // de - "See the bibliography" // Need Übersetzung -#elif L==3 // en - "See the bibliography" -#elif L==4 // es - "Ver la bibliografía" -#elif L==5 // fr - "See the bibliography" // Besoin de traduction -#elif L==6 // gn - "Ver la bibliografía" // Okoteve traducción -#elif L==7 // it - "See the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "See the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the bibliography" // Precisa de tradução -#elif L==10 // tr - "See the bibliography" // Çeviri lazim! -#endif - , - [ActSeeFAQ] = -#if L==1 // ca - "See the FAQ" // Necessita traducció -#elif L==2 // de - "See the FAQ" // Need Übersetzung -#elif L==3 // en - "See the FAQ" -#elif L==4 // es - "Ver la FAQ" -#elif L==5 // fr - "See the FAQ" // Besoin de traduction -#elif L==6 // gn - "Ver la FAQ" // Okoteve traducción -#elif L==7 // it - "See the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "See the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the FAQ" // Precisa de tradução -#elif L==10 // tr - "See the FAQ" // Çeviri lazim! -#endif - , - [ActSeeCrsLnk] = -#if L==1 // ca - "See the links related to the course" // Necessita traducció -#elif L==2 // de - "See the links related to the course" // Need Übersetzung -#elif L==3 // en - "See the links related to the course" -#elif L==4 // es - "Ver los enlaces relacionados con la asignatura" -#elif L==5 // fr - "See the links related to the course" // Besoin de traduction -#elif L==6 // gn - "Ver los enlaces relacionados con la asignatura" // Okoteve traducción -#elif L==7 // it - "See the links related to the course" // Bisogno di traduzione -#elif L==8 // pl - "See the links related to the course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the links related to the course" // Precisa de tradução -#elif L==10 // tr - "See the links related to the course" // Çeviri lazim! -#endif - , - [ActSeeAss] = -#if L==1 // ca - "See assessment system" // Necessita traducció -#elif L==2 // de - "See assessment system" // Need Übersetzung -#elif L==3 // en - "See assessment system" -#elif L==4 // es - "Ver sistema de evaluación" -#elif L==5 // fr - "See assessment system" // Besoin de traduction -#elif L==6 // gn - "Ver sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "See assessment system" // Bisogno di traduzione -#elif L==8 // pl - "See assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See assessment system" // Precisa de tradução -#elif L==10 // tr - "See assessment system" // Çeviri lazim! -#endif - , - [ActSeeCrsTT] = -#if L==1 // ca - "See the course timetable" // Necessita traducció -#elif L==2 // de - "See the course timetable" // Need Übersetzung -#elif L==3 // en - "See the course timetable" -#elif L==4 // es - "Ver el horario de la asignatura" -#elif L==5 // fr - "See the course timetable" // Besoin de traduction -#elif L==6 // gn - "Ver el horario de la asignatura" // Okoteve traducción -#elif L==7 // it - "See the course timetable" // Bisogno di traduzione -#elif L==8 // pl - "See the course timetable" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the course timetable" // Precisa de tradução -#elif L==10 // tr - "See the course timetable" // Çeviri lazim! #endif , [ActPrnCrsInf] = @@ -5787,6 +5626,259 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Edit information about the course" // Precisa de tradução #elif L==10 // tr "Edit information about the course" // Çeviri lazim! +#endif + , + [ActChgFrcReaCrsInf] = +#if L==1 // ca + "Change whether students are forced to read the course information" // Necessita traducció +#elif L==2 // de + "Change whether students are forced to read the course information" // Need Übersetzung +#elif L==3 // en + "Change whether students are forced to read the course information" +#elif L==4 // es + "Cambiar si se obliga a los estudiantes a leer la información de la asignatura" +#elif L==5 // fr + "Change whether students are forced to read the course information" // Besoin de traduction +#elif L==6 // gn + "Cambiar si se obliga a los estudiantes a leer la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Change whether students are forced to read the course information" // Bisogno di traduzione +#elif L==8 // pl + "Change whether students are forced to read the course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change whether students are forced to read the course information" // Precisa de tradução +#elif L==10 // tr + "Change whether students are forced to read the course information" // Çeviri lazim! +#endif + , + [ActChgHavReaCrsInf] = +#if L==1 // ca + "Change if I have read the course information" // Necessita traducció +#elif L==2 // de + "Change if I have read the course information" // Need Übersetzung +#elif L==3 // en + "Change if I have read the course information" +#elif L==4 // es + "Cambiar si he leído la información de la asignatura" +#elif L==5 // fr + "Change if I have read the course information" // Besoin de traduction +#elif L==6 // gn + "Cambiar si he leído la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Change if I have read the course information" // Bisogno di traduzione +#elif L==8 // pl + "Change if I have read the course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change if I have read the course information" // Precisa de tradução +#elif L==10 // tr + "Change if I have read the course information" // Çeviri lazim! +#endif + , + [ActSelInfSrcCrsInf] = +#if L==1 // ca + "Select the type of information shown in the course information" // Necessita traducció +#elif L==2 // de + "Select the type of information shown in the course information" // Need Übersetzung +#elif L==3 // en + "Select the type of information shown in the course information" +#elif L==4 // es + "Seleccionar el tipo de información mostrada en la información de la asignatura" +#elif L==5 // fr + "Select the type of information shown in the course information" // Besoin de traduction +#elif L==6 // gn + "Seleccionar el tipo de información mostrada en la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Select the type of information shown in the course information" // Bisogno di traduzione +#elif L==8 // pl + "Select the type of information shown in the course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select the type of information shown in the course information" // Precisa de tradução +#elif L==10 // tr + "Select the type of information shown in the course information" // Çeviri lazim! +#endif + , + [ActRcvURLCrsInf] = +#if L==1 // ca + "Create URL in the course information" // Necessita traducció +#elif L==2 // de + "Create URL in the course information" // Need Übersetzung +#elif L==3 // en + "Create URL in the course information" +#elif L==4 // es + "Crear una URL en la información de la asignatura" +#elif L==5 // fr + "Create URL in the course information" // Besoin de traduction +#elif L==6 // gn + "Crear una URL en la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Create URL in the course information" // Bisogno di traduzione +#elif L==8 // pl + "Create URL in the course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create URL in the course information" // Precisa de tradução +#elif L==10 // tr + "Create URL in the course information" // Çeviri lazim! +#endif + , + [ActRcvPagCrsInf] = +#if L==1 // ca + "Create web page in the course information" // Necessita traducció +#elif L==2 // de + "Create web page in the course information" // Need Übersetzung +#elif L==3 // en + "Create web page in the course information" +#elif L==4 // es + "Crear una página web en la información de la asignatura" +#elif L==5 // fr + "Create web page in the course information" // Besoin de traduction +#elif L==6 // gn + "Crear una página web en la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Create web page in the course information" // Bisogno di traduzione +#elif L==8 // pl + "Create web page in the course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create web page in the course information" // Precisa de tradução +#elif L==10 // tr + "Create web page in the course information" // Çeviri lazim! +#endif + , + [ActEditorCrsInf] = +#if L==1 // ca + "Integrated editor of course information" // Necessita traducció +#elif L==2 // de + "Integrated editor of course information" // Need Übersetzung +#elif L==3 // en + "Integrated editor of course information" +#elif L==4 // es + "Editor integrado de la información de la asignatura" +#elif L==5 // fr + "Integrated editor of course information" // Besoin de traduction +#elif L==6 // gn + "Editor integrado de la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Integrated editor of course information" // Bisogno di traduzione +#elif L==8 // pl + "Integrated editor of course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Integrated editor of course information" // Precisa de tradução +#elif L==10 // tr + "Integrated editor of course information" // Çeviri lazim! +#endif + , + [ActPlaTxtEdiCrsInf] = +#if L==1 // ca + "Plain text editor of course information" // Necessita traducció +#elif L==2 // de + "Plain text editor of course information" // Need Übersetzung +#elif L==3 // en + "Plain text editor of course information" +#elif L==4 // es + "Editor de texto plano de la información de la asignatura" +#elif L==5 // fr + "Plain text editor of course information" // Besoin de traduction +#elif L==6 // gn + "Editor de texto plano de la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Plain text editor of course information" // Bisogno di traduzione +#elif L==8 // pl + "Plain text editor of course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Plain text editor of course information" // Precisa de tradução +#elif L==10 // tr + "Plain text editor of course information" // Çeviri lazim! +#endif + , + [ActRchTxtEdiCrsInf] = +#if L==1 // ca + "Rich text editor of course information" // Necessita traducció +#elif L==2 // de + "Rich text editor of course information" // Need Übersetzung +#elif L==3 // en + "Rich text editor of course information" +#elif L==4 // es + "Editor de texto enriquecido de la información de la asignatura" +#elif L==5 // fr + "Rich text editor of course information" // Besoin de traduction +#elif L==6 // gn + "Editor de texto enriquecido de la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Rich text editor of course information" // Bisogno di traduzione +#elif L==8 // pl + "Rich text editor of course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rich text editor of course information" // Precisa de tradução +#elif L==10 // tr + "Rich text editor of course information" // Çeviri lazim! +#endif + , + [ActRcvPlaTxtCrsInf] = +#if L==1 // ca + "Change plain text of course information" // Necessita traducció +#elif L==2 // de + "Change plain text of course information" // Need Übersetzung +#elif L==3 // en + "Change plain text of course information" +#elif L==4 // es + "Cambiar texto plano de la información de la asignatura" +#elif L==5 // fr + "Change plain text of course information" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto plano de la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Change plain text of course information" // Bisogno di traduzione +#elif L==8 // pl + "Change plain text of course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change plain text of course information" // Precisa de tradução +#elif L==10 // tr + "Change plain text of course information" // Çeviri lazim! +#endif + , + [ActRcvRchTxtCrsInf] = +#if L==1 // ca + "Change rich text of course information" // Necessita traducció +#elif L==2 // de + "Change rich text of course information" // Need Übersetzung +#elif L==3 // en + "Change rich text of course information" +#elif L==4 // es + "Cambiar texto enriquecido de la información de la asignatura" +#elif L==5 // fr + "Change rich text of course information" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto enriquecido de la información de la asignatura" // Okoteve traducción +#elif L==7 // it + "Change rich text of course information" // Bisogno di traduzione +#elif L==8 // pl + "Change rich text of course information" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change rich text of course information" // Precisa de tradução +#elif L==10 // tr + "Change rich text of course information" // Çeviri lazim! +#endif + , + [ActSeePrg] = +#if L==1 // ca + "Veure programació didàctica de l'assignatura" +#elif L==2 // de + "Siehe Ausbildungsplan des Kurses" +#elif L==3 // en + "See educational schedule of the course" +#elif L==4 // es + "Ver programación didáctica de la asignatura" +#elif L==5 // fr + "Voir programme didactique de la matière" +#elif L==6 // gn + "Ehecha programa didáctico upe materia rehegua" +#elif L==7 // it + "Vedi programma didattico della materia" +#elif L==8 // pl + "Zobacz program edukacyjny kursu" +#elif L==9 // pt + "Ver programa didático da disciplina" +#elif L==10 // tr + "Konunun didaktik programına bakın" #endif , [ActEdiPrg] = @@ -6523,6 +6615,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Alterar link para recurso do programa" #elif L==10 // tr "Programdan kaynağa bağlantıyı değiştir" +#endif + , + [ActSeeTchGui] = +#if L==1 // ca + "See the teaching guide of course" // Necessita traducció +#elif L==2 // de + "See the teaching guide of course" // Need Übersetzung +#elif L==3 // en + "See the teaching guide of course" +#elif L==4 // es + "Ver la guía docente de la asignatura" +#elif L==5 // fr + "See the teaching guide of course" // Besoin de traduction +#elif L==6 // gn + "Ver la guía docente de la asignatura" // Okoteve traducción +#elif L==7 // it + "See the teaching guide of course" // Bisogno di traduzione +#elif L==8 // pl + "See the teaching guide of course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the teaching guide of course" // Precisa de tradução +#elif L==10 // tr + "See the teaching guide of course" // Çeviri lazim! #endif , [ActEdiTchGui] = @@ -6546,6 +6661,259 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Edit teaching guide of course" // Precisa de tradução #elif L==10 // tr "Edit teaching guide of course" // Çeviri lazim! +#endif + , + [ActChgFrcReaTchGui] = +#if L==1 // ca + "Change whether students are forced to read the teaching guide" // Necessita traducció +#elif L==2 // de + "Change whether students are forced to read the teaching guide" // Need Übersetzung +#elif L==3 // en + "Change whether students are forced to read the teaching guide" +#elif L==4 // es + "Cambiar si se obliga a los estudiantes a leer la guía docente" +#elif L==5 // fr + "Change whether students are forced to read the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Cambiar si se obliga a los estudiantes a leer la guía docente" // Okoteve traducción +#elif L==7 // it + "Change whether students are forced to read the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Change whether students are forced to read the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change whether students are forced to read the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Change whether students are forced to read the teaching guide" // Çeviri lazim! +#endif + , + [ActChgHavReaTchGui] = +#if L==1 // ca + "Change if I have read the teaching guide" // Necessita traducció +#elif L==2 // de + "Change if I have read the teaching guide" // Need Übersetzung +#elif L==3 // en + "Change if I have read the teaching guide" +#elif L==4 // es + "Cambiar si he leído la guía docente" +#elif L==5 // fr + "Change if I have read the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Cambiar si he leído la guía docente" // Okoteve traducción +#elif L==7 // it + "Change if I have read the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Change if I have read the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change if I have read the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Change if I have read the teaching guide" // Çeviri lazim! +#endif + , + [ActSelInfSrcTchGui] = +#if L==1 // ca + "Select the type of information shown in the teaching guide" // Necessita traducció +#elif L==2 // de + "Select the type of information shown in the teaching guide" // Need Übersetzung +#elif L==3 // en + "Select the type of information shown in the teaching guide" +#elif L==4 // es + "Seleccionar el tipo de información mostrada en la guía docente" +#elif L==5 // fr + "Select the type of information shown in the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Seleccionar el tipo de información mostrada en la guía docente" // Okoteve traducción +#elif L==7 // it + "Select the type of information shown in the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Select the type of information shown in the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select the type of information shown in the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Select the type of information shown in the teaching guide" // Çeviri lazim! +#endif + , + [ActRcvURLTchGui] = +#if L==1 // ca + "Create URL in the teaching guide" // Necessita traducció +#elif L==2 // de + "Create URL in the teaching guide" // Need Übersetzung +#elif L==3 // en + "Create URL in the teaching guide" +#elif L==4 // es + "Crear una URL en la guía docente" +#elif L==5 // fr + "Create URL in the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Crear una URL en la guía docente" // Okoteve traducción +#elif L==7 // it + "Create URL in the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Create URL in the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create URL in the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Create URL in the teaching guide" // Çeviri lazim! +#endif + , + [ActRcvPagTchGui] = +#if L==1 // ca + "Create web page in the teaching guide" // Necessita traducció +#elif L==2 // de + "Create web page in the teaching guide" // Need Übersetzung +#elif L==3 // en + "Create web page in the teaching guide" +#elif L==4 // es + "Crear una página web en la guía docente" +#elif L==5 // fr + "Create web page in the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Crear una página web en la guía docente" // Okoteve traducción +#elif L==7 // it + "Create web page in the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Create web page in the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create web page in the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Create web page in the teaching guide" // Çeviri lazim! +#endif + , + [ActEditorTchGui] = +#if L==1 // ca + "Integrated editor of the teaching guide" // Necessita traducció +#elif L==2 // de + "Integrated editor of the teaching guide" // Need Übersetzung +#elif L==3 // en + "Integrated editor of the teaching guide" +#elif L==4 // es + "Editor integrado de la guía docente" +#elif L==5 // fr + "Integrated editor of the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Editor integrado de la guía docente" // Okoteve traducción +#elif L==7 // it + "Integrated editor of the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Integrated editor of the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Integrated editor of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Integrated editor of the teaching guide" // Çeviri lazim! +#endif + , + [ActPlaTxtEdiTchGui] = +#if L==1 // ca + "Plain text editor of the teaching guide" // Necessita traducció +#elif L==2 // de + "Plain text editor of the teaching guide" // Need Übersetzung +#elif L==3 // en + "Plain text editor of the teaching guide" +#elif L==4 // es + "Editor de texto plano de la guía docente" +#elif L==5 // fr + "Plain text editor of the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Editor de texto plano de la guía docente" // Okoteve traducción +#elif L==7 // it + "Plain text editor of the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Plain text editor of the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Plain text editor of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Plain text editor of the teaching guide" // Çeviri lazim! +#endif + , + [ActRchTxtEdiTchGui] = +#if L==1 // ca + "Rich text editor of the teaching guide" // Necessita traducció +#elif L==2 // de + "Rich text editor of the teaching guide" // Need Übersetzung +#elif L==3 // en + "Rich text editor of the teaching guide" +#elif L==4 // es + "Editor de texto enriquecido de la guía docente" +#elif L==5 // fr + "Rich text editor of the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Editor de texto enriquecido de la guía docente" // Okoteve traducción +#elif L==7 // it + "Rich text editor of the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Rich text editor of the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rich text editor of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Rich text editor of the teaching guide" // Çeviri lazim! +#endif + , + [ActRcvPlaTxtTchGui] = +#if L==1 // ca + "Change plain text of the teaching guide" // Necessita traducció +#elif L==2 // de + "Change plain text of the teaching guide" // Need Übersetzung +#elif L==3 // en + "Change plain text of the teaching guide" +#elif L==4 // es + "Cambiar texto plano de la guía docente" +#elif L==5 // fr + "Change plain text of the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto plano de la guía docente" // Okoteve traducción +#elif L==7 // it + "Change plain text of the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Change plain text of the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change plain text of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Change plain text of the teaching guide" // Çeviri lazim! +#endif + , + [ActRcvRchTxtTchGui] = +#if L==1 // ca + "Change rich text of the teaching guide" // Necessita traducció +#elif L==2 // de + "Change rich text of the teaching guide" // Need Übersetzung +#elif L==3 // en + "Change rich text of the teaching guide" +#elif L==4 // es + "Cambiar texto enriquecido de la guía docente" +#elif L==5 // fr + "Change rich text of the teaching guide" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto enriquecido de la guía docente" // Okoteve traducción +#elif L==7 // it + "Change rich text of the teaching guide" // Bisogno di traduzione +#elif L==8 // pl + "Change rich text of the teaching guide" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change rich text of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "Change rich text of the teaching guide" // Çeviri lazim! +#endif + , + [ActSeeSyl] = +#if L==1 // ca + "See the syllabus (lectures or practicals)" // Necessita traducció +#elif L==2 // de + "See the syllabus (lectures or practicals)" // Need Übersetzung +#elif L==3 // en + "See the syllabus (lectures or practicals)" +#elif L==4 // es + "Ver el temario (teoría o prácticas)" +#elif L==5 // fr + "See the syllabus (lectures or practicals)" // Besoin de traduction +#elif L==6 // gn + "Ver el temario (teoría o prácticas)" // Okoteve traducción +#elif L==7 // it + "See the syllabus (lectures or practicals)" // Bisogno di traduzione +#elif L==8 // pl + "See the syllabus (lectures or practicals)" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the syllabus (lectures or practicals)" // Precisa de tradução +#elif L==10 // tr + "See the syllabus (lectures or practicals)" // Çeviri lazim! #endif , [ActSeeSylLec] = @@ -6960,144 +7328,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change item in the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Change item in the practicals syllabus" // Çeviri lazim! -#endif - , - [ActEdiBib] = -#if L==1 // ca - "Edit bibliography" // Necessita traducció -#elif L==2 // de - "Edit bibliography" // Need Übersetzung -#elif L==3 // en - "Edit bibliography" -#elif L==4 // es - "Editar la bibliografía" -#elif L==5 // fr - "Edit bibliography" // Besoin de traduction -#elif L==6 // gn - "Editar la bibliografía" // Okoteve traducción -#elif L==7 // it - "Edit bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Edit bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit bibliography" // Precisa de tradução -#elif L==10 // tr - "Edit bibliography" // Çeviri lazim! -#endif - , - [ActEdiFAQ] = -#if L==1 // ca - "Edit FAQ" // Necessita traducció -#elif L==2 // de - "Edit FAQ" // Need Übersetzung -#elif L==3 // en - "Edit FAQ" -#elif L==4 // es - "Editar la FAQ" -#elif L==5 // fr - "Edit FAQ" // Besoin de traduction -#elif L==6 // gn - "Editar la FAQ" // Okoteve traducción -#elif L==7 // it - "Edit FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Edit FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit FAQ" // Precisa de tradução -#elif L==10 // tr - "Edit FAQ" // Çeviri lazim! -#endif - , - [ActEdiCrsLnk] = -#if L==1 // ca - "Edit course links" // Necessita traducció -#elif L==2 // de - "Edit course links" // Need Übersetzung -#elif L==3 // en - "Edit course links" -#elif L==4 // es - "Editar los enlaces de la asignatura" -#elif L==5 // fr - "Edit course links" // Besoin de traduction -#elif L==6 // gn - "Editar los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Edit course links" // Bisogno di traduzione -#elif L==8 // pl - "Edit course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit course links" // Precisa de tradução -#elif L==10 // tr - "Edit course links" // Çeviri lazim! -#endif - , - [ActEdiAss] = -#if L==1 // ca - "Edit assessment system" // Necessita traducció -#elif L==2 // de - "Edit assessment system" // Need Übersetzung -#elif L==3 // en - "Edit assessment system" -#elif L==4 // es - "Editar sistema de evaluación" -#elif L==5 // fr - "Edit assessment system" // Besoin de traduction -#elif L==6 // gn - "Editar sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Edit assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Edit assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit assessment system" // Precisa de tradução -#elif L==10 // tr - "Edit assessment system" // Çeviri lazim! -#endif - , - [ActChgFrcReaCrsInf] = -#if L==1 // ca - "Change whether students are forced to read the course information" // Necessita traducció -#elif L==2 // de - "Change whether students are forced to read the course information" // Need Übersetzung -#elif L==3 // en - "Change whether students are forced to read the course information" -#elif L==4 // es - "Cambiar si se obliga a los estudiantes a leer la información de la asignatura" -#elif L==5 // fr - "Change whether students are forced to read the course information" // Besoin de traduction -#elif L==6 // gn - "Cambiar si se obliga a los estudiantes a leer la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Change whether students are forced to read the course information" // Bisogno di traduzione -#elif L==8 // pl - "Change whether students are forced to read the course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change whether students are forced to read the course information" // Precisa de tradução -#elif L==10 // tr - "Change whether students are forced to read the course information" // Çeviri lazim! -#endif - , - [ActChgFrcReaTchGui] = -#if L==1 // ca - "Change whether students are forced to read the teaching guide" // Necessita traducció -#elif L==2 // de - "Change whether students are forced to read the teaching guide" // Need Übersetzung -#elif L==3 // en - "Change whether students are forced to read the teaching guide" -#elif L==4 // es - "Cambiar si se obliga a los estudiantes a leer la guía docente" -#elif L==5 // fr - "Change whether students are forced to read the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Cambiar si se obliga a los estudiantes a leer la guía docente" // Okoteve traducción -#elif L==7 // it - "Change whether students are forced to read the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Change whether students are forced to read the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change whether students are forced to read the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Change whether students are forced to read the teaching guide" // Çeviri lazim! #endif , [ActChgFrcReaSylLec] = @@ -7144,144 +7374,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change whether students are forced to read the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Change whether students are forced to read the practicals syllabus" // Çeviri lazim! -#endif - , - [ActChgFrcReaBib] = -#if L==1 // ca - "Change whether students are forced to read the bibliography" // Necessita traducció -#elif L==2 // de - "Change whether students are forced to read the bibliography" // Need Übersetzung -#elif L==3 // en - "Change whether students are forced to read the bibliography" -#elif L==4 // es - "Cambiar si se obliga a los estudiantes a leer la bibliografía" -#elif L==5 // fr - "Change whether students are forced to read the bibliography" // Besoin de traduction -#elif L==6 // gn - "Cambiar si se obliga a los estudiantes a leer la bibliografía" // Okoteve traducción -#elif L==7 // it - "Change whether students are forced to read the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Change whether students are forced to read the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change whether students are forced to read the bibliography" // Precisa de tradução -#elif L==10 // tr - "Change whether students are forced to read the bibliography" // Çeviri lazim! -#endif - , - [ActChgFrcReaFAQ] = -#if L==1 // ca - "Change force students to read FAQ" // Necessita traducció -#elif L==2 // de - "Change force students to read FAQ" // Need Übersetzung -#elif L==3 // en - "Change force students to read FAQ" -#elif L==4 // es - "Cambiar si se obliga a los estudiantes a leer la FAQ" -#elif L==5 // fr - "Change force students to read FAQ" // Besoin de traduction -#elif L==6 // gn - "Cambiar si se obliga a los estudiantes a leer la FAQ" // Okoteve traducción -#elif L==7 // it - "Change force students to read FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Change force students to read FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change force students to read FAQ" // Precisa de tradução -#elif L==10 // tr - "Change force students to read FAQ" // Çeviri lazim! -#endif - , - [ActChgFrcReaCrsLnk] = -#if L==1 // ca - "Change whether students are forced to read the links" // Necessita traducció -#elif L==2 // de - "Change whether students are forced to read the links" // Need Übersetzung -#elif L==3 // en - "Change whether students are forced to read the links" -#elif L==4 // es - "Cambiar si se obliga a los estudiantes a leer los enlaces" -#elif L==5 // fr - "Change whether students are forced to read the links" // Besoin de traduction -#elif L==6 // gn - "Cambiar si se obliga a los estudiantes a leer los enlaces" // Okoteve traducción -#elif L==7 // it - "Change whether students are forced to read the links" // Bisogno di traduzione -#elif L==8 // pl - "Change whether students are forced to read the links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change whether students are forced to read the links" // Precisa de tradução -#elif L==10 // tr - "Change whether students are forced to read the links" // Çeviri lazim! -#endif - , - [ActChgFrcReaAss] = -#if L==1 // ca - "Change whether students are forced to read the assessment system" // Necessita traducció -#elif L==2 // de - "Change whether students are forced to read the assessment system" // Need Übersetzung -#elif L==3 // en - "Change whether students are forced to read the assessment system" -#elif L==4 // es - "Cambiar si se obliga a los estudiantes a leer el sistema de evaluación" -#elif L==5 // fr - "Change whether students are forced to read the assessment system" // Besoin de traduction -#elif L==6 // gn - "Cambiar si se obliga a los estudiantes a leer el sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Change whether students are forced to read the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Change whether students are forced to read the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change whether students are forced to read the assessment system" // Precisa de tradução -#elif L==10 // tr - "Change whether students are forced to read the assessment system" // Çeviri lazim! -#endif - , - [ActChgHavReaCrsInf] = -#if L==1 // ca - "Change if I have read the course information" // Necessita traducció -#elif L==2 // de - "Change if I have read the course information" // Need Übersetzung -#elif L==3 // en - "Change if I have read the course information" -#elif L==4 // es - "Cambiar si he leído la información de la asignatura" -#elif L==5 // fr - "Change if I have read the course information" // Besoin de traduction -#elif L==6 // gn - "Cambiar si he leído la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Change if I have read the course information" // Bisogno di traduzione -#elif L==8 // pl - "Change if I have read the course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change if I have read the course information" // Precisa de tradução -#elif L==10 // tr - "Change if I have read the course information" // Çeviri lazim! -#endif - , - [ActChgHavReaTchGui] = -#if L==1 // ca - "Change if I have read the teaching guide" // Necessita traducció -#elif L==2 // de - "Change if I have read the teaching guide" // Need Übersetzung -#elif L==3 // en - "Change if I have read the teaching guide" -#elif L==4 // es - "Cambiar si he leído la guía docente" -#elif L==5 // fr - "Change if I have read the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Cambiar si he leído la guía docente" // Okoteve traducción -#elif L==7 // it - "Change if I have read the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Change if I have read the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change if I have read the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Change if I have read the teaching guide" // Çeviri lazim! #endif , [ActChgHavReaSylLec] = @@ -7328,144 +7420,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change if I have read the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Change if I have read the practicals syllabus" // Çeviri lazim! -#endif - , - [ActChgHavReaBib] = -#if L==1 // ca - "Change if I have read the bibliography" // Necessita traducció -#elif L==2 // de - "Change if I have read the bibliography" // Need Übersetzung -#elif L==3 // en - "Change if I have read the bibliography" -#elif L==4 // es - "Cambiar si he leído la bibliografía" -#elif L==5 // fr - "Change if I have read the bibliography" // Besoin de traduction -#elif L==6 // gn - "Cambiar si he leído la bibliografía" // Okoteve traducción -#elif L==7 // it - "Change if I have read the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Change if I have read the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change if I have read the bibliography" // Precisa de tradução -#elif L==10 // tr - "Change if I have read the bibliography" // Çeviri lazim! -#endif - , - [ActChgHavReaFAQ] = -#if L==1 // ca - "Change if I have read the FAQ" // Necessita traducció -#elif L==2 // de - "Change if I have read the FAQ" // Need Übersetzung -#elif L==3 // en - "Change if I have read the FAQ" -#elif L==4 // es - "Cambiar si he leído la FAQ" -#elif L==5 // fr - "Change if I have read the FAQ" // Besoin de traduction -#elif L==6 // gn - "Cambiar si he leído la FAQ" // Okoteve traducción -#elif L==7 // it - "Change if I have read the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Change if I have read the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change if I have read the FAQ" // Precisa de tradução -#elif L==10 // tr - "Change if I have read the FAQ" // Çeviri lazim! -#endif - , - [ActChgHavReaCrsLnk] = -#if L==1 // ca - "Change if I have read the course links" // Necessita traducció -#elif L==2 // de - "Change if I have read the course links" // Need Übersetzung -#elif L==3 // en - "Change if I have read the course links" -#elif L==4 // es - "Cambiar si he leído los enlaces de la asignatura" -#elif L==5 // fr - "Change if I have read the course links" // Besoin de traduction -#elif L==6 // gn - "Cambiar si he leído los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Change if I have read the course links" // Bisogno di traduzione -#elif L==8 // pl - "Change if I have read the course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change if I have read the course links" // Precisa de tradução -#elif L==10 // tr - "Change if I have read the course links" // Çeviri lazim! -#endif - , - [ActChgHavReaAss] = -#if L==1 // ca - "Change if I have read the assessment system" // Necessita traducció -#elif L==2 // de - "Change if I have read the assessment system" // Need Übersetzung -#elif L==3 // en - "Change if I have read the assessment system" -#elif L==4 // es - "Cambiar si he leído el sistema de evaluación" -#elif L==5 // fr - "Change if I have read the assessment system" // Besoin de traduction -#elif L==6 // gn - "Cambiar si he leído el sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Change if I have read the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Change if I have read the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change if I have read the assessment system" // Precisa de tradução -#elif L==10 // tr - "Change if I have read the assessment system" // Çeviri lazim! -#endif - , - [ActSelInfSrcCrsInf] = -#if L==1 // ca - "Select the type of information shown in the course information" // Necessita traducció -#elif L==2 // de - "Select the type of information shown in the course information" // Need Übersetzung -#elif L==3 // en - "Select the type of information shown in the course information" -#elif L==4 // es - "Seleccionar el tipo de información mostrada en la información de la asignatura" -#elif L==5 // fr - "Select the type of information shown in the course information" // Besoin de traduction -#elif L==6 // gn - "Seleccionar el tipo de información mostrada en la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Select the type of information shown in the course information" // Bisogno di traduzione -#elif L==8 // pl - "Select the type of information shown in the course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select the type of information shown in the course information" // Precisa de tradução -#elif L==10 // tr - "Select the type of information shown in the course information" // Çeviri lazim! -#endif - , - [ActSelInfSrcTchGui] = -#if L==1 // ca - "Select the type of information shown in the teaching guide" // Necessita traducció -#elif L==2 // de - "Select the type of information shown in the teaching guide" // Need Übersetzung -#elif L==3 // en - "Select the type of information shown in the teaching guide" -#elif L==4 // es - "Seleccionar el tipo de información mostrada en la guía docente" -#elif L==5 // fr - "Select the type of information shown in the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Seleccionar el tipo de información mostrada en la guía docente" // Okoteve traducción -#elif L==7 // it - "Select the type of information shown in the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Select the type of information shown in the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select the type of information shown in the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Select the type of information shown in the teaching guide" // Çeviri lazim! #endif , [ActSelInfSrcSylLec] = @@ -7512,144 +7466,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Select the type of information shown in the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Select the type of information shown in the practicals syllabus" // Çeviri lazim! -#endif - , - [ActSelInfSrcBib] = -#if L==1 // ca - "Select the type of information shown in the bibliography" // Necessita traducció -#elif L==2 // de - "Select the type of information shown in the bibliography" // Need Übersetzung -#elif L==3 // en - "Select the type of information shown in the bibliography" -#elif L==4 // es - "Seleccionar el tipo de información mostrada en la bibliografía" -#elif L==5 // fr - "Select the type of information shown in the bibliography" // Besoin de traduction -#elif L==6 // gn - "Seleccionar el tipo de información mostrada en la bibliografía" // Okoteve traducción -#elif L==7 // it - "Select the type of information shown in the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Select the type of information shown in the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select the type of information shown in the bibliography" // Precisa de tradução -#elif L==10 // tr - "Select the type of information shown in the bibliography" // Çeviri lazim! -#endif - , - [ActSelInfSrcFAQ] = -#if L==1 // ca - "Select the type of information shown in the FAQ" // Necessita traducció -#elif L==2 // de - "Select the type of information shown in the FAQ" // Need Übersetzung -#elif L==3 // en - "Select the type of information shown in the FAQ" -#elif L==4 // es - "Seleccionar el tipo de información mostrada en la FAQ" -#elif L==5 // fr - "Select the type of information shown in the FAQ" // Besoin de traduction -#elif L==6 // gn - "Seleccionar el tipo de información mostrada en la FAQ" // Okoteve traducción -#elif L==7 // it - "Select the type of information shown in the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Select the type of information shown in the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select the type of information shown in the FAQ" // Precisa de tradução -#elif L==10 // tr - "Select the type of information shown in the FAQ" // Çeviri lazim! -#endif - , - [ActSelInfSrcCrsLnk] = -#if L==1 // ca - "Select the type of information shown in the course links" // Necessita traducció -#elif L==2 // de - "Select the type of information shown in the course links" // Need Übersetzung -#elif L==3 // en - "Select the type of information shown in the course links" -#elif L==4 // es - "Seleccionar el tipo de información mostrada en los enlaces de la asignatura" -#elif L==5 // fr - "Select the type of information shown in the course links" // Besoin de traduction -#elif L==6 // gn - "Seleccionar el tipo de información mostrada en los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Select the type of information shown in the course links" // Bisogno di traduzione -#elif L==8 // pl - "Select the type of information shown in the course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select the type of information shown in the course links" // Precisa de tradução -#elif L==10 // tr - "Select the type of information shown in the course links" // Çeviri lazim! -#endif - , - [ActSelInfSrcAss] = -#if L==1 // ca - "Select the type of information shown in the assessment system" // Necessita traducció -#elif L==2 // de - "Select the type of information shown in the assessment system" // Need Übersetzung -#elif L==3 // en - "Select the type of information shown in the assessment system" -#elif L==4 // es - "Seleccionar el tipo de información mostrada en el sistema de evaluación" -#elif L==5 // fr - "Select the type of information shown in the assessment system" // Besoin de traduction -#elif L==6 // gn - "Seleccionar el tipo de información mostrada en el sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Select the type of information shown in the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Select the type of information shown in the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select the type of information shown in the assessment system" // Precisa de tradução -#elif L==10 // tr - "Select the type of information shown in the assessment system" // Çeviri lazim! -#endif - , - [ActRcvURLCrsInf] = -#if L==1 // ca - "Create URL in the course information" // Necessita traducció -#elif L==2 // de - "Create URL in the course information" // Need Übersetzung -#elif L==3 // en - "Create URL in the course information" -#elif L==4 // es - "Crear una URL en la información de la asignatura" -#elif L==5 // fr - "Create URL in the course information" // Besoin de traduction -#elif L==6 // gn - "Crear una URL en la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Create URL in the course information" // Bisogno di traduzione -#elif L==8 // pl - "Create URL in the course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create URL in the course information" // Precisa de tradução -#elif L==10 // tr - "Create URL in the course information" // Çeviri lazim! -#endif - , - [ActRcvURLTchGui] = -#if L==1 // ca - "Create URL in the teaching guide" // Necessita traducció -#elif L==2 // de - "Create URL in the teaching guide" // Need Übersetzung -#elif L==3 // en - "Create URL in the teaching guide" -#elif L==4 // es - "Crear una URL en la guía docente" -#elif L==5 // fr - "Create URL in the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Crear una URL en la guía docente" // Okoteve traducción -#elif L==7 // it - "Create URL in the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Create URL in the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create URL in the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Create URL in the teaching guide" // Çeviri lazim! #endif , [ActRcvURLSylLec] = @@ -7696,144 +7512,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Create URL in the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Create URL in the practicals syllabus" // Çeviri lazim! -#endif - , - [ActRcvURLBib] = -#if L==1 // ca - "Create URL in the bibliography" // Necessita traducció -#elif L==2 // de - "Create URL in the bibliography" // Need Übersetzung -#elif L==3 // en - "Create URL in the bibliography" -#elif L==4 // es - "Crear una URL en la bibliografía" -#elif L==5 // fr - "Create URL in the bibliography" // Besoin de traduction -#elif L==6 // gn - "Crear una URL en la bibliografía" // Okoteve traducción -#elif L==7 // it - "Create URL in the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Create URL in the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create URL in the bibliography" // Precisa de tradução -#elif L==10 // tr - "Create URL in the bibliography" // Çeviri lazim! -#endif - , - [ActRcvURLFAQ] = -#if L==1 // ca - "Create URL in the FAQ" // Necessita traducció -#elif L==2 // de - "Create URL in the FAQ" // Need Übersetzung -#elif L==3 // en - "Create URL in the FAQ" -#elif L==4 // es - "Crear una URL en la FAQ" -#elif L==5 // fr - "Create URL in the FAQ" // Besoin de traduction -#elif L==6 // gn - "Crear una URL en la FAQ" // Okoteve traducción -#elif L==7 // it - "Create URL in the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Create URL in the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create URL in the FAQ" // Precisa de tradução -#elif L==10 // tr - "Create URL in the FAQ" // Çeviri lazim! -#endif - , - [ActRcvURLCrsLnk] = -#if L==1 // ca - "Create URL in the course links" // Necessita traducció -#elif L==2 // de - "Create URL in the course links" // Need Übersetzung -#elif L==3 // en - "Create URL in the course links" -#elif L==4 // es - "Crear una URL en los enlaces de la asignatura" -#elif L==5 // fr - "Create URL in the course links" // Besoin de traduction -#elif L==6 // gn - "Crear una URL en los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Create URL in the course links" // Bisogno di traduzione -#elif L==8 // pl - "Create URL in the course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create URL in the course links" // Precisa de tradução -#elif L==10 // tr - "Create URL in the course links" // Çeviri lazim! -#endif - , - [ActRcvURLAss] = -#if L==1 // ca - "Create URL in the assessment system" // Necessita traducció -#elif L==2 // de - "Create URL in the assessment system" // Need Übersetzung -#elif L==3 // en - "Create URL in the assessment system" -#elif L==4 // es - "Crear una URL en el sistema de evaluación" -#elif L==5 // fr - "Create URL in the assessment system" // Besoin de traduction -#elif L==6 // gn - "Crear una URL en el sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Create URL in the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Create URL in the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create URL in the assessment system" // Precisa de tradução -#elif L==10 // tr - "Create URL in the assessment system" // Çeviri lazim! -#endif - , - [ActRcvPagCrsInf] = -#if L==1 // ca - "Create web page in the course information" // Necessita traducció -#elif L==2 // de - "Create web page in the course information" // Need Übersetzung -#elif L==3 // en - "Create web page in the course information" -#elif L==4 // es - "Crear una página web en la información de la asignatura" -#elif L==5 // fr - "Create web page in the course information" // Besoin de traduction -#elif L==6 // gn - "Crear una página web en la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Create web page in the course information" // Bisogno di traduzione -#elif L==8 // pl - "Create web page in the course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create web page in the course information" // Precisa de tradução -#elif L==10 // tr - "Create web page in the course information" // Çeviri lazim! -#endif - , - [ActRcvPagTchGui] = -#if L==1 // ca - "Create web page in the teaching guide" // Necessita traducció -#elif L==2 // de - "Create web page in the teaching guide" // Need Übersetzung -#elif L==3 // en - "Create web page in the teaching guide" -#elif L==4 // es - "Crear una página web en la guía docente" -#elif L==5 // fr - "Create web page in the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Crear una página web en la guía docente" // Okoteve traducción -#elif L==7 // it - "Create web page in the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Create web page in the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create web page in the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Create web page in the teaching guide" // Çeviri lazim! #endif , [ActRcvPagSylLec] = @@ -7880,144 +7558,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Create web page in the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Create web page in the practicals syllabus" // Çeviri lazim! -#endif - , - [ActRcvPagBib] = -#if L==1 // ca - "Create web page in the bibliography" // Necessita traducció -#elif L==2 // de - "Create web page in the bibliography" // Need Übersetzung -#elif L==3 // en - "Create web page in the bibliography" -#elif L==4 // es - "Crear una página web en la bibliografía" -#elif L==5 // fr - "Create web page in the bibliography" // Besoin de traduction -#elif L==6 // gn - "Crear una página web en la bibliografía" // Okoteve traducción -#elif L==7 // it - "Create web page in the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Create web page in the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create web page in the bibliography" // Precisa de tradução -#elif L==10 // tr - "Create web page in the bibliography" // Çeviri lazim! -#endif - , - [ActRcvPagFAQ] = -#if L==1 // ca - "Create web page in the FAQ" // Necessita traducció -#elif L==2 // de - "Create web page in the FAQ" // Need Übersetzung -#elif L==3 // en - "Create web page in the FAQ" -#elif L==4 // es - "Crear una página web en la FAQ" -#elif L==5 // fr - "Create web page in the FAQ" // Besoin de traduction -#elif L==6 // gn - "Crear una página web en la FAQ" // Okoteve traducción -#elif L==7 // it - "Create web page in the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Create web page in the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create web page in the FAQ" // Precisa de tradução -#elif L==10 // tr - "Create web page in the FAQ" // Çeviri lazim! -#endif - , - [ActRcvPagCrsLnk] = -#if L==1 // ca - "Create web page in the course links" // Necessita traducció -#elif L==2 // de - "Create web page in the course links" // Need Übersetzung -#elif L==3 // en - "Create web page in the course links" -#elif L==4 // es - "Crear una página web en los enlaces de la asignatura" -#elif L==5 // fr - "Create web page in the course links" // Besoin de traduction -#elif L==6 // gn - "Crear una página web en los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Create web page in the course links" // Bisogno di traduzione -#elif L==8 // pl - "Create web page in the course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create web page in the course links" // Precisa de tradução -#elif L==10 // tr - "Create web page in the course links" // Çeviri lazim! -#endif - , - [ActRcvPagAss] = -#if L==1 // ca - "Create web page in the assessment system" // Necessita traducció -#elif L==2 // de - "Create web page in the assessment system" // Need Übersetzung -#elif L==3 // en - "Create web page in the assessment system" -#elif L==4 // es - "Crear una página web en el sistema de evaluación" -#elif L==5 // fr - "Create web page in the assessment system" // Besoin de traduction -#elif L==6 // gn - "Crear una página web en el sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Create web page in the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Create web page in the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create web page in the assessment system" // Precisa de tradução -#elif L==10 // tr - "Create web page in the assessment system" // Çeviri lazim! -#endif - , - [ActEditorCrsInf] = -#if L==1 // ca - "Integrated editor of course information" // Necessita traducció -#elif L==2 // de - "Integrated editor of course information" // Need Übersetzung -#elif L==3 // en - "Integrated editor of course information" -#elif L==4 // es - "Editor integrado de la información de la asignatura" -#elif L==5 // fr - "Integrated editor of course information" // Besoin de traduction -#elif L==6 // gn - "Editor integrado de la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Integrated editor of course information" // Bisogno di traduzione -#elif L==8 // pl - "Integrated editor of course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Integrated editor of course information" // Precisa de tradução -#elif L==10 // tr - "Integrated editor of course information" // Çeviri lazim! -#endif - , - [ActEditorTchGui] = -#if L==1 // ca - "Integrated editor of the teaching guide" // Necessita traducció -#elif L==2 // de - "Integrated editor of the teaching guide" // Need Übersetzung -#elif L==3 // en - "Integrated editor of the teaching guide" -#elif L==4 // es - "Editor integrado de la guía docente" -#elif L==5 // fr - "Integrated editor of the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Editor integrado de la guía docente" // Okoteve traducción -#elif L==7 // it - "Integrated editor of the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Integrated editor of the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Integrated editor of the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Integrated editor of the teaching guide" // Çeviri lazim! #endif , [ActEditorSylLec] = @@ -8064,144 +7604,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Integrated editor of the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Integrated editor of the practicals syllabus" // Çeviri lazim! -#endif - , - [ActEditorBib] = -#if L==1 // ca - "Integrated editor of the bibliography" // Necessita traducció -#elif L==2 // de - "Integrated editor of the bibliography" // Need Übersetzung -#elif L==3 // en - "Integrated editor of the bibliography" -#elif L==4 // es - "Editor integrado de la bibliografía" -#elif L==5 // fr - "Integrated editor of the bibliography" // Besoin de traduction -#elif L==6 // gn - "Editor integrado de la bibliografía" // Okoteve traducción -#elif L==7 // it - "Integrated editor of the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Integrated editor of the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Integrated editor of the bibliography" // Precisa de tradução -#elif L==10 // tr - "Integrated editor of the bibliography" // Çeviri lazim! -#endif - , - [ActEditorFAQ] = -#if L==1 // ca - "Integrated editor of the FAQ" // Necessita traducció -#elif L==2 // de - "Integrated editor of the FAQ" // Need Übersetzung -#elif L==3 // en - "Integrated editor of the FAQ" -#elif L==4 // es - "Editor integrado de la FAQ" -#elif L==5 // fr - "Integrated editor of the FAQ" // Besoin de traduction -#elif L==6 // gn - "Editor integrado de la FAQ" // Okoteve traducción -#elif L==7 // it - "Integrated editor of the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Integrated editor of the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Integrated editor of the FAQ" // Precisa de tradução -#elif L==10 // tr - "Integrated editor of the FAQ" // Çeviri lazim! -#endif - , - [ActEditorCrsLnk] = -#if L==1 // ca - "Integrated editor of course links" // Necessita traducció -#elif L==2 // de - "Integrated editor of course links" // Need Übersetzung -#elif L==3 // en - "Integrated editor of course links" -#elif L==4 // es - "Editor integrado de los enlaces de la asignatura" -#elif L==5 // fr - "Integrated editor of course links" // Besoin de traduction -#elif L==6 // gn - "Editor integrado de los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Integrated editor of course links" // Bisogno di traduzione -#elif L==8 // pl - "Integrated editor of course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Integrated editor of course links" // Precisa de tradução -#elif L==10 // tr - "Integrated editor of course links" // Çeviri lazim! -#endif - , - [ActEditorAss] = -#if L==1 // ca - "Integrated editor of the assessment system" // Necessita traducció -#elif L==2 // de - "Integrated editor of the assessment system" // Need Übersetzung -#elif L==3 // en - "Integrated editor of the assessment system" -#elif L==4 // es - "Editor integrado del sistema de evaluación" -#elif L==5 // fr - "Integrated editor of the assessment system" // Besoin de traduction -#elif L==6 // gn - "Editor integrado del sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Integrated editor of the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Integrated editor of the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Integrated editor of the assessment system" // Precisa de tradução -#elif L==10 // tr - "Integrated editor of the assessment system" // Çeviri lazim! -#endif - , - [ActPlaTxtEdiCrsInf] = -#if L==1 // ca - "Plain text editor of course information" // Necessita traducció -#elif L==2 // de - "Plain text editor of course information" // Need Übersetzung -#elif L==3 // en - "Plain text editor of course information" -#elif L==4 // es - "Editor de texto plano de la información de la asignatura" -#elif L==5 // fr - "Plain text editor of course information" // Besoin de traduction -#elif L==6 // gn - "Editor de texto plano de la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Plain text editor of course information" // Bisogno di traduzione -#elif L==8 // pl - "Plain text editor of course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Plain text editor of course information" // Precisa de tradução -#elif L==10 // tr - "Plain text editor of course information" // Çeviri lazim! -#endif - , - [ActPlaTxtEdiTchGui] = -#if L==1 // ca - "Plain text editor of the teaching guide" // Necessita traducció -#elif L==2 // de - "Plain text editor of the teaching guide" // Need Übersetzung -#elif L==3 // en - "Plain text editor of the teaching guide" -#elif L==4 // es - "Editor de texto plano de la guía docente" -#elif L==5 // fr - "Plain text editor of the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Editor de texto plano de la guía docente" // Okoteve traducción -#elif L==7 // it - "Plain text editor of the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Plain text editor of the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Plain text editor of the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Plain text editor of the teaching guide" // Çeviri lazim! #endif , [ActPlaTxtEdiSylLec] = @@ -8248,144 +7650,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Plain text editor of the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Plain text editor of the practicals syllabus" // Çeviri lazim! -#endif - , - [ActPlaTxtEdiBib] = -#if L==1 // ca - "Plain text editor of the bibliography" // Necessita traducció -#elif L==2 // de - "Plain text editor of the bibliography" // Need Übersetzung -#elif L==3 // en - "Plain text editor of the bibliography" -#elif L==4 // es - "Editor de texto plano de la bibliografía" -#elif L==5 // fr - "Plain text editor of the bibliography" // Besoin de traduction -#elif L==6 // gn - "Editor de texto plano de la bibliografía" // Okoteve traducción -#elif L==7 // it - "Plain text editor of the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Plain text editor of the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Plain text editor of the bibliography" // Precisa de tradução -#elif L==10 // tr - "Plain text editor of the bibliography" // Çeviri lazim! -#endif - , - [ActPlaTxtEdiFAQ] = -#if L==1 // ca - "Plain text editor of the FAQ" // Necessita traducció -#elif L==2 // de - "Plain text editor of the FAQ" // Need Übersetzung -#elif L==3 // en - "Plain text editor of the FAQ" -#elif L==4 // es - "Editor de texto plano de la FAQ" -#elif L==5 // fr - "Plain text editor of the FAQ" // Besoin de traduction -#elif L==6 // gn - "Editor de texto plano de la FAQ" // Okoteve traducción -#elif L==7 // it - "Plain text editor of the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Plain text editor of the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Plain text editor of the FAQ" // Precisa de tradução -#elif L==10 // tr - "Plain text editor of the FAQ" // Çeviri lazim! -#endif - , - [ActPlaTxtEdiCrsLnk] = -#if L==1 // ca - "Plain text editor of course links" // Necessita traducció -#elif L==2 // de - "Plain text editor of course links" // Need Übersetzung -#elif L==3 // en - "Plain text editor of course links" -#elif L==4 // es - "Editor de texto plano de los enlaces de la asignatura" -#elif L==5 // fr - "Plain text editor of course links" // Besoin de traduction -#elif L==6 // gn - "Editor de texto plano de los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Plain text editor of course links" // Bisogno di traduzione -#elif L==8 // pl - "Plain text editor of course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Plain text editor of course links" // Precisa de tradução -#elif L==10 // tr - "Plain text editor of course links" // Çeviri lazim! -#endif - , - [ActPlaTxtEdiAss] = -#if L==1 // ca - "Plain text editor of the assessment system" // Necessita traducció -#elif L==2 // de - "Plain text editor of the assessment system" // Need Übersetzung -#elif L==3 // en - "Plain text editor of the assessment system" -#elif L==4 // es - "Editor de texto plano del sistema de evaluación" -#elif L==5 // fr - "Plain text editor of the assessment system" // Besoin de traduction -#elif L==6 // gn - "Editor de texto plano del sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Plain text editor of the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Plain text editor of the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Plain text editor of the assessment system" // Precisa de tradução -#elif L==10 // tr - "Plain text editor of the assessment system" // Çeviri lazim! -#endif - , - [ActRchTxtEdiCrsInf] = -#if L==1 // ca - "Rich text editor of course information" // Necessita traducció -#elif L==2 // de - "Rich text editor of course information" // Need Übersetzung -#elif L==3 // en - "Rich text editor of course information" -#elif L==4 // es - "Editor de texto enriquecido de la información de la asignatura" -#elif L==5 // fr - "Rich text editor of course information" // Besoin de traduction -#elif L==6 // gn - "Editor de texto enriquecido de la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Rich text editor of course information" // Bisogno di traduzione -#elif L==8 // pl - "Rich text editor of course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rich text editor of course information" // Precisa de tradução -#elif L==10 // tr - "Rich text editor of course information" // Çeviri lazim! -#endif - , - [ActRchTxtEdiTchGui] = -#if L==1 // ca - "Rich text editor of the teaching guide" // Necessita traducció -#elif L==2 // de - "Rich text editor of the teaching guide" // Need Übersetzung -#elif L==3 // en - "Rich text editor of the teaching guide" -#elif L==4 // es - "Editor de texto enriquecido de la guía docente" -#elif L==5 // fr - "Rich text editor of the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Editor de texto enriquecido de la guía docente" // Okoteve traducción -#elif L==7 // it - "Rich text editor of the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Rich text editor of the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rich text editor of the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Rich text editor of the teaching guide" // Çeviri lazim! #endif , [ActRchTxtEdiSylLec] = @@ -8432,144 +7696,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Rich text editor of the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Rich text editor of the practicals syllabus" // Çeviri lazim! -#endif - , - [ActRchTxtEdiBib] = -#if L==1 // ca - "Rich text editor of the bibliography" // Necessita traducció -#elif L==2 // de - "Rich text editor of the bibliography" // Need Übersetzung -#elif L==3 // en - "Rich text editor of the bibliography" -#elif L==4 // es - "Editor de texto enriquecido de la bibliografía" -#elif L==5 // fr - "Rich text editor of the bibliography" // Besoin de traduction -#elif L==6 // gn - "Editor de texto enriquecido de la bibliografía" // Okoteve traducción -#elif L==7 // it - "Rich text editor of the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Rich text editor of the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rich text editor of the bibliography" // Precisa de tradução -#elif L==10 // tr - "Rich text editor of the bibliography" // Çeviri lazim! -#endif - , - [ActRchTxtEdiFAQ] = -#if L==1 // ca - "Rich text editor of the FAQ" // Necessita traducció -#elif L==2 // de - "Rich text editor of the FAQ" // Need Übersetzung -#elif L==3 // en - "Rich text editor of the FAQ" -#elif L==4 // es - "Editor de texto enriquecido de la FAQ" -#elif L==5 // fr - "Rich text editor of the FAQ" // Besoin de traduction -#elif L==6 // gn - "Editor de texto enriquecido de la FAQ" // Okoteve traducción -#elif L==7 // it - "Rich text editor of the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Rich text editor of the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rich text editor of the FAQ" // Precisa de tradução -#elif L==10 // tr - "Rich text editor of the FAQ" // Çeviri lazim! -#endif - , - [ActRchTxtEdiCrsLnk] = -#if L==1 // ca - "Rich text editor of course links" // Necessita traducció -#elif L==2 // de - "Rich text editor of course links" // Need Übersetzung -#elif L==3 // en - "Rich text editor of course links" -#elif L==4 // es - "Editor de texto enriquecido de los enlaces de la asignatura" -#elif L==5 // fr - "Rich text editor of course links" // Besoin de traduction -#elif L==6 // gn - "Editor de texto enriquecido de los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Rich text editor of course links" // Bisogno di traduzione -#elif L==8 // pl - "Rich text editor of course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rich text editor of course links" // Precisa de tradução -#elif L==10 // tr - "Rich text editor of course links" // Çeviri lazim! -#endif - , - [ActRchTxtEdiAss] = -#if L==1 // ca - "Rich text editor of the assessment system" // Necessita traducció -#elif L==2 // de - "Rich text editor of the assessment system" // Need Übersetzung -#elif L==3 // en - "Rich text editor of the assessment system" -#elif L==4 // es - "Editor de texto enriquecido del sistema de evaluación" -#elif L==5 // fr - "Rich text editor of the assessment system" // Besoin de traduction -#elif L==6 // gn - "Editor de texto enriquecido del sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Rich text editor of the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Rich text editor of the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Rich text editor of the assessment system" // Precisa de tradução -#elif L==10 // tr - "Rich text editor of the assessment system" // Çeviri lazim! -#endif - , - [ActRcvPlaTxtCrsInf] = -#if L==1 // ca - "Change plain text of course information" // Necessita traducció -#elif L==2 // de - "Change plain text of course information" // Need Übersetzung -#elif L==3 // en - "Change plain text of course information" -#elif L==4 // es - "Cambiar texto plano de la información de la asignatura" -#elif L==5 // fr - "Change plain text of course information" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto plano de la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Change plain text of course information" // Bisogno di traduzione -#elif L==8 // pl - "Change plain text of course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change plain text of course information" // Precisa de tradução -#elif L==10 // tr - "Change plain text of course information" // Çeviri lazim! -#endif - , - [ActRcvPlaTxtTchGui] = -#if L==1 // ca - "Change plain text of the teaching guide" // Necessita traducció -#elif L==2 // de - "Change plain text of the teaching guide" // Need Übersetzung -#elif L==3 // en - "Change plain text of the teaching guide" -#elif L==4 // es - "Cambiar texto plano de la guía docente" -#elif L==5 // fr - "Change plain text of the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto plano de la guía docente" // Okoteve traducción -#elif L==7 // it - "Change plain text of the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Change plain text of the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change plain text of the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Change plain text of the teaching guide" // Çeviri lazim! #endif , [ActRcvPlaTxtSylLec] = @@ -8616,144 +7742,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change plain text of the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Change plain text of the practicals syllabus" // Çeviri lazim! -#endif - , - [ActRcvPlaTxtBib] = -#if L==1 // ca - "Change plain text of the bibliography" // Necessita traducció -#elif L==2 // de - "Change plain text of the bibliography" // Need Übersetzung -#elif L==3 // en - "Change plain text of the bibliography" -#elif L==4 // es - "Cambiar texto plano de la bibliografía" -#elif L==5 // fr - "Change plain text of the bibliography" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto plano de la bibliografía" // Okoteve traducción -#elif L==7 // it - "Change plain text of the bibliography" // Bisogno di traduzione -#elif L==8 // pl - "Change plain text of the bibliography" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change plain text of the bibliography" // Precisa de tradução -#elif L==10 // tr - "Change plain text of the bibliography" // Çeviri lazim! -#endif - , - [ActRcvPlaTxtFAQ] = -#if L==1 // ca - "Change plain text of the FAQ" // Necessita traducció -#elif L==2 // de - "Change plain text of the FAQ" // Need Übersetzung -#elif L==3 // en - "Change plain text of the FAQ" -#elif L==4 // es - "Cambiar texto plano de la FAQ" -#elif L==5 // fr - "Change plain text of the FAQ" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto plano de la FAQ" // Okoteve traducción -#elif L==7 // it - "Change plain text of the FAQ" // Bisogno di traduzione -#elif L==8 // pl - "Change plain text of the FAQ" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change plain text of the FAQ" // Precisa de tradução -#elif L==10 // tr - "Change plain text of the FAQ" // Çeviri lazim! -#endif - , - [ActRcvPlaTxtCrsLnk] = -#if L==1 // ca - "Change plain text of course links" // Necessita traducció -#elif L==2 // de - "Change plain text of course links" // Need Übersetzung -#elif L==3 // en - "Change plain text of course links" -#elif L==4 // es - "Cambiar texto plano de los enlaces de la asignatura" -#elif L==5 // fr - "Change plain text of course links" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto plano de los enlaces de la asignatura" // Okoteve traducción -#elif L==7 // it - "Change plain text of course links" // Bisogno di traduzione -#elif L==8 // pl - "Change plain text of course links" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change plain text of course links" // Precisa de tradução -#elif L==10 // tr - "Change plain text of course links" // Çeviri lazim! -#endif - , - [ActRcvPlaTxtAss] = -#if L==1 // ca - "Change plain text of the assessment system" // Necessita traducció -#elif L==2 // de - "Change plain text of the assessment system" // Need Übersetzung -#elif L==3 // en - "Change plain text of the assessment system" -#elif L==4 // es - "Cambiar texto plano del sistema de evaluación" -#elif L==5 // fr - "Change plain text of the assessment system" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto plano del sistema de evaluación" // Okoteve traducción -#elif L==7 // it - "Change plain text of the assessment system" // Bisogno di traduzione -#elif L==8 // pl - "Change plain text of the assessment system" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change plain text of the assessment system" // Precisa de tradução -#elif L==10 // tr - "Change plain text of the assessment system" // Çeviri lazim! -#endif - , - [ActRcvRchTxtCrsInf] = -#if L==1 // ca - "Change rich text of course information" // Necessita traducció -#elif L==2 // de - "Change rich text of course information" // Need Übersetzung -#elif L==3 // en - "Change rich text of course information" -#elif L==4 // es - "Cambiar texto enriquecido de la información de la asignatura" -#elif L==5 // fr - "Change rich text of course information" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto enriquecido de la información de la asignatura" // Okoteve traducción -#elif L==7 // it - "Change rich text of course information" // Bisogno di traduzione -#elif L==8 // pl - "Change rich text of course information" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change rich text of course information" // Precisa de tradução -#elif L==10 // tr - "Change rich text of course information" // Çeviri lazim! -#endif - , - [ActRcvRchTxtTchGui] = -#if L==1 // ca - "Change rich text of the teaching guide" // Necessita traducció -#elif L==2 // de - "Change rich text of the teaching guide" // Need Übersetzung -#elif L==3 // en - "Change rich text of the teaching guide" -#elif L==4 // es - "Cambiar texto enriquecido de la guía docente" -#elif L==5 // fr - "Change rich text of the teaching guide" // Besoin de traduction -#elif L==6 // gn - "Cambiar texto enriquecido de la guía docente" // Okoteve traducción -#elif L==7 // it - "Change rich text of the teaching guide" // Bisogno di traduzione -#elif L==8 // pl - "Change rich text of the teaching guide" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change rich text of the teaching guide" // Precisa de tradução -#elif L==10 // tr - "Change rich text of the teaching guide" // Çeviri lazim! #endif , [ActRcvRchTxtSylLec] = @@ -8800,6 +7788,259 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change rich text of the practicals syllabus" // Precisa de tradução #elif L==10 // tr "Change rich text of the practicals syllabus" // Çeviri lazim! +#endif + , + [ActSeeBib] = +#if L==1 // ca + "See the bibliography" // Necessita traducció +#elif L==2 // de + "See the bibliography" // Need Übersetzung +#elif L==3 // en + "See the bibliography" +#elif L==4 // es + "Ver la bibliografía" +#elif L==5 // fr + "See the bibliography" // Besoin de traduction +#elif L==6 // gn + "Ver la bibliografía" // Okoteve traducción +#elif L==7 // it + "See the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "See the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the bibliography" // Precisa de tradução +#elif L==10 // tr + "See the bibliography" // Çeviri lazim! +#endif + , + [ActEdiBib] = +#if L==1 // ca + "Edit bibliography" // Necessita traducció +#elif L==2 // de + "Edit bibliography" // Need Übersetzung +#elif L==3 // en + "Edit bibliography" +#elif L==4 // es + "Editar la bibliografía" +#elif L==5 // fr + "Edit bibliography" // Besoin de traduction +#elif L==6 // gn + "Editar la bibliografía" // Okoteve traducción +#elif L==7 // it + "Edit bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Edit bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit bibliography" // Precisa de tradução +#elif L==10 // tr + "Edit bibliography" // Çeviri lazim! +#endif + , + [ActChgFrcReaBib] = +#if L==1 // ca + "Change whether students are forced to read the bibliography" // Necessita traducció +#elif L==2 // de + "Change whether students are forced to read the bibliography" // Need Übersetzung +#elif L==3 // en + "Change whether students are forced to read the bibliography" +#elif L==4 // es + "Cambiar si se obliga a los estudiantes a leer la bibliografía" +#elif L==5 // fr + "Change whether students are forced to read the bibliography" // Besoin de traduction +#elif L==6 // gn + "Cambiar si se obliga a los estudiantes a leer la bibliografía" // Okoteve traducción +#elif L==7 // it + "Change whether students are forced to read the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Change whether students are forced to read the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change whether students are forced to read the bibliography" // Precisa de tradução +#elif L==10 // tr + "Change whether students are forced to read the bibliography" // Çeviri lazim! +#endif + , + [ActChgHavReaBib] = +#if L==1 // ca + "Change if I have read the bibliography" // Necessita traducció +#elif L==2 // de + "Change if I have read the bibliography" // Need Übersetzung +#elif L==3 // en + "Change if I have read the bibliography" +#elif L==4 // es + "Cambiar si he leído la bibliografía" +#elif L==5 // fr + "Change if I have read the bibliography" // Besoin de traduction +#elif L==6 // gn + "Cambiar si he leído la bibliografía" // Okoteve traducción +#elif L==7 // it + "Change if I have read the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Change if I have read the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change if I have read the bibliography" // Precisa de tradução +#elif L==10 // tr + "Change if I have read the bibliography" // Çeviri lazim! +#endif + , + [ActSelInfSrcBib] = +#if L==1 // ca + "Select the type of information shown in the bibliography" // Necessita traducció +#elif L==2 // de + "Select the type of information shown in the bibliography" // Need Übersetzung +#elif L==3 // en + "Select the type of information shown in the bibliography" +#elif L==4 // es + "Seleccionar el tipo de información mostrada en la bibliografía" +#elif L==5 // fr + "Select the type of information shown in the bibliography" // Besoin de traduction +#elif L==6 // gn + "Seleccionar el tipo de información mostrada en la bibliografía" // Okoteve traducción +#elif L==7 // it + "Select the type of information shown in the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Select the type of information shown in the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select the type of information shown in the bibliography" // Precisa de tradução +#elif L==10 // tr + "Select the type of information shown in the bibliography" // Çeviri lazim! +#endif + , + [ActRcvURLBib] = +#if L==1 // ca + "Create URL in the bibliography" // Necessita traducció +#elif L==2 // de + "Create URL in the bibliography" // Need Übersetzung +#elif L==3 // en + "Create URL in the bibliography" +#elif L==4 // es + "Crear una URL en la bibliografía" +#elif L==5 // fr + "Create URL in the bibliography" // Besoin de traduction +#elif L==6 // gn + "Crear una URL en la bibliografía" // Okoteve traducción +#elif L==7 // it + "Create URL in the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Create URL in the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create URL in the bibliography" // Precisa de tradução +#elif L==10 // tr + "Create URL in the bibliography" // Çeviri lazim! +#endif + , + [ActRcvPagBib] = +#if L==1 // ca + "Create web page in the bibliography" // Necessita traducció +#elif L==2 // de + "Create web page in the bibliography" // Need Übersetzung +#elif L==3 // en + "Create web page in the bibliography" +#elif L==4 // es + "Crear una página web en la bibliografía" +#elif L==5 // fr + "Create web page in the bibliography" // Besoin de traduction +#elif L==6 // gn + "Crear una página web en la bibliografía" // Okoteve traducción +#elif L==7 // it + "Create web page in the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Create web page in the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create web page in the bibliography" // Precisa de tradução +#elif L==10 // tr + "Create web page in the bibliography" // Çeviri lazim! +#endif + , + [ActEditorBib] = +#if L==1 // ca + "Integrated editor of the bibliography" // Necessita traducció +#elif L==2 // de + "Integrated editor of the bibliography" // Need Übersetzung +#elif L==3 // en + "Integrated editor of the bibliography" +#elif L==4 // es + "Editor integrado de la bibliografía" +#elif L==5 // fr + "Integrated editor of the bibliography" // Besoin de traduction +#elif L==6 // gn + "Editor integrado de la bibliografía" // Okoteve traducción +#elif L==7 // it + "Integrated editor of the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Integrated editor of the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Integrated editor of the bibliography" // Precisa de tradução +#elif L==10 // tr + "Integrated editor of the bibliography" // Çeviri lazim! +#endif + , + [ActPlaTxtEdiBib] = +#if L==1 // ca + "Plain text editor of the bibliography" // Necessita traducció +#elif L==2 // de + "Plain text editor of the bibliography" // Need Übersetzung +#elif L==3 // en + "Plain text editor of the bibliography" +#elif L==4 // es + "Editor de texto plano de la bibliografía" +#elif L==5 // fr + "Plain text editor of the bibliography" // Besoin de traduction +#elif L==6 // gn + "Editor de texto plano de la bibliografía" // Okoteve traducción +#elif L==7 // it + "Plain text editor of the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Plain text editor of the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Plain text editor of the bibliography" // Precisa de tradução +#elif L==10 // tr + "Plain text editor of the bibliography" // Çeviri lazim! +#endif + , + [ActRchTxtEdiBib] = +#if L==1 // ca + "Rich text editor of the bibliography" // Necessita traducció +#elif L==2 // de + "Rich text editor of the bibliography" // Need Übersetzung +#elif L==3 // en + "Rich text editor of the bibliography" +#elif L==4 // es + "Editor de texto enriquecido de la bibliografía" +#elif L==5 // fr + "Rich text editor of the bibliography" // Besoin de traduction +#elif L==6 // gn + "Editor de texto enriquecido de la bibliografía" // Okoteve traducción +#elif L==7 // it + "Rich text editor of the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Rich text editor of the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rich text editor of the bibliography" // Precisa de tradução +#elif L==10 // tr + "Rich text editor of the bibliography" // Çeviri lazim! +#endif + , + [ActRcvPlaTxtBib] = +#if L==1 // ca + "Change plain text of the bibliography" // Necessita traducció +#elif L==2 // de + "Change plain text of the bibliography" // Need Übersetzung +#elif L==3 // en + "Change plain text of the bibliography" +#elif L==4 // es + "Cambiar texto plano de la bibliografía" +#elif L==5 // fr + "Change plain text of the bibliography" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto plano de la bibliografía" // Okoteve traducción +#elif L==7 // it + "Change plain text of the bibliography" // Bisogno di traduzione +#elif L==8 // pl + "Change plain text of the bibliography" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change plain text of the bibliography" // Precisa de tradução +#elif L==10 // tr + "Change plain text of the bibliography" // Çeviri lazim! #endif , [ActRcvRchTxtBib] = @@ -8823,6 +8064,259 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change rich text of the bibliography" // Precisa de tradução #elif L==10 // tr "Change rich text of the bibliography" // Çeviri lazim! +#endif + , + [ActSeeFAQ] = +#if L==1 // ca + "See the FAQ" // Necessita traducció +#elif L==2 // de + "See the FAQ" // Need Übersetzung +#elif L==3 // en + "See the FAQ" +#elif L==4 // es + "Ver la FAQ" +#elif L==5 // fr + "See the FAQ" // Besoin de traduction +#elif L==6 // gn + "Ver la FAQ" // Okoteve traducción +#elif L==7 // it + "See the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "See the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the FAQ" // Precisa de tradução +#elif L==10 // tr + "See the FAQ" // Çeviri lazim! +#endif + , + [ActEdiFAQ] = +#if L==1 // ca + "Edit FAQ" // Necessita traducció +#elif L==2 // de + "Edit FAQ" // Need Übersetzung +#elif L==3 // en + "Edit FAQ" +#elif L==4 // es + "Editar la FAQ" +#elif L==5 // fr + "Edit FAQ" // Besoin de traduction +#elif L==6 // gn + "Editar la FAQ" // Okoteve traducción +#elif L==7 // it + "Edit FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Edit FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit FAQ" // Precisa de tradução +#elif L==10 // tr + "Edit FAQ" // Çeviri lazim! +#endif + , + [ActChgFrcReaFAQ] = +#if L==1 // ca + "Change force students to read FAQ" // Necessita traducció +#elif L==2 // de + "Change force students to read FAQ" // Need Übersetzung +#elif L==3 // en + "Change force students to read FAQ" +#elif L==4 // es + "Cambiar si se obliga a los estudiantes a leer la FAQ" +#elif L==5 // fr + "Change force students to read FAQ" // Besoin de traduction +#elif L==6 // gn + "Cambiar si se obliga a los estudiantes a leer la FAQ" // Okoteve traducción +#elif L==7 // it + "Change force students to read FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Change force students to read FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change force students to read FAQ" // Precisa de tradução +#elif L==10 // tr + "Change force students to read FAQ" // Çeviri lazim! +#endif + , + [ActChgHavReaFAQ] = +#if L==1 // ca + "Change if I have read the FAQ" // Necessita traducció +#elif L==2 // de + "Change if I have read the FAQ" // Need Übersetzung +#elif L==3 // en + "Change if I have read the FAQ" +#elif L==4 // es + "Cambiar si he leído la FAQ" +#elif L==5 // fr + "Change if I have read the FAQ" // Besoin de traduction +#elif L==6 // gn + "Cambiar si he leído la FAQ" // Okoteve traducción +#elif L==7 // it + "Change if I have read the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Change if I have read the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change if I have read the FAQ" // Precisa de tradução +#elif L==10 // tr + "Change if I have read the FAQ" // Çeviri lazim! +#endif + , + [ActSelInfSrcFAQ] = +#if L==1 // ca + "Select the type of information shown in the FAQ" // Necessita traducció +#elif L==2 // de + "Select the type of information shown in the FAQ" // Need Übersetzung +#elif L==3 // en + "Select the type of information shown in the FAQ" +#elif L==4 // es + "Seleccionar el tipo de información mostrada en la FAQ" +#elif L==5 // fr + "Select the type of information shown in the FAQ" // Besoin de traduction +#elif L==6 // gn + "Seleccionar el tipo de información mostrada en la FAQ" // Okoteve traducción +#elif L==7 // it + "Select the type of information shown in the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Select the type of information shown in the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select the type of information shown in the FAQ" // Precisa de tradução +#elif L==10 // tr + "Select the type of information shown in the FAQ" // Çeviri lazim! +#endif + , + [ActRcvURLFAQ] = +#if L==1 // ca + "Create URL in the FAQ" // Necessita traducció +#elif L==2 // de + "Create URL in the FAQ" // Need Übersetzung +#elif L==3 // en + "Create URL in the FAQ" +#elif L==4 // es + "Crear una URL en la FAQ" +#elif L==5 // fr + "Create URL in the FAQ" // Besoin de traduction +#elif L==6 // gn + "Crear una URL en la FAQ" // Okoteve traducción +#elif L==7 // it + "Create URL in the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Create URL in the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create URL in the FAQ" // Precisa de tradução +#elif L==10 // tr + "Create URL in the FAQ" // Çeviri lazim! +#endif + , + [ActRcvPagFAQ] = +#if L==1 // ca + "Create web page in the FAQ" // Necessita traducció +#elif L==2 // de + "Create web page in the FAQ" // Need Übersetzung +#elif L==3 // en + "Create web page in the FAQ" +#elif L==4 // es + "Crear una página web en la FAQ" +#elif L==5 // fr + "Create web page in the FAQ" // Besoin de traduction +#elif L==6 // gn + "Crear una página web en la FAQ" // Okoteve traducción +#elif L==7 // it + "Create web page in the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Create web page in the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create web page in the FAQ" // Precisa de tradução +#elif L==10 // tr + "Create web page in the FAQ" // Çeviri lazim! +#endif + , + [ActEditorFAQ] = +#if L==1 // ca + "Integrated editor of the FAQ" // Necessita traducció +#elif L==2 // de + "Integrated editor of the FAQ" // Need Übersetzung +#elif L==3 // en + "Integrated editor of the FAQ" +#elif L==4 // es + "Editor integrado de la FAQ" +#elif L==5 // fr + "Integrated editor of the FAQ" // Besoin de traduction +#elif L==6 // gn + "Editor integrado de la FAQ" // Okoteve traducción +#elif L==7 // it + "Integrated editor of the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Integrated editor of the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Integrated editor of the FAQ" // Precisa de tradução +#elif L==10 // tr + "Integrated editor of the FAQ" // Çeviri lazim! +#endif + , + [ActPlaTxtEdiFAQ] = +#if L==1 // ca + "Plain text editor of the FAQ" // Necessita traducció +#elif L==2 // de + "Plain text editor of the FAQ" // Need Übersetzung +#elif L==3 // en + "Plain text editor of the FAQ" +#elif L==4 // es + "Editor de texto plano de la FAQ" +#elif L==5 // fr + "Plain text editor of the FAQ" // Besoin de traduction +#elif L==6 // gn + "Editor de texto plano de la FAQ" // Okoteve traducción +#elif L==7 // it + "Plain text editor of the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Plain text editor of the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Plain text editor of the FAQ" // Precisa de tradução +#elif L==10 // tr + "Plain text editor of the FAQ" // Çeviri lazim! +#endif + , + [ActRchTxtEdiFAQ] = +#if L==1 // ca + "Rich text editor of the FAQ" // Necessita traducció +#elif L==2 // de + "Rich text editor of the FAQ" // Need Übersetzung +#elif L==3 // en + "Rich text editor of the FAQ" +#elif L==4 // es + "Editor de texto enriquecido de la FAQ" +#elif L==5 // fr + "Rich text editor of the FAQ" // Besoin de traduction +#elif L==6 // gn + "Editor de texto enriquecido de la FAQ" // Okoteve traducción +#elif L==7 // it + "Rich text editor of the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Rich text editor of the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rich text editor of the FAQ" // Precisa de tradução +#elif L==10 // tr + "Rich text editor of the FAQ" // Çeviri lazim! +#endif + , + [ActRcvPlaTxtFAQ] = +#if L==1 // ca + "Change plain text of the FAQ" // Necessita traducció +#elif L==2 // de + "Change plain text of the FAQ" // Need Übersetzung +#elif L==3 // en + "Change plain text of the FAQ" +#elif L==4 // es + "Cambiar texto plano de la FAQ" +#elif L==5 // fr + "Change plain text of the FAQ" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto plano de la FAQ" // Okoteve traducción +#elif L==7 // it + "Change plain text of the FAQ" // Bisogno di traduzione +#elif L==8 // pl + "Change plain text of the FAQ" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change plain text of the FAQ" // Precisa de tradução +#elif L==10 // tr + "Change plain text of the FAQ" // Çeviri lazim! #endif , [ActRcvRchTxtFAQ] = @@ -8846,6 +8340,259 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change rich text of the FAQ" // Precisa de tradução #elif L==10 // tr "Change rich text of the FAQ" // Çeviri lazim! +#endif + , + [ActSeeCrsLnk] = +#if L==1 // ca + "See the links related to the course" // Necessita traducció +#elif L==2 // de + "See the links related to the course" // Need Übersetzung +#elif L==3 // en + "See the links related to the course" +#elif L==4 // es + "Ver los enlaces relacionados con la asignatura" +#elif L==5 // fr + "See the links related to the course" // Besoin de traduction +#elif L==6 // gn + "Ver los enlaces relacionados con la asignatura" // Okoteve traducción +#elif L==7 // it + "See the links related to the course" // Bisogno di traduzione +#elif L==8 // pl + "See the links related to the course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the links related to the course" // Precisa de tradução +#elif L==10 // tr + "See the links related to the course" // Çeviri lazim! +#endif + , + [ActEdiCrsLnk] = +#if L==1 // ca + "Edit course links" // Necessita traducció +#elif L==2 // de + "Edit course links" // Need Übersetzung +#elif L==3 // en + "Edit course links" +#elif L==4 // es + "Editar los enlaces de la asignatura" +#elif L==5 // fr + "Edit course links" // Besoin de traduction +#elif L==6 // gn + "Editar los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Edit course links" // Bisogno di traduzione +#elif L==8 // pl + "Edit course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit course links" // Precisa de tradução +#elif L==10 // tr + "Edit course links" // Çeviri lazim! +#endif + , + [ActChgFrcReaCrsLnk] = +#if L==1 // ca + "Change whether students are forced to read the links" // Necessita traducció +#elif L==2 // de + "Change whether students are forced to read the links" // Need Übersetzung +#elif L==3 // en + "Change whether students are forced to read the links" +#elif L==4 // es + "Cambiar si se obliga a los estudiantes a leer los enlaces" +#elif L==5 // fr + "Change whether students are forced to read the links" // Besoin de traduction +#elif L==6 // gn + "Cambiar si se obliga a los estudiantes a leer los enlaces" // Okoteve traducción +#elif L==7 // it + "Change whether students are forced to read the links" // Bisogno di traduzione +#elif L==8 // pl + "Change whether students are forced to read the links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change whether students are forced to read the links" // Precisa de tradução +#elif L==10 // tr + "Change whether students are forced to read the links" // Çeviri lazim! +#endif + , + [ActChgHavReaCrsLnk] = +#if L==1 // ca + "Change if I have read the course links" // Necessita traducció +#elif L==2 // de + "Change if I have read the course links" // Need Übersetzung +#elif L==3 // en + "Change if I have read the course links" +#elif L==4 // es + "Cambiar si he leído los enlaces de la asignatura" +#elif L==5 // fr + "Change if I have read the course links" // Besoin de traduction +#elif L==6 // gn + "Cambiar si he leído los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Change if I have read the course links" // Bisogno di traduzione +#elif L==8 // pl + "Change if I have read the course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change if I have read the course links" // Precisa de tradução +#elif L==10 // tr + "Change if I have read the course links" // Çeviri lazim! +#endif + , + [ActSelInfSrcCrsLnk] = +#if L==1 // ca + "Select the type of information shown in the course links" // Necessita traducció +#elif L==2 // de + "Select the type of information shown in the course links" // Need Übersetzung +#elif L==3 // en + "Select the type of information shown in the course links" +#elif L==4 // es + "Seleccionar el tipo de información mostrada en los enlaces de la asignatura" +#elif L==5 // fr + "Select the type of information shown in the course links" // Besoin de traduction +#elif L==6 // gn + "Seleccionar el tipo de información mostrada en los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Select the type of information shown in the course links" // Bisogno di traduzione +#elif L==8 // pl + "Select the type of information shown in the course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select the type of information shown in the course links" // Precisa de tradução +#elif L==10 // tr + "Select the type of information shown in the course links" // Çeviri lazim! +#endif + , + [ActRcvURLCrsLnk] = +#if L==1 // ca + "Create URL in the course links" // Necessita traducció +#elif L==2 // de + "Create URL in the course links" // Need Übersetzung +#elif L==3 // en + "Create URL in the course links" +#elif L==4 // es + "Crear una URL en los enlaces de la asignatura" +#elif L==5 // fr + "Create URL in the course links" // Besoin de traduction +#elif L==6 // gn + "Crear una URL en los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Create URL in the course links" // Bisogno di traduzione +#elif L==8 // pl + "Create URL in the course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create URL in the course links" // Precisa de tradução +#elif L==10 // tr + "Create URL in the course links" // Çeviri lazim! +#endif + , + [ActRcvPagCrsLnk] = +#if L==1 // ca + "Create web page in the course links" // Necessita traducció +#elif L==2 // de + "Create web page in the course links" // Need Übersetzung +#elif L==3 // en + "Create web page in the course links" +#elif L==4 // es + "Crear una página web en los enlaces de la asignatura" +#elif L==5 // fr + "Create web page in the course links" // Besoin de traduction +#elif L==6 // gn + "Crear una página web en los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Create web page in the course links" // Bisogno di traduzione +#elif L==8 // pl + "Create web page in the course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create web page in the course links" // Precisa de tradução +#elif L==10 // tr + "Create web page in the course links" // Çeviri lazim! +#endif + , + [ActEditorCrsLnk] = +#if L==1 // ca + "Integrated editor of course links" // Necessita traducció +#elif L==2 // de + "Integrated editor of course links" // Need Übersetzung +#elif L==3 // en + "Integrated editor of course links" +#elif L==4 // es + "Editor integrado de los enlaces de la asignatura" +#elif L==5 // fr + "Integrated editor of course links" // Besoin de traduction +#elif L==6 // gn + "Editor integrado de los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Integrated editor of course links" // Bisogno di traduzione +#elif L==8 // pl + "Integrated editor of course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Integrated editor of course links" // Precisa de tradução +#elif L==10 // tr + "Integrated editor of course links" // Çeviri lazim! +#endif + , + [ActPlaTxtEdiCrsLnk] = +#if L==1 // ca + "Plain text editor of course links" // Necessita traducció +#elif L==2 // de + "Plain text editor of course links" // Need Übersetzung +#elif L==3 // en + "Plain text editor of course links" +#elif L==4 // es + "Editor de texto plano de los enlaces de la asignatura" +#elif L==5 // fr + "Plain text editor of course links" // Besoin de traduction +#elif L==6 // gn + "Editor de texto plano de los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Plain text editor of course links" // Bisogno di traduzione +#elif L==8 // pl + "Plain text editor of course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Plain text editor of course links" // Precisa de tradução +#elif L==10 // tr + "Plain text editor of course links" // Çeviri lazim! +#endif + , + [ActRchTxtEdiCrsLnk] = +#if L==1 // ca + "Rich text editor of course links" // Necessita traducció +#elif L==2 // de + "Rich text editor of course links" // Need Übersetzung +#elif L==3 // en + "Rich text editor of course links" +#elif L==4 // es + "Editor de texto enriquecido de los enlaces de la asignatura" +#elif L==5 // fr + "Rich text editor of course links" // Besoin de traduction +#elif L==6 // gn + "Editor de texto enriquecido de los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Rich text editor of course links" // Bisogno di traduzione +#elif L==8 // pl + "Rich text editor of course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rich text editor of course links" // Precisa de tradução +#elif L==10 // tr + "Rich text editor of course links" // Çeviri lazim! +#endif + , + [ActRcvPlaTxtCrsLnk] = +#if L==1 // ca + "Change plain text of course links" // Necessita traducció +#elif L==2 // de + "Change plain text of course links" // Need Übersetzung +#elif L==3 // en + "Change plain text of course links" +#elif L==4 // es + "Cambiar texto plano de los enlaces de la asignatura" +#elif L==5 // fr + "Change plain text of course links" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto plano de los enlaces de la asignatura" // Okoteve traducción +#elif L==7 // it + "Change plain text of course links" // Bisogno di traduzione +#elif L==8 // pl + "Change plain text of course links" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change plain text of course links" // Precisa de tradução +#elif L==10 // tr + "Change plain text of course links" // Çeviri lazim! #endif , [ActRcvRchTxtCrsLnk] = @@ -8869,6 +8616,259 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change rich text of course links" // Precisa de tradução #elif L==10 // tr "Change rich text of course links" // Çeviri lazim! +#endif + , + [ActSeeAss] = +#if L==1 // ca + "See assessment system" // Necessita traducció +#elif L==2 // de + "See assessment system" // Need Übersetzung +#elif L==3 // en + "See assessment system" +#elif L==4 // es + "Ver sistema de evaluación" +#elif L==5 // fr + "See assessment system" // Besoin de traduction +#elif L==6 // gn + "Ver sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "See assessment system" // Bisogno di traduzione +#elif L==8 // pl + "See assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See assessment system" // Precisa de tradução +#elif L==10 // tr + "See assessment system" // Çeviri lazim! +#endif + , + [ActEdiAss] = +#if L==1 // ca + "Edit assessment system" // Necessita traducció +#elif L==2 // de + "Edit assessment system" // Need Übersetzung +#elif L==3 // en + "Edit assessment system" +#elif L==4 // es + "Editar sistema de evaluación" +#elif L==5 // fr + "Edit assessment system" // Besoin de traduction +#elif L==6 // gn + "Editar sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Edit assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Edit assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit assessment system" // Precisa de tradução +#elif L==10 // tr + "Edit assessment system" // Çeviri lazim! +#endif + , + [ActChgFrcReaAss] = +#if L==1 // ca + "Change whether students are forced to read the assessment system" // Necessita traducció +#elif L==2 // de + "Change whether students are forced to read the assessment system" // Need Übersetzung +#elif L==3 // en + "Change whether students are forced to read the assessment system" +#elif L==4 // es + "Cambiar si se obliga a los estudiantes a leer el sistema de evaluación" +#elif L==5 // fr + "Change whether students are forced to read the assessment system" // Besoin de traduction +#elif L==6 // gn + "Cambiar si se obliga a los estudiantes a leer el sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Change whether students are forced to read the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Change whether students are forced to read the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change whether students are forced to read the assessment system" // Precisa de tradução +#elif L==10 // tr + "Change whether students are forced to read the assessment system" // Çeviri lazim! +#endif + , + [ActChgHavReaAss] = +#if L==1 // ca + "Change if I have read the assessment system" // Necessita traducció +#elif L==2 // de + "Change if I have read the assessment system" // Need Übersetzung +#elif L==3 // en + "Change if I have read the assessment system" +#elif L==4 // es + "Cambiar si he leído el sistema de evaluación" +#elif L==5 // fr + "Change if I have read the assessment system" // Besoin de traduction +#elif L==6 // gn + "Cambiar si he leído el sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Change if I have read the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Change if I have read the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change if I have read the assessment system" // Precisa de tradução +#elif L==10 // tr + "Change if I have read the assessment system" // Çeviri lazim! +#endif + , + [ActSelInfSrcAss] = +#if L==1 // ca + "Select the type of information shown in the assessment system" // Necessita traducció +#elif L==2 // de + "Select the type of information shown in the assessment system" // Need Übersetzung +#elif L==3 // en + "Select the type of information shown in the assessment system" +#elif L==4 // es + "Seleccionar el tipo de información mostrada en el sistema de evaluación" +#elif L==5 // fr + "Select the type of information shown in the assessment system" // Besoin de traduction +#elif L==6 // gn + "Seleccionar el tipo de información mostrada en el sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Select the type of information shown in the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Select the type of information shown in the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select the type of information shown in the assessment system" // Precisa de tradução +#elif L==10 // tr + "Select the type of information shown in the assessment system" // Çeviri lazim! +#endif + , + [ActRcvURLAss] = +#if L==1 // ca + "Create URL in the assessment system" // Necessita traducció +#elif L==2 // de + "Create URL in the assessment system" // Need Übersetzung +#elif L==3 // en + "Create URL in the assessment system" +#elif L==4 // es + "Crear una URL en el sistema de evaluación" +#elif L==5 // fr + "Create URL in the assessment system" // Besoin de traduction +#elif L==6 // gn + "Crear una URL en el sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Create URL in the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Create URL in the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create URL in the assessment system" // Precisa de tradução +#elif L==10 // tr + "Create URL in the assessment system" // Çeviri lazim! +#endif + , + [ActRcvPagAss] = +#if L==1 // ca + "Create web page in the assessment system" // Necessita traducció +#elif L==2 // de + "Create web page in the assessment system" // Need Übersetzung +#elif L==3 // en + "Create web page in the assessment system" +#elif L==4 // es + "Crear una página web en el sistema de evaluación" +#elif L==5 // fr + "Create web page in the assessment system" // Besoin de traduction +#elif L==6 // gn + "Crear una página web en el sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Create web page in the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Create web page in the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create web page in the assessment system" // Precisa de tradução +#elif L==10 // tr + "Create web page in the assessment system" // Çeviri lazim! +#endif + , + [ActEditorAss] = +#if L==1 // ca + "Integrated editor of the assessment system" // Necessita traducció +#elif L==2 // de + "Integrated editor of the assessment system" // Need Übersetzung +#elif L==3 // en + "Integrated editor of the assessment system" +#elif L==4 // es + "Editor integrado del sistema de evaluación" +#elif L==5 // fr + "Integrated editor of the assessment system" // Besoin de traduction +#elif L==6 // gn + "Editor integrado del sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Integrated editor of the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Integrated editor of the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Integrated editor of the assessment system" // Precisa de tradução +#elif L==10 // tr + "Integrated editor of the assessment system" // Çeviri lazim! +#endif + , + [ActPlaTxtEdiAss] = +#if L==1 // ca + "Plain text editor of the assessment system" // Necessita traducció +#elif L==2 // de + "Plain text editor of the assessment system" // Need Übersetzung +#elif L==3 // en + "Plain text editor of the assessment system" +#elif L==4 // es + "Editor de texto plano del sistema de evaluación" +#elif L==5 // fr + "Plain text editor of the assessment system" // Besoin de traduction +#elif L==6 // gn + "Editor de texto plano del sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Plain text editor of the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Plain text editor of the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Plain text editor of the assessment system" // Precisa de tradução +#elif L==10 // tr + "Plain text editor of the assessment system" // Çeviri lazim! +#endif + , + [ActRchTxtEdiAss] = +#if L==1 // ca + "Rich text editor of the assessment system" // Necessita traducció +#elif L==2 // de + "Rich text editor of the assessment system" // Need Übersetzung +#elif L==3 // en + "Rich text editor of the assessment system" +#elif L==4 // es + "Editor de texto enriquecido del sistema de evaluación" +#elif L==5 // fr + "Rich text editor of the assessment system" // Besoin de traduction +#elif L==6 // gn + "Editor de texto enriquecido del sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Rich text editor of the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Rich text editor of the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Rich text editor of the assessment system" // Precisa de tradução +#elif L==10 // tr + "Rich text editor of the assessment system" // Çeviri lazim! +#endif + , + [ActRcvPlaTxtAss] = +#if L==1 // ca + "Change plain text of the assessment system" // Necessita traducció +#elif L==2 // de + "Change plain text of the assessment system" // Need Übersetzung +#elif L==3 // en + "Change plain text of the assessment system" +#elif L==4 // es + "Cambiar texto plano del sistema de evaluación" +#elif L==5 // fr + "Change plain text of the assessment system" // Besoin de traduction +#elif L==6 // gn + "Cambiar texto plano del sistema de evaluación" // Okoteve traducción +#elif L==7 // it + "Change plain text of the assessment system" // Bisogno di traduzione +#elif L==8 // pl + "Change plain text of the assessment system" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change plain text of the assessment system" // Precisa de tradução +#elif L==10 // tr + "Change plain text of the assessment system" // Çeviri lazim! #endif , [ActRcvRchTxtAss] = @@ -8892,6 +8892,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change rich text of the assessment system" // Precisa de tradução #elif L==10 // tr "Change rich text of the assessment system" // Çeviri lazim! +#endif + , + [ActSeeCrsTT] = +#if L==1 // ca + "See the course timetable" // Necessita traducció +#elif L==2 // de + "See the course timetable" // Need Übersetzung +#elif L==3 // en + "See the course timetable" +#elif L==4 // es + "Ver el horario de la asignatura" +#elif L==5 // fr + "See the course timetable" // Besoin de traduction +#elif L==6 // gn + "Ver el horario de la asignatura" // Okoteve traducción +#elif L==7 // it + "See the course timetable" // Bisogno di traduzione +#elif L==8 // pl + "See the course timetable" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the course timetable" // Precisa de tradução +#elif L==10 // tr + "See the course timetable" // Çeviri lazim! #endif , [ActPrnCrsTT] = @@ -9007,167 +9030,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See assignments" // Precisa de tradução #elif L==10 // tr "See assignments" // Çeviri lazim! -#endif - , - [ActSeeAllPrj] = -#if L==1 // ca - "See projects" // Necessita traducció -#elif L==2 // de - "See projects" // Need Übersetzung -#elif L==3 // en - "See projects" -#elif L==4 // es - "Ver proyectos" -#elif L==5 // fr - "See projects" // Besoin de traduction -#elif L==6 // gn - "Ver proyectos" // Okoteve traducción -#elif L==7 // it - "See projects" // Bisogno di traduzione -#elif L==8 // pl - "See projects" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See projects" // Precisa de tradução -#elif L==10 // tr - "See projects" // Çeviri lazim! -#endif - , - [ActSeeAllCfe] = -#if L==1 // ca - "See exam announcements" // Necessita traducció -#elif L==2 // de - "See exam announcements" // Need Übersetzung -#elif L==3 // en - "See exam announcements" -#elif L==4 // es - "Ver convocatorias de examen" -#elif L==5 // fr - "See exam announcements" // Besoin de traduction -#elif L==6 // gn - "Ver convocatorias de examen" // Okoteve traducción -#elif L==7 // it - "See exam announcements" // Bisogno di traduzione -#elif L==8 // pl - "See exam announcements" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See exam announcements" // Precisa de tradução -#elif L==10 // tr - "See exam announcements" // Çeviri lazim! -#endif - , - [ActEdiTstQst] = -#if L==1 // ca - "Request edition of test questions" // Necessita traducció -#elif L==2 // de - "Request edition of test questions" // Need Übersetzung -#elif L==3 // en - "Request edition of test questions" -#elif L==4 // es - "Solicitar edición de preguntas de test" -#elif L==5 // fr - "Request edition of test questions" // Besoin de traduction -#elif L==6 // gn - "Solicitar edición de preguntas de test" // Okoteve traducción -#elif L==7 // it - "Request edition of test questions" // Bisogno di traduzione -#elif L==8 // pl - "Request edition of test questions" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request edition of test questions" // Precisa de tradução -#elif L==10 // tr - "Request edition of test questions" // Çeviri lazim! -#endif - , - [ActReqTst] = -#if L==1 // ca - "Request a test" // Necessita traducció -#elif L==2 // de - "Request a test" // Need Übersetzung -#elif L==3 // en - "Request a test" -#elif L==4 // es - "Solicitar un test" -#elif L==5 // fr - "Request a test" // Besoin de traduction -#elif L==6 // gn - "Solicitar un test" // Okoteve traducción -#elif L==7 // it - "Request a test" // Bisogno di traduzione -#elif L==8 // pl - "Request a test" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request a test" // Precisa de tradução -#elif L==10 // tr - "Request a test" // Çeviri lazim! -#endif - , - [ActSeeAllExa] = -#if L==1 // ca - "See exams" // Necessita traducció -#elif L==2 // de - "See exams" // Need Übersetzung -#elif L==3 // en - "See exams" -#elif L==4 // es - "Ver exámenes" -#elif L==5 // fr - "See exams" // Besoin de traduction -#elif L==6 // gn - "Ver exámenes" // Okoteve traducción -#elif L==7 // it - "See exams" // Bisogno di traduzione -#elif L==8 // pl - "See exams" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See exams" // Precisa de tradução -#elif L==10 // tr - "See exams" // Çeviri lazim! -#endif - , - [ActSeeAllGam] = -#if L==1 // ca - "See games" // Necessita traducció -#elif L==2 // de - "See games" // Need Übersetzung -#elif L==3 // en - "See games" -#elif L==4 // es - "Ver juegos" -#elif L==5 // fr - "See games" // Besoin de traduction -#elif L==6 // gn - "Ver juegos" // Okoteve traducción -#elif L==7 // it - "See games" // Bisogno di traduzione -#elif L==8 // pl - "See games" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See games" // Precisa de tradução -#elif L==10 // tr - "See games" // Çeviri lazim! -#endif - , - [ActSeeAllRub] = -#if L==1 // ca - "See rubrics" // Necessita traducció -#elif L==2 // de - "See rubrics" // Need Übersetzung -#elif L==3 // en - "See rubrics" -#elif L==4 // es - "Ver rúbricas" -#elif L==5 // fr - "See rubrics" // Besoin de traduction -#elif L==6 // gn - "Ver rúbricas" // Okoteve traducción -#elif L==7 // it - "See rubrics" // Bisogno di traduzione -#elif L==8 // pl - "See rubrics" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See rubrics" // Precisa de tradução -#elif L==10 // tr - "See rubrics" // Çeviri lazim! #endif , [ActFrmNewAsg] = @@ -9421,6 +9283,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Copy link to assignment" // Precisa de tradução #elif L==10 // tr "Copy link to assignment" // Çeviri lazim! +#endif + , + [ActSeeAllPrj] = +#if L==1 // ca + "See projects" // Necessita traducció +#elif L==2 // de + "See projects" // Need Übersetzung +#elif L==3 // en + "See projects" +#elif L==4 // es + "Ver proyectos" +#elif L==5 // fr + "See projects" // Besoin de traduction +#elif L==6 // gn + "Ver proyectos" // Okoteve traducción +#elif L==7 // it + "See projects" // Bisogno di traduzione +#elif L==8 // pl + "See projects" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See projects" // Precisa de tradução +#elif L==10 // tr + "See projects" // Çeviri lazim! #endif , [ActCfgPrj] = @@ -11123,6 +11008,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from the assessment zone of a project" // Precisa de tradução #elif L==10 // tr "Download file from the assessment zone of a project" // Çeviri lazim! +#endif + , + [ActSeeAllCfe] = +#if L==1 // ca + "See exam announcements" // Necessita traducció +#elif L==2 // de + "See exam announcements" // Need Übersetzung +#elif L==3 // en + "See exam announcements" +#elif L==4 // es + "Ver convocatorias de examen" +#elif L==5 // fr + "See exam announcements" // Besoin de traduction +#elif L==6 // gn + "Ver convocatorias de examen" // Okoteve traducción +#elif L==7 // it + "See exam announcements" // Bisogno di traduzione +#elif L==8 // pl + "See exam announcements" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See exam announcements" // Precisa de tradução +#elif L==10 // tr + "See exam announcements" // Çeviri lazim! #endif , [ActSeeOneCfe] = @@ -11353,6 +11261,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Copy link to exam announcement" // Precisa de tradução #elif L==10 // tr "Copy link to exam announcement" // Çeviri lazim! +#endif + , + [ActEdiTstQst] = +#if L==1 // ca + "Request edition of test questions" // Necessita traducció +#elif L==2 // de + "Request edition of test questions" // Need Übersetzung +#elif L==3 // en + "Request edition of test questions" +#elif L==4 // es + "Solicitar edición de preguntas de test" +#elif L==5 // fr + "Request edition of test questions" // Besoin de traduction +#elif L==6 // gn + "Solicitar edición de preguntas de test" // Okoteve traducción +#elif L==7 // it + "Request edition of test questions" // Bisogno di traduzione +#elif L==8 // pl + "Request edition of test questions" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request edition of test questions" // Precisa de tradução +#elif L==10 // tr + "Request edition of test questions" // Çeviri lazim! #endif , [ActEdiOneTstQst] = @@ -11698,6 +11629,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Rename tag in the question bank" // Precisa de tradução #elif L==10 // tr "Rename tag in the question bank" // Çeviri lazim! +#endif + , + [ActReqTst] = +#if L==1 // ca + "Request a test" // Necessita traducció +#elif L==2 // de + "Request a test" // Need Übersetzung +#elif L==3 // en + "Request a test" +#elif L==4 // es + "Solicitar un test" +#elif L==5 // fr + "Request a test" // Besoin de traduction +#elif L==6 // gn + "Solicitar un test" // Okoteve traducción +#elif L==7 // it + "Request a test" // Bisogno di traduzione +#elif L==8 // pl + "Request a test" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request a test" // Precisa de tradução +#elif L==10 // tr + "Request a test" // Çeviri lazim! #endif , [ActSeeTst] = @@ -11951,6 +11905,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See a test result for a user" // Precisa de tradução #elif L==10 // tr "See a test result for a user" // Çeviri lazim! +#endif + , + [ActSeeAllExa] = +#if L==1 // ca + "See exams" // Necessita traducció +#elif L==2 // de + "See exams" // Need Übersetzung +#elif L==3 // en + "See exams" +#elif L==4 // es + "Ver exámenes" +#elif L==5 // fr + "See exams" // Besoin de traduction +#elif L==6 // gn + "Ver exámenes" // Okoteve traducción +#elif L==7 // it + "See exams" // Bisogno di traduzione +#elif L==8 // pl + "See exams" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See exams" // Precisa de tradução +#elif L==10 // tr + "See exams" // Çeviri lazim! #endif , [ActSeeOneExa] = @@ -12986,6 +12963,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change visibility of exam results" // Precisa de tradução #elif L==10 // tr "Change visibility of exam results" // Çeviri lazim! +#endif + , + [ActSeeAllGam] = +#if L==1 // ca + "See games" // Necessita traducció +#elif L==2 // de + "See games" // Need Übersetzung +#elif L==3 // en + "See games" +#elif L==4 // es + "Ver juegos" +#elif L==5 // fr + "See games" // Besoin de traduction +#elif L==6 // gn + "Ver juegos" // Okoteve traducción +#elif L==7 // it + "See games" // Bisogno di traduzione +#elif L==8 // pl + "See games" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See games" // Precisa de tradução +#elif L==10 // tr + "See games" // Çeviri lazim! #endif , [ActSeeOneGam] = @@ -14067,6 +14067,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Copy link to game" // Precisa de tradução #elif L==10 // tr "Copy link to game" // Çeviri lazim! +#endif + , + [ActSeeAllRub] = +#if L==1 // ca + "See rubrics" // Necessita traducció +#elif L==2 // de + "See rubrics" // Need Übersetzung +#elif L==3 // en + "See rubrics" +#elif L==4 // es + "Ver rúbricas" +#elif L==5 // fr + "See rubrics" // Besoin de traduction +#elif L==6 // gn + "Ver rúbricas" // Okoteve traducción +#elif L==7 // it + "See rubrics" // Bisogno di traduzione +#elif L==8 // pl + "See rubrics" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See rubrics" // Precisa de tradução +#elif L==10 // tr + "See rubrics" // Çeviri lazim! #endif , [ActSeeOneRub] = @@ -14550,282 +14573,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Documents zone of institution (see or manage)" // Precisa de tradução #elif L==10 // tr "Documents zone of institution (see or manage)" // Çeviri lazim! -#endif - , - [ActAdmShaIns] = -#if L==1 // ca - "Manage shared files zone of institution" // Necessita traducció -#elif L==2 // de - "Manage shared files zone of institution" // Need Übersetzung -#elif L==3 // en - "Manage shared files zone of institution" -#elif L==4 // es - "Administrar zona de archivos compartidos de institución" -#elif L==5 // fr - "Manage shared files zone of institution" // Besoin de traduction -#elif L==6 // gn - "Administrar zona de archivos compartidos de institución" // Okoteve traducción -#elif L==7 // it - "Manage shared files zone of institution" // Bisogno di traduzione -#elif L==8 // pl - "Manage shared files zone of institution" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Manage shared files zone of institution" // Precisa de tradução -#elif L==10 // tr - "Manage shared files zone of institution" // Çeviri lazim! -#endif - , - [ActSeeAdmDocCtr] = -#if L==1 // ca - "Documents zone of center (see or manage)" // Necessita traducció -#elif L==2 // de - "Documents zone of center (see or manage)" // Need Übersetzung -#elif L==3 // en - "Documents zone of center (see or manage)" -#elif L==4 // es - "Zona de documentos de centro (ver o administrar)" -#elif L==5 // fr - "Documents zone of center (see or manage)" // Besoin de traduction -#elif L==6 // gn - "Zona de documentos de centro (ver o administrar)" // Okoteve traducción -#elif L==7 // it - "Documents zone of center (see or manage)" // Bisogno di traduzione -#elif L==8 // pl - "Documents zone of center (see or manage)" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Documents zone of center (see or manage)" // Precisa de tradução -#elif L==10 // tr - "Documents zone of center (see or manage)" // Çeviri lazim! -#endif - , - [ActAdmShaCtr] = -#if L==1 // ca - "Manage shared files zone of center" // Necessita traducció -#elif L==2 // de - "Manage shared files zone of center" // Need Übersetzung -#elif L==3 // en - "Manage shared files zone of center" -#elif L==4 // es - "Administrar zona de archivos compartidos de centro" -#elif L==5 // fr - "Manage shared files zone of center" // Besoin de traduction -#elif L==6 // gn - "Administrar zona de archivos compartidos de centro" // Okoteve traducción -#elif L==7 // it - "Manage shared files zone of center" // Bisogno di traduzione -#elif L==8 // pl - "Manage shared files zone of center" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Manage shared files zone of center" // Precisa de tradução -#elif L==10 // tr - "Manage shared files zone of center" // Çeviri lazim! -#endif - , - [ActSeeAdmDocDeg] = -#if L==1 // ca - "Documents zone of degree (see or manage)" // Necessita traducció -#elif L==2 // de - "Documents zone of degree (see or manage)" // Need Übersetzung -#elif L==3 // en - "Documents zone of degree (see or manage)" -#elif L==4 // es - "Zona de documentos de la titulación (ver o administrar)" -#elif L==5 // fr - "Documents zone of degree (see or manage)" // Besoin de traduction -#elif L==6 // gn - "Zona de documentos de la titulación (ver o administrar)" // Okoteve traducción -#elif L==7 // it - "Documents zone of degree (see or manage)" // Bisogno di traduzione -#elif L==8 // pl - "Documents zone of degree (see or manage)" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Documents zone of degree (see or manage)" // Precisa de tradução -#elif L==10 // tr - "Documents zone of degree (see or manage)" // Çeviri lazim! -#endif - , - [ActAdmShaDeg] = -#if L==1 // ca - "Manage shared files zone of degree" // Necessita traducció -#elif L==2 // de - "Manage shared files zone of degree" // Need Übersetzung -#elif L==3 // en - "Manage shared files zone of degree" -#elif L==4 // es - "Administrar zona de archivos compartidos de titulación" -#elif L==5 // fr - "Manage shared files zone of degree" // Besoin de traduction -#elif L==6 // gn - "Administrar zona de archivos compartidos de titulación" // Okoteve traducción -#elif L==7 // it - "Manage shared files zone of degree" // Bisogno di traduzione -#elif L==8 // pl - "Manage shared files zone of degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Manage shared files zone of degree" // Precisa de tradução -#elif L==10 // tr - "Manage shared files zone of degree" // Çeviri lazim! -#endif - , - [ActSeeAdmDocCrsGrp] = -#if L==1 // ca - "Documents zone of course (see or manage)" // Necessita traducció -#elif L==2 // de - "Documents zone of course (see or manage)" // Need Übersetzung -#elif L==3 // en - "Documents zone of course (see or manage)" -#elif L==4 // es - "Zona de documentos de asignatura (ver o administrar)" -#elif L==5 // fr - "Documents zone of course (see or manage)" // Besoin de traduction -#elif L==6 // gn - "Zona de documentos de asignatura (ver o administrar)" // Okoteve traducción -#elif L==7 // it - "Documents zone of course (see or manage)" // Bisogno di traduzione -#elif L==8 // pl - "Documents zone of course (see or manage)" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Documents zone of course (see or manage)" // Precisa de tradução -#elif L==10 // tr - "Documents zone of course (see or manage)" // Çeviri lazim! -#endif - , - [ActAdmTchCrsGrp] = -#if L==1 // ca - "Request management of teachers' documents zone of course/group" // Necessita traducció -#elif L==2 // de - "Request management of teachers' documents zone of course/group" // Need Übersetzung -#elif L==3 // en - "Request management of teachers' documents zone of course/group" -#elif L==4 // es - "Solicitar administración de zona de archivos de profesores de asignatura/grupo" -#elif L==5 // fr - "Request management of teachers' documents zone of course/group" // Besoin de traduction -#elif L==6 // gn - "Solicitar administración de zona de archivos de profesores de asignatura/grupo" // Okoteve traducción -#elif L==7 // it - "Request management of teachers' documents zone of course/group" // Bisogno di traduzione -#elif L==8 // pl - "Request management of teachers' documents zone of course/group" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request management of teachers' documents zone of course/group" // Precisa de tradução -#elif L==10 // tr - "Request management of teachers' documents zone of course/group" // Çeviri lazim! -#endif - , - [ActAdmShaCrsGrp] = -#if L==1 // ca - "Request management of shared zone of course/group" // Necessita traducció -#elif L==2 // de - "Request management of shared zone of course/group" // Need Übersetzung -#elif L==3 // en - "Request management of shared zone of course/group" -#elif L==4 // es - "Solicitar administración de zona de archivos compartidos de asignatura/grupo" -#elif L==5 // fr - "Request management of shared zone of course/group" // Besoin de traduction -#elif L==6 // gn - "Solicitar administración de zona de archivos compartidos de asignatura/grupo" // Okoteve traducción -#elif L==7 // it - "Request management of shared zone of course/group" // Bisogno di traduzione -#elif L==8 // pl - "Request management of shared zone of course/group" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request management of shared zone of course/group" // Precisa de tradução -#elif L==10 // tr - "Request management of shared zone of course/group" // Çeviri lazim! -#endif - , - [ActAdmAsgWrkUsr] = -#if L==1 // ca - "Manage the assignments/works of user" // Necessita traducció -#elif L==2 // de - "Manage the assignments/works of user" // Need Übersetzung -#elif L==3 // en - "Manage the assignments/works of user" -#elif L==4 // es - "Administrar las actividades/trabajos de usuario" -#elif L==5 // fr - "Manage the assignments/works of user" // Besoin de traduction -#elif L==6 // gn - "Administrar las actividades/trabajos de usuario" // Okoteve traducción -#elif L==7 // it - "Manage the assignments/works of user" // Bisogno di traduzione -#elif L==8 // pl - "Manage the assignments/works of user" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Manage the assignments/works of user" // Precisa de tradução -#elif L==10 // tr - "Manage the assignments/works of user" // Çeviri lazim! -#endif - , - [ActReqAsgWrkCrs] = -#if L==1 // ca - "Manage assignments/works in course" // Necessita traducció -#elif L==2 // de - "Manage assignments/works in course" // Need Übersetzung -#elif L==3 // en - "Manage assignments/works in course" -#elif L==4 // es - "Administrar actividades/trabajos en asignatura" -#elif L==5 // fr - "Manage assignments/works in course" // Besoin de traduction -#elif L==6 // gn - "Administrar actividades/trabajos en asignatura" // Okoteve traducción -#elif L==7 // it - "Manage assignments/works in course" // Bisogno di traduzione -#elif L==8 // pl - "Manage assignments/works in course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Manage assignments/works in course" // Precisa de tradução -#elif L==10 // tr - "Manage assignments/works in course" // Çeviri lazim! -#endif - , - [ActSeeAdmMrk] = -#if L==1 // ca - "Marks zone (see or manage)" // Necessita traducció -#elif L==2 // de - "Marks zone (see or manage)" // Need Übersetzung -#elif L==3 // en - "Marks zone (see or manage)" -#elif L==4 // es - "Zona de calificaciones (ver o administrar)" -#elif L==5 // fr - "Marks zone (see or manage)" // Besoin de traduction -#elif L==6 // gn - "Zona de calificaciones (ver o administrar)" // Okoteve traducción -#elif L==7 // it - "Marks zone (see or manage)" // Bisogno di traduzione -#elif L==8 // pl - "Marks zone (see or manage)" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Marks zone (see or manage)" // Precisa de tradução -#elif L==10 // tr - "Marks zone (see or manage)" // Çeviri lazim! -#endif - , - [ActAdmBrf] = -#if L==1 // ca - "Manage briefcase" // Necessita traducció -#elif L==2 // de - "Manage briefcase" // Need Übersetzung -#elif L==3 // en - "Manage briefcase" -#elif L==4 // es - "Administrar maletín" -#elif L==5 // fr - "Manage briefcase" // Besoin de traduction -#elif L==6 // gn - "Administrar maletín" // Okoteve traducción -#elif L==7 // it - "Manage briefcase" // Bisogno di traduzione -#elif L==8 // pl - "Manage briefcase" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Manage briefcase" // Precisa de tradução -#elif L==10 // tr - "Manage briefcase" // Çeviri lazim! #endif , [ActChgToSeeDocIns] = @@ -15493,6 +15240,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from documents zone of institution" // Precisa de tradução #elif L==10 // tr "Download file from documents zone of institution" // Çeviri lazim! +#endif + , + [ActAdmShaIns] = +#if L==1 // ca + "Manage shared files zone of institution" // Necessita traducció +#elif L==2 // de + "Manage shared files zone of institution" // Need Übersetzung +#elif L==3 // en + "Manage shared files zone of institution" +#elif L==4 // es + "Administrar zona de archivos compartidos de institución" +#elif L==5 // fr + "Manage shared files zone of institution" // Besoin de traduction +#elif L==6 // gn + "Administrar zona de archivos compartidos de institución" // Okoteve traducción +#elif L==7 // it + "Manage shared files zone of institution" // Bisogno di traduzione +#elif L==8 // pl + "Manage shared files zone of institution" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Manage shared files zone of institution" // Precisa de tradução +#elif L==10 // tr + "Manage shared files zone of institution" // Çeviri lazim! #endif , [ActReqRemFilShaIns] = @@ -15907,6 +15677,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from shared zone of institution" // Precisa de tradução #elif L==10 // tr "Download file from shared zone of institution" // Çeviri lazim! +#endif + , + [ActSeeAdmDocCtr] = +#if L==1 // ca + "Documents zone of center (see or manage)" // Necessita traducció +#elif L==2 // de + "Documents zone of center (see or manage)" // Need Übersetzung +#elif L==3 // en + "Documents zone of center (see or manage)" +#elif L==4 // es + "Zona de documentos de centro (ver o administrar)" +#elif L==5 // fr + "Documents zone of center (see or manage)" // Besoin de traduction +#elif L==6 // gn + "Zona de documentos de centro (ver o administrar)" // Okoteve traducción +#elif L==7 // it + "Documents zone of center (see or manage)" // Bisogno di traduzione +#elif L==8 // pl + "Documents zone of center (see or manage)" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Documents zone of center (see or manage)" // Precisa de tradução +#elif L==10 // tr + "Documents zone of center (see or manage)" // Çeviri lazim! #endif , [ActChgToSeeDocCtr] = @@ -16574,6 +16367,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from documents zone of center" // Precisa de tradução #elif L==10 // tr "Download file from documents zone of center" // Çeviri lazim! +#endif + , + [ActAdmShaCtr] = +#if L==1 // ca + "Manage shared files zone of center" // Necessita traducció +#elif L==2 // de + "Manage shared files zone of center" // Need Übersetzung +#elif L==3 // en + "Manage shared files zone of center" +#elif L==4 // es + "Administrar zona de archivos compartidos de centro" +#elif L==5 // fr + "Manage shared files zone of center" // Besoin de traduction +#elif L==6 // gn + "Administrar zona de archivos compartidos de centro" // Okoteve traducción +#elif L==7 // it + "Manage shared files zone of center" // Bisogno di traduzione +#elif L==8 // pl + "Manage shared files zone of center" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Manage shared files zone of center" // Precisa de tradução +#elif L==10 // tr + "Manage shared files zone of center" // Çeviri lazim! #endif , [ActReqRemFilShaCtr] = @@ -16988,6 +16804,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from shared zone of center" // Precisa de tradução #elif L==10 // tr "Download file from shared zone of center" // Çeviri lazim! +#endif + , + [ActSeeAdmDocDeg] = +#if L==1 // ca + "Documents zone of degree (see or manage)" // Necessita traducció +#elif L==2 // de + "Documents zone of degree (see or manage)" // Need Übersetzung +#elif L==3 // en + "Documents zone of degree (see or manage)" +#elif L==4 // es + "Zona de documentos de la titulación (ver o administrar)" +#elif L==5 // fr + "Documents zone of degree (see or manage)" // Besoin de traduction +#elif L==6 // gn + "Zona de documentos de la titulación (ver o administrar)" // Okoteve traducción +#elif L==7 // it + "Documents zone of degree (see or manage)" // Bisogno di traduzione +#elif L==8 // pl + "Documents zone of degree (see or manage)" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Documents zone of degree (see or manage)" // Precisa de tradução +#elif L==10 // tr + "Documents zone of degree (see or manage)" // Çeviri lazim! #endif , [ActChgToSeeDocDeg] = @@ -17655,6 +17494,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from documents zone of degree" // Precisa de tradução #elif L==10 // tr "Download file from documents zone of degree" // Çeviri lazim! +#endif + , + [ActAdmShaDeg] = +#if L==1 // ca + "Manage shared files zone of degree" // Necessita traducció +#elif L==2 // de + "Manage shared files zone of degree" // Need Übersetzung +#elif L==3 // en + "Manage shared files zone of degree" +#elif L==4 // es + "Administrar zona de archivos compartidos de titulación" +#elif L==5 // fr + "Manage shared files zone of degree" // Besoin de traduction +#elif L==6 // gn + "Administrar zona de archivos compartidos de titulación" // Okoteve traducción +#elif L==7 // it + "Manage shared files zone of degree" // Bisogno di traduzione +#elif L==8 // pl + "Manage shared files zone of degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Manage shared files zone of degree" // Precisa de tradução +#elif L==10 // tr + "Manage shared files zone of degree" // Çeviri lazim! #endif , [ActReqRemFilShaDeg] = @@ -18069,6 +17931,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from shared zone of degree" // Precisa de tradução #elif L==10 // tr "Download file from shared zone of degree" // Çeviri lazim! +#endif + , + [ActSeeAdmDocCrsGrp] = +#if L==1 // ca + "Documents zone of course (see or manage)" // Necessita traducció +#elif L==2 // de + "Documents zone of course (see or manage)" // Need Übersetzung +#elif L==3 // en + "Documents zone of course (see or manage)" +#elif L==4 // es + "Zona de documentos de asignatura (ver o administrar)" +#elif L==5 // fr + "Documents zone of course (see or manage)" // Besoin de traduction +#elif L==6 // gn + "Zona de documentos de asignatura (ver o administrar)" // Okoteve traducción +#elif L==7 // it + "Documents zone of course (see or manage)" // Bisogno di traduzione +#elif L==8 // pl + "Documents zone of course (see or manage)" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Documents zone of course (see or manage)" // Precisa de tradução +#elif L==10 // tr + "Documents zone of course (see or manage)" // Çeviri lazim! #endif , [ActChgToSeeDocCrs] = @@ -19403,6 +19288,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from documents zone of group" // Precisa de tradução #elif L==10 // tr "Download file from documents zone of group" // Çeviri lazim! +#endif + , + [ActAdmTchCrsGrp] = +#if L==1 // ca + "Request management of teachers' documents zone of course/group" // Necessita traducció +#elif L==2 // de + "Request management of teachers' documents zone of course/group" // Need Übersetzung +#elif L==3 // en + "Request management of teachers' documents zone of course/group" +#elif L==4 // es + "Solicitar administración de zona de archivos de profesores de asignatura/grupo" +#elif L==5 // fr + "Request management of teachers' documents zone of course/group" // Besoin de traduction +#elif L==6 // gn + "Solicitar administración de zona de archivos de profesores de asignatura/grupo" // Okoteve traducción +#elif L==7 // it + "Request management of teachers' documents zone of course/group" // Bisogno di traduzione +#elif L==8 // pl + "Request management of teachers' documents zone of course/group" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request management of teachers' documents zone of course/group" // Precisa de tradução +#elif L==10 // tr + "Request management of teachers' documents zone of course/group" // Çeviri lazim! #endif , [ActChgToAdmTch] = @@ -20300,6 +20208,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from teachers' documents zone of group" // Precisa de tradução #elif L==10 // tr "Download file from teachers' documents zone of group" // Çeviri lazim! +#endif + , + [ActAdmShaCrsGrp] = +#if L==1 // ca + "Request management of shared zone of course/group" // Necessita traducció +#elif L==2 // de + "Request management of shared zone of course/group" // Need Übersetzung +#elif L==3 // en + "Request management of shared zone of course/group" +#elif L==4 // es + "Solicitar administración de zona de archivos compartidos de asignatura/grupo" +#elif L==5 // fr + "Request management of shared zone of course/group" // Besoin de traduction +#elif L==6 // gn + "Solicitar administración de zona de archivos compartidos de asignatura/grupo" // Okoteve traducción +#elif L==7 // it + "Request management of shared zone of course/group" // Bisogno di traduzione +#elif L==8 // pl + "Request management of shared zone of course/group" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request management of shared zone of course/group" // Precisa de tradução +#elif L==10 // tr + "Request management of shared zone of course/group" // Çeviri lazim! #endif , [ActChgToAdmSha] = @@ -21197,6 +21128,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from shared files zone of group" // Precisa de tradução #elif L==10 // tr "Download file from shared files zone of group" // Çeviri lazim! +#endif + , + [ActReqAsgWrkCrs] = +#if L==1 // ca + "Manage assignments/works in course" // Necessita traducció +#elif L==2 // de + "Manage assignments/works in course" // Need Übersetzung +#elif L==3 // en + "Manage assignments/works in course" +#elif L==4 // es + "Administrar actividades/trabajos en asignatura" +#elif L==5 // fr + "Manage assignments/works in course" // Besoin de traduction +#elif L==6 // gn + "Administrar actividades/trabajos en asignatura" // Okoteve traducción +#elif L==7 // it + "Manage assignments/works in course" // Bisogno di traduzione +#elif L==8 // pl + "Manage assignments/works in course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Manage assignments/works in course" // Precisa de tradução +#elif L==10 // tr + "Manage assignments/works in course" // Çeviri lazim! #endif , [ActAdmAsgWrkCrs] = @@ -21220,6 +21174,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Manage all assignments/works in course" // Precisa de tradução #elif L==10 // tr "Manage all assignments/works in course" // Çeviri lazim! +#endif + , + [ActAdmAsgWrkUsr] = +#if L==1 // ca + "Manage the assignments/works of user" // Necessita traducció +#elif L==2 // de + "Manage the assignments/works of user" // Need Übersetzung +#elif L==3 // en + "Manage the assignments/works of user" +#elif L==4 // es + "Administrar las actividades/trabajos de usuario" +#elif L==5 // fr + "Manage the assignments/works of user" // Besoin de traduction +#elif L==6 // gn + "Administrar las actividades/trabajos de usuario" // Okoteve traducción +#elif L==7 // it + "Manage the assignments/works of user" // Bisogno di traduzione +#elif L==8 // pl + "Manage the assignments/works of user" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Manage the assignments/works of user" // Precisa de tradução +#elif L==10 // tr + "Manage the assignments/works of user" // Çeviri lazim! #endif , [ActReqRemFilAsgUsr] = @@ -22876,6 +22853,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Download file from works zone of course" // Precisa de tradução #elif L==10 // tr "Download file from works zone of course" // Çeviri lazim! +#endif + , + [ActSeeAdmMrk] = +#if L==1 // ca + "Marks zone (see or manage)" // Necessita traducció +#elif L==2 // de + "Marks zone (see or manage)" // Need Übersetzung +#elif L==3 // en + "Marks zone (see or manage)" +#elif L==4 // es + "Zona de calificaciones (ver o administrar)" +#elif L==5 // fr + "Marks zone (see or manage)" // Besoin de traduction +#elif L==6 // gn + "Zona de calificaciones (ver o administrar)" // Okoteve traducción +#elif L==7 // it + "Marks zone (see or manage)" // Bisogno di traduzione +#elif L==8 // pl + "Marks zone (see or manage)" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Marks zone (see or manage)" // Precisa de tradução +#elif L==10 // tr + "Marks zone (see or manage)" // Çeviri lazim! #endif , [ActChgToSeeMrk] = @@ -24210,6 +24210,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change number of foot rows of a file in marks of group" // Precisa de tradução #elif L==10 // tr "Change number of foot rows of a file in marks of group" // Çeviri lazim! +#endif + , + [ActAdmBrf] = +#if L==1 // ca + "Manage briefcase" // Necessita traducció +#elif L==2 // de + "Manage briefcase" // Need Übersetzung +#elif L==3 // en + "Manage briefcase" +#elif L==4 // es + "Administrar maletín" +#elif L==5 // fr + "Manage briefcase" // Besoin de traduction +#elif L==6 // gn + "Administrar maletín" // Okoteve traducción +#elif L==7 // it + "Manage briefcase" // Bisogno di traduzione +#elif L==8 // pl + "Manage briefcase" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Manage briefcase" // Precisa de tradução +#elif L==10 // tr + "Manage briefcase" // Çeviri lazim! #endif , [ActReqRemFilBrf] = @@ -24693,167 +24716,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Request selection of groups of students" // Precisa de tradução #elif L==10 // tr "Request selection of groups of students" // Çeviri lazim! -#endif - , - [ActLstStd] = -#if L==1 // ca - "Show class photo or list of students" // Necessita traducció -#elif L==2 // de - "Show class photo or list of students" // Need Übersetzung -#elif L==3 // en - "Show class photo or list of students" -#elif L==4 // es - "Mostrar foto de clase o lista de estudiantes" -#elif L==5 // fr - "Show class photo or list of students" // Besoin de traduction -#elif L==6 // gn - "Mostrar foto de clase o lista de estudiantes" // Okoteve traducción -#elif L==7 // it - "Show class photo or list of students" // Bisogno di traduzione -#elif L==8 // pl - "Show class photo or list of students" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show class photo or list of students" // Precisa de tradução -#elif L==10 // tr - "Show class photo or list of students" // Çeviri lazim! -#endif - , - [ActLstTch] = -#if L==1 // ca - "Show class photo or list of teachers" // Necessita traducció -#elif L==2 // de - "Show class photo or list of teachers" // Need Übersetzung -#elif L==3 // en - "Show class photo or list of teachers" -#elif L==4 // es - "Mostrar foto de clase o lista de profesores" -#elif L==5 // fr - "Show class photo or list of teachers" // Besoin de traduction -#elif L==6 // gn - "Mostrar foto de clase o lista de profesores" // Okoteve traducción -#elif L==7 // it - "Show class photo or list of teachers" // Bisogno di traduzione -#elif L==8 // pl - "Show class photo or list of teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show class photo or list of teachers" // Precisa de tradução -#elif L==10 // tr - "Show class photo or list of teachers" // Çeviri lazim! -#endif - , - [ActLstOth] = -#if L==1 // ca - "Show class photo or list of guests" // Necessita traducció -#elif L==2 // de - "Show class photo or list of guests" // Need Übersetzung -#elif L==3 // en - "Show class photo or list of guests" -#elif L==4 // es - "Mostrar foto de clase o lista de invitados" -#elif L==5 // fr - "Show class photo or list of guests" // Besoin de traduction -#elif L==6 // gn - "Mostrar foto de clase o lista de invitados" // Okoteve traducción -#elif L==7 // it - "Show class photo or list of guests" // Bisogno di traduzione -#elif L==8 // pl - "Show class photo or list of guests" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show class photo or list of guests" // Precisa de tradução -#elif L==10 // tr - "Show class photo or list of guests" // Çeviri lazim! -#endif - , - [ActSeeAllAtt] = -#if L==1 // ca - "Show attendance events" // Necessita traducció -#elif L==2 // de - "Show attendance events" // Need Übersetzung -#elif L==3 // en - "Show attendance events" -#elif L==4 // es - "Mostrar eventos de asistencia" -#elif L==5 // fr - "Show attendance events" // Besoin de traduction -#elif L==6 // gn - "Mostrar eventos de asistencia" // Okoteve traducción -#elif L==7 // it - "Show attendance events" // Bisogno di traduzione -#elif L==8 // pl - "Show attendance events" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show attendance events" // Precisa de tradução -#elif L==10 // tr - "Show attendance events" // Çeviri lazim! -#endif - , - [ActReqSignUp] = -#if L==1 // ca - "Apply for my enrolment" // Necessita traducció -#elif L==2 // de - "Apply for my enrolment" // Need Übersetzung -#elif L==3 // en - "Apply for my enrolment" -#elif L==4 // es - "Solicitar mi inscripción" -#elif L==5 // fr - "Apply for my enrolment" // Besoin de traduction -#elif L==6 // gn - "Solicitar mi inscripción" // Okoteve traducción -#elif L==7 // it - "Apply for my enrolment" // Bisogno di traduzione -#elif L==8 // pl - "Apply for my enrolment" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Apply for my enrolment" // Precisa de tradução -#elif L==10 // tr - "Apply for my enrolment" // Çeviri lazim! -#endif - , - [ActSeeSignUpReq] = -#if L==1 // ca - "Show pending requests for inscription in the current course" // Necessita traducció -#elif L==2 // de - "Show pending requests for inscription in the current course" // Need Übersetzung -#elif L==3 // en - "Show pending requests for inscription in the current course" -#elif L==4 // es - "Mostrar solicitudes de inscripción pendientes en la asignatura actual" -#elif L==5 // fr - "Show pending requests for inscription in the current course" // Besoin de traduction -#elif L==6 // gn - "Mostrar solicitudes de inscripción pendientes en la asignatura actual" // Okoteve traducción -#elif L==7 // it - "Show pending requests for inscription in the current course" // Bisogno di traduzione -#elif L==8 // pl - "Show pending requests for inscription in the current course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show pending requests for inscription in the current course" // Precisa de tradução -#elif L==10 // tr - "Show pending requests for inscription in the current course" // Çeviri lazim! -#endif - , - [ActLstCon] = -#if L==1 // ca - "List connected users" // Necessita traducció -#elif L==2 // de - "List connected users" // Need Übersetzung -#elif L==3 // en - "List connected users" -#elif L==4 // es - "Listar usuarios conectados" -#elif L==5 // fr - "List connected users" // Besoin de traduction -#elif L==6 // gn - "Listar usuarios conectados" // Okoteve traducción -#elif L==7 // it - "List connected users" // Bisogno di traduzione -#elif L==8 // pl - "List connected users" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List connected users" // Precisa de tradução -#elif L==10 // tr - "List connected users" // Çeviri lazim! #endif , [ActChgGrp] = @@ -25316,119 +25178,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change maximum number of students in group" // Çeviri lazim! #endif , - [ActLstGst] = + [ActLstStd] = #if L==1 // ca - "List main data of administrators" // Necessita traducció + "Show class photo or list of students" // Necessita traducció #elif L==2 // de - "List main data of administrators" // Need Übersetzung + "Show class photo or list of students" // Need Übersetzung #elif L==3 // en - "List main data of administrators" + "Show class photo or list of students" #elif L==4 // es - "Listar datos principales de administradores" + "Mostrar foto de clase o lista de estudiantes" #elif L==5 // fr - "List main data of administrators" // Besoin de traduction + "Show class photo or list of students" // Besoin de traduction #elif L==6 // gn - "Listar datos principales de administradores" // Okoteve traducción + "Mostrar foto de clase o lista de estudiantes" // Okoteve traducción #elif L==7 // it - "List main data of administrators" // Bisogno di traduzione + "Show class photo or list of students" // Bisogno di traduzione #elif L==8 // pl - "List main data of administrators" // Potrzebujesz tlumaczenie + "Show class photo or list of students" // Potrzebujesz tlumaczenie #elif L==9 // pt - "List main data of administrators" // Precisa de tradução + "Show class photo or list of students" // Precisa de tradução #elif L==10 // tr - "List main data of administrators" // Çeviri lazim! -#endif - , - [ActPrnGstPho] = -#if L==1 // ca - "Show class photo of guests ready to be printed" // Necessita traducció -#elif L==2 // de - "Show class photo of guests ready to be printed" // Need Übersetzung -#elif L==3 // en - "Show class photo of guests ready to be printed" -#elif L==4 // es - "Mostrar foto de clase de invitados lista para imprimir" -#elif L==5 // fr - "Show class photo of guests ready to be printed" // Besoin de traduction -#elif L==6 // gn - "Mostrar foto de clase de invitados lista para imprimir" // Okoteve traducción -#elif L==7 // it - "Show class photo of guests ready to be printed" // Bisogno di traduzione -#elif L==8 // pl - "Show class photo of guests ready to be printed" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show class photo of guests ready to be printed" // Precisa de tradução -#elif L==10 // tr - "Show class photo of guests ready to be printed" // Çeviri lazim! -#endif - , - [ActPrnStdPho] = -#if L==1 // ca - "Show class photo of students ready to be printed" // Necessita traducció -#elif L==2 // de - "Show class photo of students ready to be printed" // Need Übersetzung -#elif L==3 // en - "Show class photo of students ready to be printed" -#elif L==4 // es - "Mostrar foto de clase de estudiantes lista para imprimir" -#elif L==5 // fr - "Show class photo of students ready to be printed" // Besoin de traduction -#elif L==6 // gn - "Mostrar foto de clase de estudiantes lista para imprimir" // Okoteve traducción -#elif L==7 // it - "Show class photo of students ready to be printed" // Bisogno di traduzione -#elif L==8 // pl - "Show class photo of students ready to be printed" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show class photo of students ready to be printed" // Precisa de tradução -#elif L==10 // tr - "Show class photo of students ready to be printed" // Çeviri lazim! -#endif - , - [ActPrnTchPho] = -#if L==1 // ca - "Show class photo of teachers ready to be printed" // Necessita traducció -#elif L==2 // de - "Show class photo of teachers ready to be printed" // Need Übersetzung -#elif L==3 // en - "Show class photo of teachers ready to be printed" -#elif L==4 // es - "Mostrar foto de clase de profesores lista para imprimir" -#elif L==5 // fr - "Show class photo of teachers ready to be printed" // Besoin de traduction -#elif L==6 // gn - "Mostrar foto de clase de profesores lista para imprimir" // Okoteve traducción -#elif L==7 // it - "Show class photo of teachers ready to be printed" // Bisogno di traduzione -#elif L==8 // pl - "Show class photo of teachers ready to be printed" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show class photo of teachers ready to be printed" // Precisa de tradução -#elif L==10 // tr - "Show class photo of teachers ready to be printed" // Çeviri lazim! -#endif - , - [ActLstGstAll] = -#if L==1 // ca - "List the full data of the guests" // Necessita traducció -#elif L==2 // de - "List the full data of the guests" // Need Übersetzung -#elif L==3 // en - "List the full data of the guests" -#elif L==4 // es - "Listar los datos completos de los invitados" -#elif L==5 // fr - "List the full data of the guests" // Besoin de traduction -#elif L==6 // gn - "Listar los datos completos de los invitados" // Okoteve traducción -#elif L==7 // it - "List the full data of the guests" // Bisogno di traduzione -#elif L==8 // pl - "List the full data of the guests" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List the full data of the guests" // Precisa de tradução -#elif L==10 // tr - "List the full data of the guests" // Çeviri lazim! + "Show class photo or list of students" // Çeviri lazim! #endif , [ActLstStdAll] = @@ -25454,96 +25224,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "List the full data of students" // Çeviri lazim! #endif , - [ActLstTchAll] = + [ActPrnStdPho] = #if L==1 // ca - "List the full data of the teachers" // Necessita traducció + "Show class photo of students ready to be printed" // Necessita traducció #elif L==2 // de - "List the full data of the teachers" // Need Übersetzung + "Show class photo of students ready to be printed" // Need Übersetzung #elif L==3 // en - "List the full data of the teachers" + "Show class photo of students ready to be printed" #elif L==4 // es - "Listar los datos completos de los profesores" + "Mostrar foto de clase de estudiantes lista para imprimir" #elif L==5 // fr - "List the full data of the teachers" // Besoin de traduction + "Show class photo of students ready to be printed" // Besoin de traduction #elif L==6 // gn - "Listar los datos completos de los profesores" // Okoteve traducción + "Mostrar foto de clase de estudiantes lista para imprimir" // Okoteve traducción #elif L==7 // it - "List the full data of the teachers" // Bisogno di traduzione + "Show class photo of students ready to be printed" // Bisogno di traduzione #elif L==8 // pl - "List the full data of the teachers" // Potrzebujesz tlumaczenie + "Show class photo of students ready to be printed" // Potrzebujesz tlumaczenie #elif L==9 // pt - "List the full data of the teachers" // Precisa de tradução + "Show class photo of students ready to be printed" // Precisa de tradução #elif L==10 // tr - "List the full data of the teachers" // Çeviri lazim! -#endif - , - [ActSeeRecOneStd] = -#if L==1 // ca - "See the record of a student" // Necessita traducció -#elif L==2 // de - "See the record of a student" // Need Übersetzung -#elif L==3 // en - "See the record of a student" -#elif L==4 // es - "Ver la ficha de estudiante" -#elif L==5 // fr - "See the record of a student" // Besoin de traduction -#elif L==6 // gn - "Ver la ficha de estudiante" // Okoteve traducción -#elif L==7 // it - "See the record of a student" // Bisogno di traduzione -#elif L==8 // pl - "See the record of a student" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the record of a student" // Precisa de tradução -#elif L==10 // tr - "See the record of a student" // Çeviri lazim! -#endif - , - [ActSeeRecOneTch] = -#if L==1 // ca - "See the record of a teacher" // Necessita traducció -#elif L==2 // de - "See the record of a teacher" // Need Übersetzung -#elif L==3 // en - "See the record of a teacher" -#elif L==4 // es - "Ver la ficha de profesor" -#elif L==5 // fr - "See the record of a teacher" // Besoin de traduction -#elif L==6 // gn - "Ver la ficha de profesor" // Okoteve traducción -#elif L==7 // it - "See the record of a teacher" // Bisogno di traduzione -#elif L==8 // pl - "See the record of a teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the record of a teacher" // Precisa de tradução -#elif L==10 // tr - "See the record of a teacher" // Çeviri lazim! -#endif - , - [ActDoActOnSevGst] = -#if L==1 // ca - "Do an action on several selected guests" // Necessita traducció -#elif L==2 // de - "Do an action on several selected guests" // Need Übersetzung -#elif L==3 // en - "Do an action on several selected guests" -#elif L==4 // es - "Realizar una acción sobre varios invitados seleccionados" -#elif L==5 // fr - "Do an action on several selected guests" // Besoin de traduction -#elif L==6 // gn - "Realizar una acción sobre varios invitados seleccionados" // Okoteve traducción -#elif L==7 // it - "Do an action on several selected guests" // Bisogno di traduzione -#elif L==8 // pl - "Do an action on several selected guests" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Do an action on several selected guests" // Precisa de tradução -#elif L==10 // tr - "Do an action on several selected guests" // Çeviri lazim! + "Show class photo of students ready to be printed" // Çeviri lazim! #endif , [ActDoActOnSevStd] = @@ -25567,52 +25268,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Do an action on several selected students" // Precisa de tradução #elif L==10 // tr "Do an action on several selected students" // Çeviri lazim! -#endif - , - [ActDoActOnSevTch] = -#if L==1 // ca - "Do an action on several selected teachers" // Necessita traducció -#elif L==2 // de - "Do an action on several selected teachers" // Need Übersetzung -#elif L==3 // en - "Do an action on several selected teachers" -#elif L==4 // es - "Realizar una acción sobre varios profesores seleccionados" -#elif L==5 // fr - "Do an action on several selected teachers" // Besoin de traduction -#elif L==6 // gn - "Realizar una acción sobre varios profesores seleccionados" // Okoteve traducción -#elif L==7 // it - "Do an action on several selected teachers" // Bisogno di traduzione -#elif L==8 // pl - "Do an action on several selected teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Do an action on several selected teachers" // Precisa de tradução -#elif L==10 // tr - "Do an action on several selected teachers" // Çeviri lazim! -#endif - , - [ActSeeRecSevGst] = -#if L==1 // ca - "See records of several selected guests" // Necessita traducció -#elif L==2 // de - "See records of several selected guests" // Need Übersetzung -#elif L==3 // en - "See records of several selected guests" -#elif L==4 // es - "Ver fichas de varios invitados seleccionados" -#elif L==5 // fr - "See records of several selected guests" // Besoin de traduction -#elif L==6 // gn - "Ver fichas de varios invitados seleccionados" // Okoteve traducción -#elif L==7 // it - "See records of several selected guests" // Bisogno di traduzione -#elif L==8 // pl - "See records of several selected guests" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See records of several selected guests" // Precisa de tradução -#elif L==10 // tr - "See records of several selected guests" // Çeviri lazim! #endif , [ActSeeRecSevStd] = @@ -25636,52 +25291,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See records of several selected students" // Precisa de tradução #elif L==10 // tr "See records of several selected students" // Çeviri lazim! -#endif - , - [ActSeeRecSevTch] = -#if L==1 // ca - "See records of several selected teachers" // Necessita traducció -#elif L==2 // de - "See records of several selected teachers" // Need Übersetzung -#elif L==3 // en - "See records of several selected teachers" -#elif L==4 // es - "Ver fichas de varios profesores seleccionados" -#elif L==5 // fr - "See records of several selected teachers" // Besoin de traduction -#elif L==6 // gn - "Ver fichas de varios profesores seleccionados" // Okoteve traducción -#elif L==7 // it - "See records of several selected teachers" // Bisogno di traduzione -#elif L==8 // pl - "See records of several selected teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See records of several selected teachers" // Precisa de tradução -#elif L==10 // tr - "See records of several selected teachers" // Çeviri lazim! -#endif - , - [ActPrnRecSevGst] = -#if L==1 // ca - "See records of several selected guests ready to print" // Necessita traducció -#elif L==2 // de - "See records of several selected guests ready to print" // Need Übersetzung -#elif L==3 // en - "See records of several selected guests ready to print" -#elif L==4 // es - "Ver fichas de varios invitados seleccionados lista para imprimir" -#elif L==5 // fr - "See records of several selected guests ready to print" // Besoin de traduction -#elif L==6 // gn - "Ver fichas de varios invitados seleccionados lista para imprimir" // Okoteve traducción -#elif L==7 // it - "See records of several selected guests ready to print" // Bisogno di traduzione -#elif L==8 // pl - "See records of several selected guests ready to print" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See records of several selected guests ready to print" // Precisa de tradução -#elif L==10 // tr - "See records of several selected guests ready to print" // Çeviri lazim! #endif , [ActPrnRecSevStd] = @@ -25707,27 +25316,717 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See records of several selected students ready to print" // Çeviri lazim! #endif , - [ActPrnRecSevTch] = + [ActReqMdfOneStd] = #if L==1 // ca - "See records of several selected teachers ready to print" // Necessita traducció + "Request a student's ID for enrolment/removal" // Necessita traducció #elif L==2 // de - "See records of several selected teachers ready to print" // Need Übersetzung + "Request a student's ID for enrolment/removal" // Need Übersetzung #elif L==3 // en - "See records of several selected teachers ready to print" + "Request a student's ID for enrolment/removal" #elif L==4 // es - "Ver fichas de varios profesores seleccionados lista para imprimir" + "Solicitar el ID de estudiante para inscripción/eliminación" #elif L==5 // fr - "See records of several selected teachers ready to print" // Besoin de traduction + "Request a student's ID for enrolment/removal" // Besoin de traduction #elif L==6 // gn - "Ver fichas de varios profesores seleccionados lista para imprimir" // Okoteve traducción + "Solicitar el ID de estudiante para inscripción/eliminación" // Okoteve traducción #elif L==7 // it - "See records of several selected teachers ready to print" // Bisogno di traduzione + "Request a student's ID for enrolment/removal" // Bisogno di traduzione #elif L==8 // pl - "See records of several selected teachers ready to print" // Potrzebujesz tlumaczenie + "Request a student's ID for enrolment/removal" // Potrzebujesz tlumaczenie #elif L==9 // pt - "See records of several selected teachers ready to print" // Precisa de tradução + "Request a student's ID for enrolment/removal" // Precisa de tradução #elif L==10 // tr - "See records of several selected teachers ready to print" // Çeviri lazim! + "Request a student's ID for enrolment/removal" // Çeviri lazim! +#endif + , + [ActReqMdfStd] = +#if L==1 // ca + "Request enrolment/removal of a student" // Necessita traducció +#elif L==2 // de + "Request enrolment/removal of a student" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removal of a student" +#elif L==4 // es + "Solicitar inscripción/eliminación de estudiante" +#elif L==5 // fr + "Request enrolment/removal of a student" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripción/eliminación de estudiante" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removal of a student" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removal of a student" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removal of a student" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removal of a student" // Çeviri lazim! +#endif + , + [ActReqStdPho] = +#if L==1 // ca + "Edit a student's photo" // Necessita traducció +#elif L==2 // de + "Edit a student's photo" // Need Übersetzung +#elif L==3 // en + "Edit a student's photo" +#elif L==4 // es + "Editar la foto de estudiante" +#elif L==5 // fr + "Edit a student's photo" // Besoin de traduction +#elif L==6 // gn + "Editar la foto de estudiante" // Okoteve traducción +#elif L==7 // it + "Edit a student's photo" // Bisogno di traduzione +#elif L==8 // pl + "Edit a student's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit a student's photo" // Precisa de tradução +#elif L==10 // tr + "Edit a student's photo" // Çeviri lazim! +#endif + , + [ActDetStdPho] = +#if L==1 // ca + "Send student's photo and detect faces on it" // Necessita traducció +#elif L==2 // de + "Send student's photo and detect faces on it" // Need Übersetzung +#elif L==3 // en + "Send student's photo and detect faces on it" +#elif L==4 // es + "Enviar la foto de estudiante y detectar rostros en ella" +#elif L==5 // fr + "Send student's photo and detect faces on it" // Besoin de traduction +#elif L==6 // gn + "Enviar la foto de estudiante y detectar rostros en ella" // Okoteve traducción +#elif L==7 // it + "Send student's photo and detect faces on it" // Bisogno di traduzione +#elif L==8 // pl + "Send student's photo and detect faces on it" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Send student's photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "Send student's photo and detect faces on it" // Çeviri lazim! +#endif + , + [ActChgStdPho] = +#if L==1 // ca + "Update a student's photo" // Necessita traducció +#elif L==2 // de + "Update a student's photo" // Need Übersetzung +#elif L==3 // en + "Update a student's photo" +#elif L==4 // es + "Actualizar la foto de estudiante" +#elif L==5 // fr + "Update a student's photo" // Besoin de traduction +#elif L==6 // gn + "Actualizar la foto de estudiante" // Okoteve traducción +#elif L==7 // it + "Update a student's photo" // Bisogno di traduzione +#elif L==8 // pl + "Update a student's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a student's photo" // Precisa de tradução +#elif L==10 // tr + "Update a student's photo" // Çeviri lazim! +#endif + , + [ActReqRemStdPho] = +#if L==1 // ca + "Request removal of student's photo" // Necessita traducció +#elif L==2 // de + "Request removal of student's photo" // Need Übersetzung +#elif L==3 // en + "Request removal of student's photo" +#elif L==4 // es + "Solicitar eliminación de foto de estudiante" +#elif L==5 // fr + "Request removal of student's photo" // Besoin de traduction +#elif L==6 // gn + "Solicitar eliminación de foto de estudiante" // Okoteve traducción +#elif L==7 // it + "Request removal of student's photo" // Bisogno di traduzione +#elif L==8 // pl + "Request removal of student's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request removal of student's photo" // Precisa de tradução +#elif L==10 // tr + "Request removal of student's photo" // Çeviri lazim! +#endif + , + [ActRemStdPho] = +#if L==1 // ca + "Remove student's photo" // Necessita traducció +#elif L==2 // de + "Remove student's photo" // Need Übersetzung +#elif L==3 // en + "Remove student's photo" +#elif L==4 // es + "Eliminar la foto de estudiante" +#elif L==5 // fr + "Remove student's photo" // Besoin de traduction +#elif L==6 // gn + "Eliminar la foto de estudiante" // Okoteve traducción +#elif L==7 // it + "Remove student's photo" // Bisogno di traduzione +#elif L==8 // pl + "Remove student's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove student's photo" // Precisa de tradução +#elif L==10 // tr + "Remove student's photo" // Çeviri lazim! +#endif + , + [ActCreStd] = +#if L==1 // ca + "Create new student" // Necessita traducció +#elif L==2 // de + "Create new student" // Need Übersetzung +#elif L==3 // en + "Create new student" +#elif L==4 // es + "Crear nuevo estudiante" +#elif L==5 // fr + "Create new student" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo estudiante" // Okoteve traducción +#elif L==7 // it + "Create new student" // Bisogno di traduzione +#elif L==8 // pl + "Create new student" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new student" // Precisa de tradução +#elif L==10 // tr + "Create new student" // Çeviri lazim! +#endif + , + [ActUpdStd] = +#if L==1 // ca + "Update a student's data and groups" // Necessita traducció +#elif L==2 // de + "Update a student's data and groups" // Need Übersetzung +#elif L==3 // en + "Update a student's data and groups" +#elif L==4 // es + "Actualizar los datos y grupos de estudiante" +#elif L==5 // fr + "Update a student's data and groups" // Besoin de traduction +#elif L==6 // gn + "Actualizar los datos y grupos de estudiante" // Okoteve traducción +#elif L==7 // it + "Update a student's data and groups" // Bisogno di traduzione +#elif L==8 // pl + "Update a student's data and groups" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a student's data and groups" // Precisa de tradução +#elif L==10 // tr + "Update a student's data and groups" // Çeviri lazim! +#endif + , + [ActCnfID_Std] = +#if L==1 // ca + "Confirm a student's ID" // Necessita traducció +#elif L==2 // de + "Confirm a student's ID" // Need Übersetzung +#elif L==3 // en + "Confirm a student's ID" +#elif L==4 // es + "Confirmar el ID de estudiante" +#elif L==5 // fr + "Confirm a student's ID" // Besoin de traduction +#elif L==6 // gn + "Confirmar el ID de estudiante" // Okoteve traducción +#elif L==7 // it + "Confirm a student's ID" // Bisogno di traduzione +#elif L==8 // pl + "Confirm a student's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Confirm a student's ID" // Precisa de tradução +#elif L==10 // tr + "Confirm a student's ID" // Çeviri lazim! +#endif + , + [ActFrmAccStd] = +#if L==1 // ca + "Forms to the change a student's account" // Necessita traducció +#elif L==2 // de + "Forms to the change a student's account" // Need Übersetzung +#elif L==3 // en + "Forms to the change a student's account" +#elif L==4 // es + "Formularios para cambiar la cuenta de estudiante" +#elif L==5 // fr + "Forms to the change a student's account" // Besoin de traduction +#elif L==6 // gn + "Formularios para cambiar la cuenta de estudiante" // Okoteve traducción +#elif L==7 // it + "Forms to the change a student's account" // Bisogno di traduzione +#elif L==8 // pl + "Forms to the change a student's account" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Forms to the change a student's account" // Precisa de tradução +#elif L==10 // tr + "Forms to the change a student's account" // Çeviri lazim! +#endif + , + [ActRemNicStd] = +#if L==1 // ca + "Remove student's nickname" // Necessita traducció +#elif L==2 // de + "Remove student's nickname" // Need Übersetzung +#elif L==3 // en + "Remove student's nickname" +#elif L==4 // es + "Eliminar apodo de estudiante" +#elif L==5 // fr + "Remove student's nickname" // Besoin de traduction +#elif L==6 // gn + "Eliminar apodo de estudiante" // Okoteve traducción +#elif L==7 // it + "Remove student's nickname" // Bisogno di traduzione +#elif L==8 // pl + "Remove student's nickname" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove student's nickname" // Precisa de tradução +#elif L==10 // tr + "Remove student's nickname" // Çeviri lazim! +#endif + , + [ActChgNicStd] = +#if L==1 // ca + "Change student's nickname" // Necessita traducció +#elif L==2 // de + "Change student's nickname" // Need Übersetzung +#elif L==3 // en + "Change student's nickname" +#elif L==4 // es + "Cambiar apodo de estudiante" +#elif L==5 // fr + "Change student's nickname" // Besoin de traduction +#elif L==6 // gn + "Cambiar apodo de estudiante" // Okoteve traducción +#elif L==7 // it + "Change student's nickname" // Bisogno di traduzione +#elif L==8 // pl + "Change student's nickname" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change student's nickname" // Precisa de tradução +#elif L==10 // tr + "Change student's nickname" // Çeviri lazim! +#endif + , + [ActRemID_Std] = +#if L==1 // ca + "Remove student's ID" // Necessita traducció +#elif L==2 // de + "Remove student's ID" // Need Übersetzung +#elif L==3 // en + "Remove student's ID" +#elif L==4 // es + "Eliminar ID de estudiante" +#elif L==5 // fr + "Remove student's ID" // Besoin de traduction +#elif L==6 // gn + "Eliminar ID de estudiante" // Okoteve traducción +#elif L==7 // it + "Remove student's ID" // Bisogno di traduzione +#elif L==8 // pl + "Remove student's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove student's ID" // Precisa de tradução +#elif L==10 // tr + "Remove student's ID" // Çeviri lazim! +#endif + , + [ActChgID_Std] = +#if L==1 // ca + "Create new student's ID" // Necessita traducció +#elif L==2 // de + "Create new student's ID" // Need Übersetzung +#elif L==3 // en + "Create new student's ID" +#elif L==4 // es + "Crear nuevo ID de estudiante" +#elif L==5 // fr + "Create new student's ID" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo ID de estudiante" // Okoteve traducción +#elif L==7 // it + "Create new student's ID" // Bisogno di traduzione +#elif L==8 // pl + "Create new student's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new student's ID" // Precisa de tradução +#elif L==10 // tr + "Create new student's ID" // Çeviri lazim! +#endif + , + [ActChgPwdStd] = +#if L==1 // ca + "Change student's password" // Necessita traducció +#elif L==2 // de + "Change student's password" // Need Übersetzung +#elif L==3 // en + "Change student's password" +#elif L==4 // es + "Cambiar contraseña de estudiante" +#elif L==5 // fr + "Change student's password" // Besoin de traduction +#elif L==6 // gn + "Cambiar contraseña de estudiante" // Okoteve traducción +#elif L==7 // it + "Change student's password" // Bisogno di traduzione +#elif L==8 // pl + "Change student's password" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change student's password" // Precisa de tradução +#elif L==10 // tr + "Change student's password" // Çeviri lazim! +#endif + , + [ActRemMaiStd] = +#if L==1 // ca + "Remove student's email" // Necessita traducció +#elif L==2 // de + "Remove student's email" // Need Übersetzung +#elif L==3 // en + "Remove student's email" +#elif L==4 // es + "Eliminar correo electrónico de estudiante" +#elif L==5 // fr + "Remove student's email" // Besoin de traduction +#elif L==6 // gn + "Eliminar correo electrónico de estudiante" // Okoteve traducción +#elif L==7 // it + "Remove student's email" // Bisogno di traduzione +#elif L==8 // pl + "Remove student's email" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove student's email" // Precisa de tradução +#elif L==10 // tr + "Remove student's email" // Çeviri lazim! +#endif + , + [ActChgMaiStd] = +#if L==1 // ca + "Create new student's email" // Necessita traducció +#elif L==2 // de + "Create new student's email" // Need Übersetzung +#elif L==3 // en + "Create new student's email" +#elif L==4 // es + "Crear nuevo correo electrónico de estudiante" +#elif L==5 // fr + "Create new student's email" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo correo electrónico de estudiante" // Okoteve traducción +#elif L==7 // it + "Create new student's email" // Bisogno di traduzione +#elif L==8 // pl + "Create new student's email" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new student's email" // Precisa de tradução +#elif L==10 // tr + "Create new student's email" // Çeviri lazim! +#endif + , + [ActRemStdCrs] = +#if L==1 // ca + "Remove student from a course" // Necessita traducció +#elif L==2 // de + "Remove student from a course" // Need Übersetzung +#elif L==3 // en + "Remove student from a course" +#elif L==4 // es + "Eliminar estudiante de asignatura" +#elif L==5 // fr + "Remove student from a course" // Besoin de traduction +#elif L==6 // gn + "Eliminar estudiante de asignatura" // Okoteve traducción +#elif L==7 // it + "Remove student from a course" // Bisogno di traduzione +#elif L==8 // pl + "Remove student from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove student from a course" // Precisa de tradução +#elif L==10 // tr + "Remove student from a course" // Çeviri lazim! +#endif + , + [ActReqRemAllStdCrs] = +#if L==1 // ca + "Request removal of all students from a course" // Necessita traducció +#elif L==2 // de + "Request removal of all students from a course" // Need Übersetzung +#elif L==3 // en + "Request removal of all students from a course" +#elif L==4 // es + "Solicitar eliminación de todos los estudiantes de asignatura" +#elif L==5 // fr + "Request removal of all students from a course" // Besoin de traduction +#elif L==6 // gn + "Solicitar eliminación de todos los estudiantes de asignatura" // Okoteve traducción +#elif L==7 // it + "Request removal of all students from a course" // Bisogno di traduzione +#elif L==8 // pl + "Request removal of all students from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request removal of all students from a course" // Precisa de tradução +#elif L==10 // tr + "Request removal of all students from a course" // Çeviri lazim! +#endif + , + [ActRemAllStdCrs] = +#if L==1 // ca + "Remove all students from a course" // Necessita traducció +#elif L==2 // de + "Remove all students from a course" // Need Übersetzung +#elif L==3 // en + "Remove all students from a course" +#elif L==4 // es + "Eliminar todos los estudiantes de asignatura" +#elif L==5 // fr + "Remove all students from a course" // Besoin de traduction +#elif L==6 // gn + "Eliminar todos los estudiantes de asignatura" // Okoteve traducción +#elif L==7 // it + "Remove all students from a course" // Bisogno di traduzione +#elif L==8 // pl + "Remove all students from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove all students from a course" // Precisa de tradução +#elif L==10 // tr + "Remove all students from a course" // Çeviri lazim! +#endif + , + [ActReqAccEnrStd] = +#if L==1 // ca + "See whether to accept or reject my enrolment as student" // Necessita traducció +#elif L==2 // de + "See whether to accept or reject my enrolment as student" // Need Übersetzung +#elif L==3 // en + "See whether to accept or reject my enrolment as student" +#elif L==4 // es + "Ver si aceptar o rechazar mi inscripción como estudiante" +#elif L==5 // fr + "See whether to accept or reject my enrolment as student" // Besoin de traduction +#elif L==6 // gn + "Ver si aceptar o rechazar mi inscripción como estudiante" // Okoteve traducción +#elif L==7 // it + "See whether to accept or reject my enrolment as student" // Bisogno di traduzione +#elif L==8 // pl + "See whether to accept or reject my enrolment as student" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See whether to accept or reject my enrolment as student" // Precisa de tradução +#elif L==10 // tr + "See whether to accept or reject my enrolment as student" // Çeviri lazim! +#endif + , + [ActAccEnrStd] = +#if L==1 // ca + "Accept my enrolment as student" // Necessita traducció +#elif L==2 // de + "Accept my enrolment as student" // Need Übersetzung +#elif L==3 // en + "Accept my enrolment as student" +#elif L==4 // es + "Aceptar mi inscripción como estudiante" +#elif L==5 // fr + "Accept my enrolment as student" // Besoin de traduction +#elif L==6 // gn + "Aceptar mi inscripción como estudiante" // Okoteve traducción +#elif L==7 // it + "Accept my enrolment as student" // Bisogno di traduzione +#elif L==8 // pl + "Accept my enrolment as student" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Accept my enrolment as student" // Precisa de tradução +#elif L==10 // tr + "Accept my enrolment as student" // Çeviri lazim! +#endif + , + [ActRemMe_Std] = +#if L==1 // ca + "Reject my enrolment as student" // Necessita traducció +#elif L==2 // de + "Reject my enrolment as student" // Need Übersetzung +#elif L==3 // en + "Reject my enrolment as student" +#elif L==4 // es + "Rechazar mi inscripción como estudiante" +#elif L==5 // fr + "Reject my enrolment as student" // Besoin de traduction +#elif L==6 // gn + "Rechazar mi inscripción como estudiante" // Okoteve traducción +#elif L==7 // it + "Reject my enrolment as student" // Bisogno di traduzione +#elif L==8 // pl + "Reject my enrolment as student" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Reject my enrolment as student" // Precisa de tradução +#elif L==10 // tr + "Reject my enrolment as student" // Çeviri lazim! +#endif + , + [ActReqFolSevStd] = +#if L==1 // ca + "Request follow several students" // Necessita traducció +#elif L==2 // de + "Request follow several students" // Need Übersetzung +#elif L==3 // en + "Request follow several students" +#elif L==4 // es + "Solicitar seguir a varios estudiantes" +#elif L==5 // fr + "Request follow several students" // Besoin de traduction +#elif L==6 // gn + "Solicitar seguir a varios estudiantes" // Okoteve traducción +#elif L==7 // it + "Request follow several students" // Bisogno di traduzione +#elif L==8 // pl + "Request follow several students" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request follow several students" // Precisa de tradução +#elif L==10 // tr + "Request follow several students" // Çeviri lazim! +#endif + , + [ActReqUnfSevStd] = +#if L==1 // ca + "Request unfollow several students" // Necessita traducció +#elif L==2 // de + "Request unfollow several students" // Need Übersetzung +#elif L==3 // en + "Request unfollow several students" +#elif L==4 // es + "Solicitar dejar de seguir a varios estudiantes" +#elif L==5 // fr + "Request unfollow several students" // Besoin de traduction +#elif L==6 // gn + "Solicitar dejar de seguir a varios estudiantes" // Okoteve traducción +#elif L==7 // it + "Request unfollow several students" // Bisogno di traduzione +#elif L==8 // pl + "Request unfollow several students" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request unfollow several students" // Precisa de tradução +#elif L==10 // tr + "Request unfollow several students" // Çeviri lazim! +#endif + , + [ActFolSevStd] = +#if L==1 // ca + "Follow several students" // Necessita traducció +#elif L==2 // de + "Follow several students" // Need Übersetzung +#elif L==3 // en + "Follow several students" +#elif L==4 // es + "Seguir a varios estudiantes" +#elif L==5 // fr + "Follow several students" // Besoin de traduction +#elif L==6 // gn + "Seguir a varios estudiantes" // Okoteve traducción +#elif L==7 // it + "Follow several students" // Bisogno di traduzione +#elif L==8 // pl + "Follow several students" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Follow several students" // Precisa de tradução +#elif L==10 // tr + "Follow several students" // Çeviri lazim! +#endif + , + [ActUnfSevStd] = +#if L==1 // ca + "Unfollow several students" // Necessita traducció +#elif L==2 // de + "Unfollow several students" // Need Übersetzung +#elif L==3 // en + "Unfollow several students" +#elif L==4 // es + "Dejar de seguir a varios estudiantes" +#elif L==5 // fr + "Unfollow several students" // Besoin de traduction +#elif L==6 // gn + "Dejar de seguir a varios estudiantes" // Okoteve traducción +#elif L==7 // it + "Unfollow several students" // Bisogno di traduzione +#elif L==8 // pl + "Unfollow several students" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Unfollow several students" // Precisa de tradução +#elif L==10 // tr + "Unfollow several students" // Çeviri lazim! +#endif + , + [ActSeeRecOneStd] = +#if L==1 // ca + "See the record of a student" // Necessita traducció +#elif L==2 // de + "See the record of a student" // Need Übersetzung +#elif L==3 // en + "See the record of a student" +#elif L==4 // es + "Ver la ficha de estudiante" +#elif L==5 // fr + "See the record of a student" // Besoin de traduction +#elif L==6 // gn + "Ver la ficha de estudiante" // Okoteve traducción +#elif L==7 // it + "See the record of a student" // Bisogno di traduzione +#elif L==8 // pl + "See the record of a student" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the record of a student" // Precisa de tradução +#elif L==10 // tr + "See the record of a student" // Çeviri lazim! +#endif + , + [ActReqEnrSevStd] = +#if L==1 // ca + "Request enrolment/removing of several students to/from a course" // Necessita traducció +#elif L==2 // de + "Request enrolment/removing of several students to/from a course" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removing of several students to/from a course" +#elif L==4 // es + "Solicitar inscripción/eliminación de varios estudiantes a/de un asignatura" +#elif L==5 // fr + "Request enrolment/removing of several students to/from a course" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripción/eliminación de varios estudiantes a/de un asignatura" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removing of several students to/from a course" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removing of several students to/from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removing of several students to/from a course" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removing of several students to/from a course" // Çeviri lazim! +#endif + , + [ActRcvFrmEnrSevStd] = +#if L==1 // ca + "Register/remove several students in/from a course" // Necessita traducció +#elif L==2 // de + "Register/remove several students in/from a course" // Need Übersetzung +#elif L==3 // en + "Register/remove several students in/from a course" +#elif L==4 // es + "Inscribir/eliminar varios estudiantes en/de asignatura" +#elif L==5 // fr + "Register/remove several students in/from a course" // Besoin de traduction +#elif L==6 // gn + "Inscribir/eliminar varios estudiantes en/de asignatura" // Okoteve traducción +#elif L==7 // it + "Register/remove several students in/from a course" // Bisogno di traduzione +#elif L==8 // pl + "Register/remove several students in/from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Register/remove several students in/from a course" // Precisa de tradução +#elif L==10 // tr + "Register/remove several students in/from a course" // Çeviri lazim! #endif , [ActRcvRecOthUsr] = @@ -25935,6 +26234,1018 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Update fields of my record in a course" // Precisa de tradução #elif L==10 // tr "Update fields of my record in a course" // Çeviri lazim! +#endif + , + [ActLstTch] = +#if L==1 // ca + "Show class photo or list of teachers" // Necessita traducció +#elif L==2 // de + "Show class photo or list of teachers" // Need Übersetzung +#elif L==3 // en + "Show class photo or list of teachers" +#elif L==4 // es + "Mostrar foto de clase o lista de profesores" +#elif L==5 // fr + "Show class photo or list of teachers" // Besoin de traduction +#elif L==6 // gn + "Mostrar foto de clase o lista de profesores" // Okoteve traducción +#elif L==7 // it + "Show class photo or list of teachers" // Bisogno di traduzione +#elif L==8 // pl + "Show class photo or list of teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Show class photo or list of teachers" // Precisa de tradução +#elif L==10 // tr + "Show class photo or list of teachers" // Çeviri lazim! +#endif + , + [ActLstTchAll] = +#if L==1 // ca + "List the full data of the teachers" // Necessita traducció +#elif L==2 // de + "List the full data of the teachers" // Need Übersetzung +#elif L==3 // en + "List the full data of the teachers" +#elif L==4 // es + "Listar los datos completos de los profesores" +#elif L==5 // fr + "List the full data of the teachers" // Besoin de traduction +#elif L==6 // gn + "Listar los datos completos de los profesores" // Okoteve traducción +#elif L==7 // it + "List the full data of the teachers" // Bisogno di traduzione +#elif L==8 // pl + "List the full data of the teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List the full data of the teachers" // Precisa de tradução +#elif L==10 // tr + "List the full data of the teachers" // Çeviri lazim! +#endif + , + [ActPrnTchPho] = +#if L==1 // ca + "Show class photo of teachers ready to be printed" // Necessita traducció +#elif L==2 // de + "Show class photo of teachers ready to be printed" // Need Übersetzung +#elif L==3 // en + "Show class photo of teachers ready to be printed" +#elif L==4 // es + "Mostrar foto de clase de profesores lista para imprimir" +#elif L==5 // fr + "Show class photo of teachers ready to be printed" // Besoin de traduction +#elif L==6 // gn + "Mostrar foto de clase de profesores lista para imprimir" // Okoteve traducción +#elif L==7 // it + "Show class photo of teachers ready to be printed" // Bisogno di traduzione +#elif L==8 // pl + "Show class photo of teachers ready to be printed" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Show class photo of teachers ready to be printed" // Precisa de tradução +#elif L==10 // tr + "Show class photo of teachers ready to be printed" // Çeviri lazim! +#endif + , + [ActDoActOnSevTch] = +#if L==1 // ca + "Do an action on several selected teachers" // Necessita traducció +#elif L==2 // de + "Do an action on several selected teachers" // Need Übersetzung +#elif L==3 // en + "Do an action on several selected teachers" +#elif L==4 // es + "Realizar una acción sobre varios profesores seleccionados" +#elif L==5 // fr + "Do an action on several selected teachers" // Besoin de traduction +#elif L==6 // gn + "Realizar una acción sobre varios profesores seleccionados" // Okoteve traducción +#elif L==7 // it + "Do an action on several selected teachers" // Bisogno di traduzione +#elif L==8 // pl + "Do an action on several selected teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Do an action on several selected teachers" // Precisa de tradução +#elif L==10 // tr + "Do an action on several selected teachers" // Çeviri lazim! +#endif + , + [ActSeeRecSevTch] = +#if L==1 // ca + "See records of several selected teachers" // Necessita traducció +#elif L==2 // de + "See records of several selected teachers" // Need Übersetzung +#elif L==3 // en + "See records of several selected teachers" +#elif L==4 // es + "Ver fichas de varios profesores seleccionados" +#elif L==5 // fr + "See records of several selected teachers" // Besoin de traduction +#elif L==6 // gn + "Ver fichas de varios profesores seleccionados" // Okoteve traducción +#elif L==7 // it + "See records of several selected teachers" // Bisogno di traduzione +#elif L==8 // pl + "See records of several selected teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See records of several selected teachers" // Precisa de tradução +#elif L==10 // tr + "See records of several selected teachers" // Çeviri lazim! +#endif + , + [ActPrnRecSevTch] = +#if L==1 // ca + "See records of several selected teachers ready to print" // Necessita traducció +#elif L==2 // de + "See records of several selected teachers ready to print" // Need Übersetzung +#elif L==3 // en + "See records of several selected teachers ready to print" +#elif L==4 // es + "Ver fichas de varios profesores seleccionados lista para imprimir" +#elif L==5 // fr + "See records of several selected teachers ready to print" // Besoin de traduction +#elif L==6 // gn + "Ver fichas de varios profesores seleccionados lista para imprimir" // Okoteve traducción +#elif L==7 // it + "See records of several selected teachers ready to print" // Bisogno di traduzione +#elif L==8 // pl + "See records of several selected teachers ready to print" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See records of several selected teachers ready to print" // Precisa de tradução +#elif L==10 // tr + "See records of several selected teachers ready to print" // Çeviri lazim! +#endif + , + [ActReqMdfOneTch] = +#if L==1 // ca + "Request a teacher's ID for enrolment/removal" // Necessita traducció +#elif L==2 // de + "Request a teacher's ID for enrolment/removal" // Need Übersetzung +#elif L==3 // en + "Request a teacher's ID for enrolment/removal" +#elif L==4 // es + "Solicitar el ID de profesor para inscripción/eliminación" +#elif L==5 // fr + "Request a teacher's ID for enrolment/removal" // Besoin de traduction +#elif L==6 // gn + "Solicitar el ID de profesor para inscripción/eliminación" // Okoteve traducción +#elif L==7 // it + "Request a teacher's ID for enrolment/removal" // Bisogno di traduzione +#elif L==8 // pl + "Request a teacher's ID for enrolment/removal" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request a teacher's ID for enrolment/removal" // Precisa de tradução +#elif L==10 // tr + "Request a teacher's ID for enrolment/removal" // Çeviri lazim! +#endif + , + [ActReqMdfNET] = +#if L==1 // ca + "Request enrolment/removal of a non-editing teacher" // Necessita traducció +#elif L==2 // de + "Request enrolment/removal of a non-editing teacher" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removal of a non-editing teacher" +#elif L==4 // es + "Solicitar inscripción/eliminación de profesor no editor" +#elif L==5 // fr + "Request enrolment/removal of a non-editing teacher" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripción/eliminación de profesor no editor" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removal of a non-editing teacher" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removal of a non-editing teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removal of a non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removal of a non-editing teacher" // Çeviri lazim! +#endif + , + [ActReqMdfTch] = +#if L==1 // ca + "Request enrolment/removal of a teacher" // Necessita traducció +#elif L==2 // de + "Request enrolment/removal of a teacher" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removal of a teacher" +#elif L==4 // es + "Solicitar inscripción/eliminación de profesor" +#elif L==5 // fr + "Request enrolment/removal of a teacher" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripción/eliminación de profesor" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removal of a teacher" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removal of a teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removal of a teacher" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removal of a teacher" // Çeviri lazim! +#endif + , + [ActReqTchPho] = +#if L==1 // ca + "Edit a teacher's photo" // Necessita traducció +#elif L==2 // de + "Edit a teacher's photo" // Need Übersetzung +#elif L==3 // en + "Edit a teacher's photo" +#elif L==4 // es + "Editar la foto de profesor" +#elif L==5 // fr + "Edit a teacher's photo" // Besoin de traduction +#elif L==6 // gn + "Editar la foto de profesor" // Okoteve traducción +#elif L==7 // it + "Edit a teacher's photo" // Bisogno di traduzione +#elif L==8 // pl + "Edit a teacher's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit a teacher's photo" // Precisa de tradução +#elif L==10 // tr + "Edit a teacher's photo" // Çeviri lazim! +#endif + , + [ActDetTchPho] = +#if L==1 // ca + "Send teacher's photo and detect faces on it" // Necessita traducció +#elif L==2 // de + "Send teacher's photo and detect faces on it" // Need Übersetzung +#elif L==3 // en + "Send teacher's photo and detect faces on it" +#elif L==4 // es + "Enviar la foto de profesor y detectar rostros en ella" +#elif L==5 // fr + "Send teacher's photo and detect faces on it" // Besoin de traduction +#elif L==6 // gn + "Enviar la foto de profesor y detectar rostros en ella" // Okoteve traducción +#elif L==7 // it + "Send teacher's photo and detect faces on it" // Bisogno di traduzione +#elif L==8 // pl + "Send teacher's photo and detect faces on it" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Send teacher's photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "Send teacher's photo and detect faces on it" // Çeviri lazim! +#endif + , + [ActChgTchPho] = +#if L==1 // ca + "Update a teacher's photo" // Necessita traducció +#elif L==2 // de + "Update a teacher's photo" // Need Übersetzung +#elif L==3 // en + "Update a teacher's photo" +#elif L==4 // es + "Actualizar la foto de profesor" +#elif L==5 // fr + "Update a teacher's photo" // Besoin de traduction +#elif L==6 // gn + "Actualizar la foto de profesor" // Okoteve traducción +#elif L==7 // it + "Update a teacher's photo" // Bisogno di traduzione +#elif L==8 // pl + "Update a teacher's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a teacher's photo" // Precisa de tradução +#elif L==10 // tr + "Update a teacher's photo" // Çeviri lazim! +#endif + , + [ActReqRemTchPho] = +#if L==1 // ca + "Request removal of teacher's photo" // Necessita traducció +#elif L==2 // de + "Request removal of teacher's photo" // Need Übersetzung +#elif L==3 // en + "Request removal of teacher's photo" +#elif L==4 // es + "Solicitar eliminación de foto de profesor" +#elif L==5 // fr + "Request removal of teacher's photo" // Besoin de traduction +#elif L==6 // gn + "Solicitar eliminación de foto de profesor" // Okoteve traducción +#elif L==7 // it + "Request removal of teacher's photo" // Bisogno di traduzione +#elif L==8 // pl + "Request removal of teacher's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request removal of teacher's photo" // Precisa de tradução +#elif L==10 // tr + "Request removal of teacher's photo" // Çeviri lazim! +#endif + , + [ActRemTchPho] = +#if L==1 // ca + "Remove teacher's photo" // Necessita traducció +#elif L==2 // de + "Remove teacher's photo" // Need Übersetzung +#elif L==3 // en + "Remove teacher's photo" +#elif L==4 // es + "Eliminar la foto de profesor" +#elif L==5 // fr + "Remove teacher's photo" // Besoin de traduction +#elif L==6 // gn + "Eliminar la foto de profesor" // Okoteve traducción +#elif L==7 // it + "Remove teacher's photo" // Bisogno di traduzione +#elif L==8 // pl + "Remove teacher's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove teacher's photo" // Precisa de tradução +#elif L==10 // tr + "Remove teacher's photo" // Çeviri lazim! +#endif + , + [ActCreNET] = +#if L==1 // ca + "Create new non-editing teacher" // Necessita traducció +#elif L==2 // de + "Create new non-editing teacher" // Need Übersetzung +#elif L==3 // en + "Create new non-editing teacher" +#elif L==4 // es + "Crear nuevo profesor no editor" +#elif L==5 // fr + "Create new non-editing teacher" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo profesor no editor" // Okoteve traducción +#elif L==7 // it + "Create new non-editing teacher" // Bisogno di traduzione +#elif L==8 // pl + "Create new non-editing teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "Create new non-editing teacher" // Çeviri lazim! +#endif + , + [ActCreTch] = +#if L==1 // ca + "Create new teacher" // Necessita traducció +#elif L==2 // de + "Create new teacher" // Need Übersetzung +#elif L==3 // en + "Create new teacher" +#elif L==4 // es + "Crear nuevo profesor" +#elif L==5 // fr + "Create new teacher" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo profesor" // Okoteve traducción +#elif L==7 // it + "Create new teacher" // Bisogno di traduzione +#elif L==8 // pl + "Create new teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new teacher" // Precisa de tradução +#elif L==10 // tr + "Create new teacher" // Çeviri lazim! +#endif + , + [ActUpdNET] = +#if L==1 // ca + "Update a non-editing teacher's data and groups" // Necessita traducció +#elif L==2 // de + "Update a non-editing teacher's data and groups" // Need Übersetzung +#elif L==3 // en + "Update a non-editing teacher's data and groups" +#elif L==4 // es + "Actualizar los datos y grupos de profesor no editor" +#elif L==5 // fr + "Update a non-editing teacher's data and groups" // Besoin de traduction +#elif L==6 // gn + "Actualizar los datos y grupos de profesor no editor" // Okoteve traducción +#elif L==7 // it + "Update a non-editing teacher's data and groups" // Bisogno di traduzione +#elif L==8 // pl + "Update a non-editing teacher's data and groups" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a non-editing teacher's data and groups" // Precisa de tradução +#elif L==10 // tr + "Update a non-editing teacher's data and groups" // Çeviri lazim! +#endif + , + [ActUpdTch] = +#if L==1 // ca + "Update a teacher's data and groups" // Necessita traducció +#elif L==2 // de + "Update a teacher's data and groups" // Need Übersetzung +#elif L==3 // en + "Update a teacher's data and groups" +#elif L==4 // es + "Actualizar los datos y grupos de profesor" +#elif L==5 // fr + "Update a teacher's data and groups" // Besoin de traduction +#elif L==6 // gn + "Actualizar los datos y grupos de profesor" // Okoteve traducción +#elif L==7 // it + "Update a teacher's data and groups" // Bisogno di traduzione +#elif L==8 // pl + "Update a teacher's data and groups" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a teacher's data and groups" // Precisa de tradução +#elif L==10 // tr + "Update a teacher's data and groups" // Çeviri lazim! +#endif + , + [ActCnfID_Tch] = +#if L==1 // ca + "Confirm a teacher's ID" // Necessita traducció +#elif L==2 // de + "Confirm a teacher's ID" // Need Übersetzung +#elif L==3 // en + "Confirm a teacher's ID" +#elif L==4 // es + "Confirmar el ID de profesor" +#elif L==5 // fr + "Confirm a teacher's ID" // Besoin de traduction +#elif L==6 // gn + "Confirmar el ID de profesor" // Okoteve traducción +#elif L==7 // it + "Confirm a teacher's ID" // Bisogno di traduzione +#elif L==8 // pl + "Confirm a teacher's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Confirm a teacher's ID" // Precisa de tradução +#elif L==10 // tr + "Confirm a teacher's ID" // Çeviri lazim! +#endif + , + [ActFrmAccTch] = +#if L==1 // ca + "Forms to the change a teacher's account" // Necessita traducció +#elif L==2 // de + "Forms to the change a teacher's account" // Need Übersetzung +#elif L==3 // en + "Forms to the change a teacher's account" +#elif L==4 // es + "Formularios para cambiar la cuenta de profesor" +#elif L==5 // fr + "Forms to the change a teacher's account" // Besoin de traduction +#elif L==6 // gn + "Formularios para cambiar la cuenta de profesor" // Okoteve traducción +#elif L==7 // it + "Forms to the change a teacher's account" // Bisogno di traduzione +#elif L==8 // pl + "Forms to the change a teacher's account" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Forms to the change a teacher's account" // Precisa de tradução +#elif L==10 // tr + "Forms to the change a teacher's account" // Çeviri lazim! +#endif + , + [ActRemNicTch] = +#if L==1 // ca + "Remove teacher's nickname" // Necessita traducció +#elif L==2 // de + "Remove teacher's nickname" // Need Übersetzung +#elif L==3 // en + "Remove teacher's nickname" +#elif L==4 // es + "Eliminar apodo de profesor" +#elif L==5 // fr + "Remove teacher's nickname" // Besoin de traduction +#elif L==6 // gn + "Eliminar apodo de profesor" // Okoteve traducción +#elif L==7 // it + "Remove teacher's nickname" // Bisogno di traduzione +#elif L==8 // pl + "Remove teacher's nickname" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove teacher's nickname" // Precisa de tradução +#elif L==10 // tr + "Remove teacher's nickname" // Çeviri lazim! +#endif + , + [ActChgNicTch] = +#if L==1 // ca + "Change teacher's nickname" // Necessita traducció +#elif L==2 // de + "Change teacher's nickname" // Need Übersetzung +#elif L==3 // en + "Change teacher's nickname" +#elif L==4 // es + "Cambiar apodo de profesor" +#elif L==5 // fr + "Change teacher's nickname" // Besoin de traduction +#elif L==6 // gn + "Cambiar apodo de profesor" // Okoteve traducción +#elif L==7 // it + "Change teacher's nickname" // Bisogno di traduzione +#elif L==8 // pl + "Change teacher's nickname" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change teacher's nickname" // Precisa de tradução +#elif L==10 // tr + "Change teacher's nickname" // Çeviri lazim! +#endif + , + [ActRemID_Tch] = +#if L==1 // ca + "Remove teacher's ID" // Necessita traducció +#elif L==2 // de + "Remove teacher's ID" // Need Übersetzung +#elif L==3 // en + "Remove teacher's ID" +#elif L==4 // es + "Eliminar ID de profesor" +#elif L==5 // fr + "Remove teacher's ID" // Besoin de traduction +#elif L==6 // gn + "Eliminar ID de profesor" // Okoteve traducción +#elif L==7 // it + "Remove teacher's ID" // Bisogno di traduzione +#elif L==8 // pl + "Remove teacher's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove teacher's ID" // Precisa de tradução +#elif L==10 // tr + "Remove teacher's ID" // Çeviri lazim! +#endif + , + [ActChgID_Tch] = +#if L==1 // ca + "Create new teacher's ID" // Necessita traducció +#elif L==2 // de + "Create new teacher's ID" // Need Übersetzung +#elif L==3 // en + "Create new teacher's ID" +#elif L==4 // es + "Crear nuevo ID de profesor" +#elif L==5 // fr + "Create new teacher's ID" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo ID de profesor" // Okoteve traducción +#elif L==7 // it + "Create new teacher's ID" // Bisogno di traduzione +#elif L==8 // pl + "Create new teacher's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new teacher's ID" // Precisa de tradução +#elif L==10 // tr + "Create new teacher's ID" // Çeviri lazim! +#endif + , + [ActChgPwdTch] = +#if L==1 // ca + "Change teacher's password" // Necessita traducció +#elif L==2 // de + "Change teacher's password" // Need Übersetzung +#elif L==3 // en + "Change teacher's password" +#elif L==4 // es + "Cambiar contraseña de profesor" +#elif L==5 // fr + "Change teacher's password" // Besoin de traduction +#elif L==6 // gn + "Cambiar contraseña de profesor" // Okoteve traducción +#elif L==7 // it + "Change teacher's password" // Bisogno di traduzione +#elif L==8 // pl + "Change teacher's password" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change teacher's password" // Precisa de tradução +#elif L==10 // tr + "Change teacher's password" // Çeviri lazim! +#endif + , + [ActRemMaiTch] = +#if L==1 // ca + "Remove teacher's email" // Necessita traducció +#elif L==2 // de + "Remove teacher's email" // Need Übersetzung +#elif L==3 // en + "Remove teacher's email" +#elif L==4 // es + "Eliminar correo electrónico de profesor" +#elif L==5 // fr + "Remove teacher's email" // Besoin de traduction +#elif L==6 // gn + "Eliminar correo electrónico de profesor" // Okoteve traducción +#elif L==7 // it + "Remove teacher's email" // Bisogno di traduzione +#elif L==8 // pl + "Remove teacher's email" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove teacher's email" // Precisa de tradução +#elif L==10 // tr + "Remove teacher's email" // Çeviri lazim! +#endif + , + [ActChgMaiTch] = +#if L==1 // ca + "Create new teacher's email" // Necessita traducció +#elif L==2 // de + "Create new teacher's email" // Need Übersetzung +#elif L==3 // en + "Create new teacher's email" +#elif L==4 // es + "Crear nuevo correo electrónico de profesor" +#elif L==5 // fr + "Create new teacher's email" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo correo electrónico de profesor" // Okoteve traducción +#elif L==7 // it + "Create new teacher's email" // Bisogno di traduzione +#elif L==8 // pl + "Create new teacher's email" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new teacher's email" // Precisa de tradução +#elif L==10 // tr + "Create new teacher's email" // Çeviri lazim! +#endif + , + [ActRemNETCrs] = +#if L==1 // ca + "Remove non-editing teacher from a course" // Necessita traducció +#elif L==2 // de + "Remove non-editing teacher from a course" // Need Übersetzung +#elif L==3 // en + "Remove non-editing teacher from a course" +#elif L==4 // es + "Eliminar profesor no editor de asignatura" +#elif L==5 // fr + "Remove non-editing teacher from a course" // Besoin de traduction +#elif L==6 // gn + "Eliminar profesor no editor de asignatura" // Okoteve traducción +#elif L==7 // it + "Remove non-editing teacher from a course" // Bisogno di traduzione +#elif L==8 // pl + "Remove non-editing teacher from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove non-editing teacher from a course" // Precisa de tradução +#elif L==10 // tr + "Remove non-editing teacher from a course" // Çeviri lazim! +#endif + , + [ActRemTchCrs] = +#if L==1 // ca + "Remove teacher from a course" // Necessita traducció +#elif L==2 // de + "Remove teacher from a course" // Need Übersetzung +#elif L==3 // en + "Remove teacher from a course" +#elif L==4 // es + "Eliminar profesor de asignatura" +#elif L==5 // fr + "Remove teacher from a course" // Besoin de traduction +#elif L==6 // gn + "Eliminar profesor de asignatura" // Okoteve traducción +#elif L==7 // it + "Remove teacher from a course" // Bisogno di traduzione +#elif L==8 // pl + "Remove teacher from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove teacher from a course" // Precisa de tradução +#elif L==10 // tr + "Remove teacher from a course" // Çeviri lazim! +#endif + , + [ActReqAccEnrNET] = +#if L==1 // ca + "See whether to accept or reject my enrolment as non-editing teacher" // Necessita traducció +#elif L==2 // de + "See whether to accept or reject my enrolment as non-editing teacher" // Need Übersetzung +#elif L==3 // en + "See whether to accept or reject my enrolment as non-editing teacher" +#elif L==4 // es + "Ver si aceptar o rechazar mi inscripción como profesor no editor" +#elif L==5 // fr + "See whether to accept or reject my enrolment as non-editing teacher" // Besoin de traduction +#elif L==6 // gn + "Ver si aceptar o rechazar mi inscripción como profesor no editor" // Okoteve traducción +#elif L==7 // it + "See whether to accept or reject my enrolment as non-editing teacher" // Bisogno di traduzione +#elif L==8 // pl + "See whether to accept or reject my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See whether to accept or reject my enrolment as non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "See whether to accept or reject my enrolment as non-editing teacher" // Çeviri lazim! +#endif + , + [ActReqAccEnrTch] = +#if L==1 // ca + "See whether to accept or reject my enrolment as teacher" // Necessita traducció +#elif L==2 // de + "See whether to accept or reject my enrolment as teacher" // Need Übersetzung +#elif L==3 // en + "See whether to accept or reject my enrolment as teacher" +#elif L==4 // es + "Ver si aceptar o rechazar mi inscripción como profesor" +#elif L==5 // fr + "See whether to accept or reject my enrolment as teacher" // Besoin de traduction +#elif L==6 // gn + "Ver si aceptar o rechazar mi inscripción como profesor" // Okoteve traducción +#elif L==7 // it + "See whether to accept or reject my enrolment as teacher" // Bisogno di traduzione +#elif L==8 // pl + "See whether to accept or reject my enrolment as teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See whether to accept or reject my enrolment as teacher" // Precisa de tradução +#elif L==10 // tr + "See whether to accept or reject my enrolment as teacher" // Çeviri lazim! +#endif + , + [ActAccEnrNET] = +#if L==1 // ca + "Accept my enrolment as non-editing teacher" // Necessita traducció +#elif L==2 // de + "Accept my enrolment as non-editing teacher" // Need Übersetzung +#elif L==3 // en + "Accept my enrolment as non-editing teacher" +#elif L==4 // es + "Aceptar mi inscripción como profesor no editor" +#elif L==5 // fr + "Accept my enrolment as non-editing teacher" // Besoin de traduction +#elif L==6 // gn + "Aceptar mi inscripción como profesor no editor" // Okoteve traducción +#elif L==7 // it + "Accept my enrolment as non-editing teacher" // Bisogno di traduzione +#elif L==8 // pl + "Accept my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Accept my enrolment as non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "Accept my enrolment as non-editing teacher" // Çeviri lazim! +#endif + , + [ActAccEnrTch] = +#if L==1 // ca + "Accept my enrolment as teacher" // Necessita traducció +#elif L==2 // de + "Accept my enrolment as teacher" // Need Übersetzung +#elif L==3 // en + "Accept my enrolment as teacher" +#elif L==4 // es + "Aceptar mi inscripción como profesor" +#elif L==5 // fr + "Accept my enrolment as teacher" // Besoin de traduction +#elif L==6 // gn + "Aceptar mi inscripción como profesor" // Okoteve traducción +#elif L==7 // it + "Accept my enrolment as teacher" // Bisogno di traduzione +#elif L==8 // pl + "Accept my enrolment as teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Accept my enrolment as teacher" // Precisa de tradução +#elif L==10 // tr + "Accept my enrolment as teacher" // Çeviri lazim! +#endif + , + [ActRemMe_NET] = +#if L==1 // ca + "Reject my enrolment as non-editing teacher" // Necessita traducció +#elif L==2 // de + "Reject my enrolment as non-editing teacher" // Need Übersetzung +#elif L==3 // en + "Reject my enrolment as non-editing teacher" +#elif L==4 // es + "Rechazar mi inscripción como profesor no editor" +#elif L==5 // fr + "Reject my enrolment as non-editing teacher" // Besoin de traduction +#elif L==6 // gn + "Rechazar mi inscripción como profesor no editor" // Okoteve traducción +#elif L==7 // it + "Reject my enrolment as non-editing teacher" // Bisogno di traduzione +#elif L==8 // pl + "Reject my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Reject my enrolment as non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "Reject my enrolment as non-editing teacher" // Çeviri lazim! +#endif + , + [ActRemMe_Tch] = +#if L==1 // ca + "Reject my enrolment as teacher" // Necessita traducció +#elif L==2 // de + "Reject my enrolment as teacher" // Need Übersetzung +#elif L==3 // en + "Reject my enrolment as teacher" +#elif L==4 // es + "Rechazar mi inscripción como profesor" +#elif L==5 // fr + "Reject my enrolment as teacher" // Besoin de traduction +#elif L==6 // gn + "Rechazar mi inscripción como profesor" // Okoteve traducción +#elif L==7 // it + "Reject my enrolment as teacher" // Bisogno di traduzione +#elif L==8 // pl + "Reject my enrolment as teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Reject my enrolment as teacher" // Precisa de tradução +#elif L==10 // tr + "Reject my enrolment as teacher" // Çeviri lazim! +#endif + , + [ActReqFolSevTch] = +#if L==1 // ca + "Request follow several teachers" // Necessita traducció +#elif L==2 // de + "Request follow several teachers" // Need Übersetzung +#elif L==3 // en + "Request follow several teachers" +#elif L==4 // es + "Solicitar seguir a varios profesores" +#elif L==5 // fr + "Request follow several teachers" // Besoin de traduction +#elif L==6 // gn + "Solicitar seguir a varios profesores" // Okoteve traducción +#elif L==7 // it + "Request follow several teachers" // Bisogno di traduzione +#elif L==8 // pl + "Request follow several teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request follow several teachers" // Precisa de tradução +#elif L==10 // tr + "Request follow several teachers" // Çeviri lazim! +#endif + , + [ActReqUnfSevTch] = +#if L==1 // ca + "Request unfollow several teachers" // Necessita traducció +#elif L==2 // de + "Request unfollow several teachers" // Need Übersetzung +#elif L==3 // en + "Request unfollow several teachers" +#elif L==4 // es + "Solicitar dejar de seguir a varios profesores" +#elif L==5 // fr + "Request unfollow several teachers" // Besoin de traduction +#elif L==6 // gn + "Solicitar dejar de seguir a varios profesores" // Okoteve traducción +#elif L==7 // it + "Request unfollow several teachers" // Bisogno di traduzione +#elif L==8 // pl + "Request unfollow several teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request unfollow several teachers" // Precisa de tradução +#elif L==10 // tr + "Request unfollow several teachers" // Çeviri lazim! +#endif + , + [ActFolSevTch] = +#if L==1 // ca + "Follow several teachers" // Necessita traducció +#elif L==2 // de + "Follow several teachers" // Need Übersetzung +#elif L==3 // en + "Follow several teachers" +#elif L==4 // es + "Seguir a varios profesores" +#elif L==5 // fr + "Follow several teachers" // Besoin de traduction +#elif L==6 // gn + "Seguir a varios profesores" // Okoteve traducción +#elif L==7 // it + "Follow several teachers" // Bisogno di traduzione +#elif L==8 // pl + "Follow several teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Follow several teachers" // Precisa de tradução +#elif L==10 // tr + "Follow several teachers" // Çeviri lazim! +#endif + , + [ActUnfSevTch] = +#if L==1 // ca + "Unfollow several teachers" // Necessita traducció +#elif L==2 // de + "Unfollow several teachers" // Need Übersetzung +#elif L==3 // en + "Unfollow several teachers" +#elif L==4 // es + "Dejar de seguir a varios profesores" +#elif L==5 // fr + "Unfollow several teachers" // Besoin de traduction +#elif L==6 // gn + "Dejar de seguir a varios profesores" // Okoteve traducción +#elif L==7 // it + "Unfollow several teachers" // Bisogno di traduzione +#elif L==8 // pl + "Unfollow several teachers" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Unfollow several teachers" // Precisa de tradução +#elif L==10 // tr + "Unfollow several teachers" // Çeviri lazim! +#endif + , + [ActSeeRecOneTch] = +#if L==1 // ca + "See the record of a teacher" // Necessita traducció +#elif L==2 // de + "See the record of a teacher" // Need Übersetzung +#elif L==3 // en + "See the record of a teacher" +#elif L==4 // es + "Ver la ficha de profesor" +#elif L==5 // fr + "See the record of a teacher" // Besoin de traduction +#elif L==6 // gn + "Ver la ficha de profesor" // Okoteve traducción +#elif L==7 // it + "See the record of a teacher" // Bisogno di traduzione +#elif L==8 // pl + "See the record of a teacher" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the record of a teacher" // Precisa de tradução +#elif L==10 // tr + "See the record of a teacher" // Çeviri lazim! +#endif + , + [ActReqEnrSevNET] = +#if L==1 // ca + "Request enrolment/removing of several non-editing teachers to/from a course" // Necessita traducció +#elif L==2 // de + "Request enrolment/removing of several non-editing teachers to/from a course" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removing of several non-editing teachers to/from a course" +#elif L==4 // es + "Solicitar inscripción/eliminación de varios profesores no editores a/de un asignatura" +#elif L==5 // fr + "Request enrolment/removing of several non-editing teachers to/from a course" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripción/eliminación de varios profesores no editores a/de un asignatura" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removing of several non-editing teachers to/from a course" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removing of several non-editing teachers to/from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removing of several non-editing teachers to/from a course" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removing of several non-editing teachers to/from a course" // Çeviri lazim! +#endif + , + [ActRcvFrmEnrSevNET] = +#if L==1 // ca + "Register/remove several non-editing teachers in/from a course" // Necessita traducció +#elif L==2 // de + "Register/remove several non-editing teachers in/from a course" // Need Übersetzung +#elif L==3 // en + "Register/remove several non-editing teachers in/from a course" +#elif L==4 // es + "Inscribir/eliminar varios profesores no editores en/de asignatura" +#elif L==5 // fr + "Register/remove several non-editing teachers in/from a course" // Besoin de traduction +#elif L==6 // gn + "Inscribir/eliminar varios profesores no editores en/de asignatura" // Okoteve traducción +#elif L==7 // it + "Register/remove several non-editing teachers in/from a course" // Bisogno di traduzione +#elif L==8 // pl + "Register/remove several non-editing teachers in/from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Register/remove several non-editing teachers in/from a course" // Precisa de tradução +#elif L==10 // tr + "Register/remove several non-editing teachers in/from a course" // Çeviri lazim! +#endif + , + [ActReqEnrSevTch] = +#if L==1 // ca + "Request enrolment/removing of several teachers to/from a course" // Necessita traducció +#elif L==2 // de + "Request enrolment/removing of several teachers to/from a course" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removing of several teachers to/from a course" +#elif L==4 // es + "Solicitar inscripción/eliminación de varios profesores a/de un asignatura" +#elif L==5 // fr + "Request enrolment/removing of several teachers to/from a course" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripción/eliminación de varios profesores a/de un asignatura" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removing of several teachers to/from a course" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removing of several teachers to/from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removing of several teachers to/from a course" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removing of several teachers to/from a course" // Çeviri lazim! +#endif + , + [ActRcvFrmEnrSevTch] = +#if L==1 // ca + "Register/remove several teachers in/from a course" // Necessita traducció +#elif L==2 // de + "Register/remove several teachers in/from a course" // Need Übersetzung +#elif L==3 // en + "Register/remove several teachers in/from a course" +#elif L==4 // es + "Inscribir/eliminar varios profesores en/de asignatura" +#elif L==5 // fr + "Register/remove several teachers in/from a course" // Besoin de traduction +#elif L==6 // gn + "Inscribir/eliminar varios profesores en/de asignatura" // Okoteve traducción +#elif L==7 // it + "Register/remove several teachers in/from a course" // Bisogno di traduzione +#elif L==8 // pl + "Register/remove several teachers in/from a course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Register/remove several teachers in/from a course" // Precisa de tradução +#elif L==10 // tr + "Register/remove several teachers in/from a course" // Çeviri lazim! #endif , [ActFrmLogInUsrAgd] = @@ -26006,96 +27317,878 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See a user's public agenda after change language" // Çeviri lazim! #endif , - [ActSeeUsrAgd] = + [ActLstOth] = #if L==1 // ca - "See a user's public agenda" // Necessita traducció + "Show class photo or list of guests" // Necessita traducció #elif L==2 // de - "See a user's public agenda" // Need Übersetzung + "Show class photo or list of guests" // Need Übersetzung #elif L==3 // en - "See a user's public agenda" + "Show class photo or list of guests" #elif L==4 // es - "Ver la agenda pública de usuario" + "Mostrar foto de clase o lista de invitados" #elif L==5 // fr - "See a user's public agenda" // Besoin de traduction + "Show class photo or list of guests" // Besoin de traduction #elif L==6 // gn - "Ver la agenda pública de usuario" // Okoteve traducción + "Mostrar foto de clase o lista de invitados" // Okoteve traducción #elif L==7 // it - "See a user's public agenda" // Bisogno di traduzione + "Show class photo or list of guests" // Bisogno di traduzione #elif L==8 // pl - "See a user's public agenda" // Potrzebujesz tlumaczenie + "Show class photo or list of guests" // Potrzebujesz tlumaczenie #elif L==9 // pt - "See a user's public agenda" // Precisa de tradução + "Show class photo or list of guests" // Precisa de tradução #elif L==10 // tr - "See a user's public agenda" // Çeviri lazim! + "Show class photo or list of guests" // Çeviri lazim! #endif , - [ActReqEnrSevStd] = + [ActNewAdmIns] = #if L==1 // ca - "Request enrolment/removing of several students to/from a course" // Necessita traducció + "Register an administrador in an institution" // Necessita traducció #elif L==2 // de - "Request enrolment/removing of several students to/from a course" // Need Übersetzung + "Register an administrador in an institution" // Need Übersetzung #elif L==3 // en - "Request enrolment/removing of several students to/from a course" + "Register an administrador in an institution" #elif L==4 // es - "Solicitar inscripción/eliminación de varios estudiantes a/de un asignatura" + "Inscribir un administrador en una institución" #elif L==5 // fr - "Request enrolment/removing of several students to/from a course" // Besoin de traduction + "Register an administrador in an institution" // Besoin de traduction #elif L==6 // gn - "Solicitar inscripción/eliminación de varios estudiantes a/de un asignatura" // Okoteve traducción + "Inscribir un administrador en una institución" // Okoteve traducción #elif L==7 // it - "Request enrolment/removing of several students to/from a course" // Bisogno di traduzione + "Register an administrador in an institution" // Bisogno di traduzione #elif L==8 // pl - "Request enrolment/removing of several students to/from a course" // Potrzebujesz tlumaczenie + "Register an administrador in an institution" // Potrzebujesz tlumaczenie #elif L==9 // pt - "Request enrolment/removing of several students to/from a course" // Precisa de tradução + "Register an administrador in an institution" // Precisa de tradução #elif L==10 // tr - "Request enrolment/removing of several students to/from a course" // Çeviri lazim! + "Register an administrador in an institution" // Çeviri lazim! #endif , - [ActReqEnrSevNET] = + [ActRemAdmIns] = #if L==1 // ca - "Request enrolment/removing of several non-editing teachers to/from a course" // Necessita traducció + "Remove administrador from an institution" // Necessita traducció #elif L==2 // de - "Request enrolment/removing of several non-editing teachers to/from a course" // Need Übersetzung + "Remove administrador from an institution" // Need Übersetzung #elif L==3 // en - "Request enrolment/removing of several non-editing teachers to/from a course" + "Remove administrador from an institution" #elif L==4 // es - "Solicitar inscripción/eliminación de varios profesores no editores a/de un asignatura" + "Eliminar administrador de institución" #elif L==5 // fr - "Request enrolment/removing of several non-editing teachers to/from a course" // Besoin de traduction + "Remove administrador from an institution" // Besoin de traduction #elif L==6 // gn - "Solicitar inscripción/eliminación de varios profesores no editores a/de un asignatura" // Okoteve traducción + "Eliminar administrador de institución" // Okoteve traducción #elif L==7 // it - "Request enrolment/removing of several non-editing teachers to/from a course" // Bisogno di traduzione + "Remove administrador from an institution" // Bisogno di traduzione #elif L==8 // pl - "Request enrolment/removing of several non-editing teachers to/from a course" // Potrzebujesz tlumaczenie + "Remove administrador from an institution" // Potrzebujesz tlumaczenie #elif L==9 // pt - "Request enrolment/removing of several non-editing teachers to/from a course" // Precisa de tradução + "Remove administrador from an institution" // Precisa de tradução #elif L==10 // tr - "Request enrolment/removing of several non-editing teachers to/from a course" // Çeviri lazim! + "Remove administrador from an institution" // Çeviri lazim! #endif , - [ActReqEnrSevTch] = + [ActNewAdmCtr] = #if L==1 // ca - "Request enrolment/removing of several teachers to/from a course" // Necessita traducció + "Register an administrador in a center" // Necessita traducció #elif L==2 // de - "Request enrolment/removing of several teachers to/from a course" // Need Übersetzung + "Register an administrador in a center" // Need Übersetzung #elif L==3 // en - "Request enrolment/removing of several teachers to/from a course" + "Register an administrador in a center" #elif L==4 // es - "Solicitar inscripción/eliminación de varios profesores a/de un asignatura" + "Inscribir un administrador en un centro" #elif L==5 // fr - "Request enrolment/removing of several teachers to/from a course" // Besoin de traduction + "Register an administrador in a center" // Besoin de traduction #elif L==6 // gn - "Solicitar inscripción/eliminación de varios profesores a/de un asignatura" // Okoteve traducción + "Inscribir un administrador en un centro" // Okoteve traducción #elif L==7 // it - "Request enrolment/removing of several teachers to/from a course" // Bisogno di traduzione + "Register an administrador in a center" // Bisogno di traduzione #elif L==8 // pl - "Request enrolment/removing of several teachers to/from a course" // Potrzebujesz tlumaczenie + "Register an administrador in a center" // Potrzebujesz tlumaczenie #elif L==9 // pt - "Request enrolment/removing of several teachers to/from a course" // Precisa de tradução + "Register an administrador in a center" // Precisa de tradução #elif L==10 // tr - "Request enrolment/removing of several teachers to/from a course" // Çeviri lazim! + "Register an administrador in a center" // Çeviri lazim! +#endif + , + [ActRemAdmCtr] = +#if L==1 // ca + "Remove administrador from a center" // Necessita traducció +#elif L==2 // de + "Remove administrador from a center" // Need Übersetzung +#elif L==3 // en + "Remove administrador from a center" +#elif L==4 // es + "Eliminar administrador de centro" +#elif L==5 // fr + "Remove administrador from a center" // Besoin de traduction +#elif L==6 // gn + "Eliminar administrador de centro" // Okoteve traducción +#elif L==7 // it + "Remove administrador from a center" // Bisogno di traduzione +#elif L==8 // pl + "Remove administrador from a center" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove administrador from a center" // Precisa de tradução +#elif L==10 // tr + "Remove administrador from a center" // Çeviri lazim! +#endif + , + [ActNewAdmDeg] = +#if L==1 // ca + "Register an administrador in a degree" // Necessita traducció +#elif L==2 // de + "Register an administrador in a degree" // Need Übersetzung +#elif L==3 // en + "Register an administrador in a degree" +#elif L==4 // es + "Inscribir un administrador en una titulación" +#elif L==5 // fr + "Register an administrador in a degree" // Besoin de traduction +#elif L==6 // gn + "Inscribir un administrador en una titulación" // Okoteve traducción +#elif L==7 // it + "Register an administrador in a degree" // Bisogno di traduzione +#elif L==8 // pl + "Register an administrador in a degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Register an administrador in a degree" // Precisa de tradução +#elif L==10 // tr + "Register an administrador in a degree" // Çeviri lazim! +#endif + , + [ActRemAdmDeg] = +#if L==1 // ca + "Remove administrador from a degree" // Necessita traducció +#elif L==2 // de + "Remove administrador from a degree" // Need Übersetzung +#elif L==3 // en + "Remove administrador from a degree" +#elif L==4 // es + "Eliminar administrador en una titulación" +#elif L==5 // fr + "Remove administrador from a degree" // Besoin de traduction +#elif L==6 // gn + "Eliminar administrador en una titulación" // Okoteve traducción +#elif L==7 // it + "Remove administrador from a degree" // Bisogno di traduzione +#elif L==8 // pl + "Remove administrador from a degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove administrador from a degree" // Precisa de tradução +#elif L==10 // tr + "Remove administrador from a degree" // Çeviri lazim! +#endif + , + [ActLstGst] = +#if L==1 // ca + "List main data of administrators" // Necessita traducció +#elif L==2 // de + "List main data of administrators" // Need Übersetzung +#elif L==3 // en + "List main data of administrators" +#elif L==4 // es + "Listar datos principales de administradores" +#elif L==5 // fr + "List main data of administrators" // Besoin de traduction +#elif L==6 // gn + "Listar datos principales de administradores" // Okoteve traducción +#elif L==7 // it + "List main data of administrators" // Bisogno di traduzione +#elif L==8 // pl + "List main data of administrators" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List main data of administrators" // Precisa de tradução +#elif L==10 // tr + "List main data of administrators" // Çeviri lazim! +#endif + , + [ActLstGstAll] = +#if L==1 // ca + "List the full data of the guests" // Necessita traducció +#elif L==2 // de + "List the full data of the guests" // Need Übersetzung +#elif L==3 // en + "List the full data of the guests" +#elif L==4 // es + "Listar los datos completos de los invitados" +#elif L==5 // fr + "List the full data of the guests" // Besoin de traduction +#elif L==6 // gn + "Listar los datos completos de los invitados" // Okoteve traducción +#elif L==7 // it + "List the full data of the guests" // Bisogno di traduzione +#elif L==8 // pl + "List the full data of the guests" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List the full data of the guests" // Precisa de tradução +#elif L==10 // tr + "List the full data of the guests" // Çeviri lazim! +#endif + , + [ActPrnGstPho] = +#if L==1 // ca + "Show class photo of guests ready to be printed" // Necessita traducció +#elif L==2 // de + "Show class photo of guests ready to be printed" // Need Übersetzung +#elif L==3 // en + "Show class photo of guests ready to be printed" +#elif L==4 // es + "Mostrar foto de clase de invitados lista para imprimir" +#elif L==5 // fr + "Show class photo of guests ready to be printed" // Besoin de traduction +#elif L==6 // gn + "Mostrar foto de clase de invitados lista para imprimir" // Okoteve traducción +#elif L==7 // it + "Show class photo of guests ready to be printed" // Bisogno di traduzione +#elif L==8 // pl + "Show class photo of guests ready to be printed" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Show class photo of guests ready to be printed" // Precisa de tradução +#elif L==10 // tr + "Show class photo of guests ready to be printed" // Çeviri lazim! +#endif + , + [ActDoActOnSevGst] = +#if L==1 // ca + "Do an action on several selected guests" // Necessita traducció +#elif L==2 // de + "Do an action on several selected guests" // Need Übersetzung +#elif L==3 // en + "Do an action on several selected guests" +#elif L==4 // es + "Realizar una acción sobre varios invitados seleccionados" +#elif L==5 // fr + "Do an action on several selected guests" // Besoin de traduction +#elif L==6 // gn + "Realizar una acción sobre varios invitados seleccionados" // Okoteve traducción +#elif L==7 // it + "Do an action on several selected guests" // Bisogno di traduzione +#elif L==8 // pl + "Do an action on several selected guests" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Do an action on several selected guests" // Precisa de tradução +#elif L==10 // tr + "Do an action on several selected guests" // Çeviri lazim! +#endif + , + [ActSeeRecSevGst] = +#if L==1 // ca + "See records of several selected guests" // Necessita traducció +#elif L==2 // de + "See records of several selected guests" // Need Übersetzung +#elif L==3 // en + "See records of several selected guests" +#elif L==4 // es + "Ver fichas de varios invitados seleccionados" +#elif L==5 // fr + "See records of several selected guests" // Besoin de traduction +#elif L==6 // gn + "Ver fichas de varios invitados seleccionados" // Okoteve traducción +#elif L==7 // it + "See records of several selected guests" // Bisogno di traduzione +#elif L==8 // pl + "See records of several selected guests" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See records of several selected guests" // Precisa de tradução +#elif L==10 // tr + "See records of several selected guests" // Çeviri lazim! +#endif + , + [ActPrnRecSevGst] = +#if L==1 // ca + "See records of several selected guests ready to print" // Necessita traducció +#elif L==2 // de + "See records of several selected guests ready to print" // Need Übersetzung +#elif L==3 // en + "See records of several selected guests ready to print" +#elif L==4 // es + "Ver fichas de varios invitados seleccionados lista para imprimir" +#elif L==5 // fr + "See records of several selected guests ready to print" // Besoin de traduction +#elif L==6 // gn + "Ver fichas de varios invitados seleccionados lista para imprimir" // Okoteve traducción +#elif L==7 // it + "See records of several selected guests ready to print" // Bisogno di traduzione +#elif L==8 // pl + "See records of several selected guests ready to print" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See records of several selected guests ready to print" // Precisa de tradução +#elif L==10 // tr + "See records of several selected guests ready to print" // Çeviri lazim! +#endif + , + [ActReqMdfOneOth] = +#if L==1 // ca + "Request a user's ID for enrolment/removal" // Necessita traducció +#elif L==2 // de + "Request a user's ID for enrolment/removal" // Need Übersetzung +#elif L==3 // en + "Request a user's ID for enrolment/removal" +#elif L==4 // es + "Solicitar el ID de usuario para inscripción/eliminación" +#elif L==5 // fr + "Request a user's ID for enrolment/removal" // Besoin de traduction +#elif L==6 // gn + "Solicitar el ID de usuario para inscripción/eliminación" // Okoteve traducción +#elif L==7 // it + "Request a user's ID for enrolment/removal" // Bisogno di traduzione +#elif L==8 // pl + "Request a user's ID for enrolment/removal" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request a user's ID for enrolment/removal" // Precisa de tradução +#elif L==10 // tr + "Request a user's ID for enrolment/removal" // Çeviri lazim! +#endif + , + [ActReqMdfOth] = +#if L==1 // ca + "Request enrolment/removal of a user" // Necessita traducció +#elif L==2 // de + "Request enrolment/removal of a user" // Need Übersetzung +#elif L==3 // en + "Request enrolment/removal of a user" +#elif L==4 // es + "Solicitar inscripcion/eliminación de usuario" +#elif L==5 // fr + "Request enrolment/removal of a user" // Besoin de traduction +#elif L==6 // gn + "Solicitar inscripcion/eliminación de usuario" // Okoteve traducción +#elif L==7 // it + "Request enrolment/removal of a user" // Bisogno di traduzione +#elif L==8 // pl + "Request enrolment/removal of a user" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request enrolment/removal of a user" // Precisa de tradução +#elif L==10 // tr + "Request enrolment/removal of a user" // Çeviri lazim! +#endif + , + [ActReqOthPho] = +#if L==1 // ca + "Edit a user's photo" // Necessita traducció +#elif L==2 // de + "Edit a user's photo" // Need Übersetzung +#elif L==3 // en + "Edit a user's photo" +#elif L==4 // es + "Editar la foto de usuario" +#elif L==5 // fr + "Edit a user's photo" // Besoin de traduction +#elif L==6 // gn + "Editar la foto de usuario" // Okoteve traducción +#elif L==7 // it + "Edit a user's photo" // Bisogno di traduzione +#elif L==8 // pl + "Edit a user's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit a user's photo" // Precisa de tradução +#elif L==10 // tr + "Edit a user's photo" // Çeviri lazim! +#endif + , + [ActDetOthPho] = +#if L==1 // ca + "Send user's photo and detect faces on it" // Necessita traducció +#elif L==2 // de + "Send user's photo and detect faces on it" // Need Übersetzung +#elif L==3 // en + "Send user's photo and detect faces on it" +#elif L==4 // es + "Enviar la foto de usuario y detectar rostros en ella" +#elif L==5 // fr + "Send user's photo and detect faces on it" // Besoin de traduction +#elif L==6 // gn + "Enviar la foto de usuario y detectar rostros en ella" // Okoteve traducción +#elif L==7 // it + "Send user's photo and detect faces on it" // Bisogno di traduzione +#elif L==8 // pl + "Send user's photo and detect faces on it" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Send user's photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "Send user's photo and detect faces on it" // Çeviri lazim! +#endif + , + [ActChgOthPho] = +#if L==1 // ca + "Update a user's photo" // Necessita traducció +#elif L==2 // de + "Update a user's photo" // Need Übersetzung +#elif L==3 // en + "Update a user's photo" +#elif L==4 // es + "Actualizar la foto de usuario" +#elif L==5 // fr + "Update a user's photo" // Besoin de traduction +#elif L==6 // gn + "Actualizar la foto de usuario" // Okoteve traducción +#elif L==7 // it + "Update a user's photo" // Bisogno di traduzione +#elif L==8 // pl + "Update a user's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a user's photo" // Precisa de tradução +#elif L==10 // tr + "Update a user's photo" // Çeviri lazim! +#endif + , + [ActReqRemOthPho] = +#if L==1 // ca + "Request removal of user's photo" // Necessita traducció +#elif L==2 // de + "Request removal of user's photo" // Need Übersetzung +#elif L==3 // en + "Request removal of user's photo" +#elif L==4 // es + "Solicitar eliminación de foto de usuario" +#elif L==5 // fr + "Request removal of user's photo" // Besoin de traduction +#elif L==6 // gn + "Solicitar eliminación de foto de usuario" // Okoteve traducción +#elif L==7 // it + "Request removal of user's photo" // Bisogno di traduzione +#elif L==8 // pl + "Request removal of user's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request removal of user's photo" // Precisa de tradução +#elif L==10 // tr + "Request removal of user's photo" // Çeviri lazim! +#endif + , + [ActRemOthPho] = +#if L==1 // ca + "Remove user's photo" // Necessita traducció +#elif L==2 // de + "Remove user's photo" // Need Übersetzung +#elif L==3 // en + "Remove user's photo" +#elif L==4 // es + "Eliminar la foto de usuario" +#elif L==5 // fr + "Remove user's photo" // Besoin de traduction +#elif L==6 // gn + "Eliminar la foto de usuario" // Okoteve traducción +#elif L==7 // it + "Remove user's photo" // Bisogno di traduzione +#elif L==8 // pl + "Remove user's photo" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove user's photo" // Precisa de tradução +#elif L==10 // tr + "Remove user's photo" // Çeviri lazim! +#endif + , + [ActCreOth] = +#if L==1 // ca + "Create new guest" // Necessita traducció +#elif L==2 // de + "Create new guest" // Need Übersetzung +#elif L==3 // en + "Create new guest" +#elif L==4 // es + "Crear nuevo invitado" +#elif L==5 // fr + "Create new guest" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo invitado" // Okoteve traducción +#elif L==7 // it + "Create new guest" // Bisogno di traduzione +#elif L==8 // pl + "Create new guest" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new guest" // Precisa de tradução +#elif L==10 // tr + "Create new guest" // Çeviri lazim! +#endif + , + [ActUpdOth] = +#if L==1 // ca + "Update a user's data and groups" // Necessita traducció +#elif L==2 // de + "Update a user's data and groups" // Need Übersetzung +#elif L==3 // en + "Update a user's data and groups" +#elif L==4 // es + "Actualizar los datos y grupos de usuario" +#elif L==5 // fr + "Update a user's data and groups" // Besoin de traduction +#elif L==6 // gn + "Actualizar los datos y grupos de usuario" // Okoteve traducción +#elif L==7 // it + "Update a user's data and groups" // Bisogno di traduzione +#elif L==8 // pl + "Update a user's data and groups" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Update a user's data and groups" // Precisa de tradução +#elif L==10 // tr + "Update a user's data and groups" // Çeviri lazim! +#endif + , + [ActCnfID_Oth] = +#if L==1 // ca + "Confirm a user's ID" // Necessita traducció +#elif L==2 // de + "Confirm a user's ID" // Need Übersetzung +#elif L==3 // en + "Confirm a user's ID" +#elif L==4 // es + "Confirmar el ID de usuario" +#elif L==5 // fr + "Confirm a user's ID" // Besoin de traduction +#elif L==6 // gn + "Confirmar el ID de usuario" // Okoteve traducción +#elif L==7 // it + "Confirm a user's ID" // Bisogno di traduzione +#elif L==8 // pl + "Confirm a user's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Confirm a user's ID" // Precisa de tradução +#elif L==10 // tr + "Confirm a user's ID" // Çeviri lazim! +#endif + , + [ActFrmAccOth] = +#if L==1 // ca + "Forms to the change a user's account" // Necessita traducció +#elif L==2 // de + "Forms to the change a user's account" // Need Übersetzung +#elif L==3 // en + "Forms to the change a user's account" +#elif L==4 // es + "Formularios para cambiar la cuenta de usuario" +#elif L==5 // fr + "Forms to the change a user's account" // Besoin de traduction +#elif L==6 // gn + "Formularios para cambiar la cuenta de usuario" // Okoteve traducción +#elif L==7 // it + "Forms to the change a user's account" // Bisogno di traduzione +#elif L==8 // pl + "Forms to the change a user's account" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Forms to the change a user's account" // Precisa de tradução +#elif L==10 // tr + "Forms to the change a user's account" // Çeviri lazim! +#endif + , + [ActRemNicOth] = +#if L==1 // ca + "Remove user's nickname" // Necessita traducció +#elif L==2 // de + "Remove user's nickname" // Need Übersetzung +#elif L==3 // en + "Remove user's nickname" +#elif L==4 // es + "Eliminar apodo de usuario" +#elif L==5 // fr + "Remove user's nickname" // Besoin de traduction +#elif L==6 // gn + "Eliminar apodo de usuario" // Okoteve traducción +#elif L==7 // it + "Remove user's nickname" // Bisogno di traduzione +#elif L==8 // pl + "Remove user's nickname" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove user's nickname" // Precisa de tradução +#elif L==10 // tr + "Remove user's nickname" // Çeviri lazim! +#endif + , + [ActChgNicOth] = +#if L==1 // ca + "Change user's nickname" // Necessita traducció +#elif L==2 // de + "Change user's nickname" // Need Übersetzung +#elif L==3 // en + "Change user's nickname" +#elif L==4 // es + "Cambiar apodo de usuario" +#elif L==5 // fr + "Change user's nickname" // Besoin de traduction +#elif L==6 // gn + "Cambiar apodo de usuario" // Okoteve traducción +#elif L==7 // it + "Change user's nickname" // Bisogno di traduzione +#elif L==8 // pl + "Change user's nickname" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change user's nickname" // Precisa de tradução +#elif L==10 // tr + "Change user's nickname" // Çeviri lazim! +#endif + , + [ActRemID_Oth] = +#if L==1 // ca + "Remove user's ID" // Necessita traducció +#elif L==2 // de + "Remove user's ID" // Need Übersetzung +#elif L==3 // en + "Remove user's ID" +#elif L==4 // es + "Eliminar ID de usuario" +#elif L==5 // fr + "Remove user's ID" // Besoin de traduction +#elif L==6 // gn + "Eliminar ID de usuario" // Okoteve traducción +#elif L==7 // it + "Remove user's ID" // Bisogno di traduzione +#elif L==8 // pl + "Remove user's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove user's ID" // Precisa de tradução +#elif L==10 // tr + "Remove user's ID" // Çeviri lazim! +#endif + , + [ActChgID_Oth] = +#if L==1 // ca + "Create new user's ID" // Necessita traducció +#elif L==2 // de + "Create new user's ID" // Need Übersetzung +#elif L==3 // en + "Create new user's ID" +#elif L==4 // es + "Crear nuevo ID de usuario" +#elif L==5 // fr + "Create new user's ID" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo ID de usuario" // Okoteve traducción +#elif L==7 // it + "Create new user's ID" // Bisogno di traduzione +#elif L==8 // pl + "Create new user's ID" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new user's ID" // Precisa de tradução +#elif L==10 // tr + "Create new user's ID" // Çeviri lazim! +#endif + , + [ActChgPwdOth] = +#if L==1 // ca + "Change user's password" // Necessita traducció +#elif L==2 // de + "Change user's password" // Need Übersetzung +#elif L==3 // en + "Change user's password" +#elif L==4 // es + "Cambiar contraseña de usuario" +#elif L==5 // fr + "Change user's password" // Besoin de traduction +#elif L==6 // gn + "Cambiar contraseña de usuario" // Okoteve traducción +#elif L==7 // it + "Change user's password" // Bisogno di traduzione +#elif L==8 // pl + "Change user's password" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change user's password" // Precisa de tradução +#elif L==10 // tr + "Change user's password" // Çeviri lazim! +#endif + , + [ActRemMaiOth] = +#if L==1 // ca + "Remove user's email" // Necessita traducció +#elif L==2 // de + "Remove user's email" // Need Übersetzung +#elif L==3 // en + "Remove user's email" +#elif L==4 // es + "Eliminar correo electrónico de usuario" +#elif L==5 // fr + "Remove user's email" // Besoin de traduction +#elif L==6 // gn + "Eliminar correo electrónico de usuario" // Okoteve traducción +#elif L==7 // it + "Remove user's email" // Bisogno di traduzione +#elif L==8 // pl + "Remove user's email" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove user's email" // Precisa de tradução +#elif L==10 // tr + "Remove user's email" // Çeviri lazim! +#endif + , + [ActChgMaiOth] = +#if L==1 // ca + "Create new user's email" // Necessita traducció +#elif L==2 // de + "Create new user's email" // Need Übersetzung +#elif L==3 // en + "Create new user's email" +#elif L==4 // es + "Crear nuevo correo electrónico de usuario" +#elif L==5 // fr + "Create new user's email" // Besoin de traduction +#elif L==6 // gn + "Crear nuevo correo electrónico de usuario" // Okoteve traducción +#elif L==7 // it + "Create new user's email" // Bisogno di traduzione +#elif L==8 // pl + "Create new user's email" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Create new user's email" // Precisa de tradução +#elif L==10 // tr + "Create new user's email" // Çeviri lazim! +#endif + , + [ActRemUsrGbl] = +#if L==1 // ca + "Eliminate completely a user from the platform" // Necessita traducció +#elif L==2 // de + "Eliminate completely a user from the platform" // Need Übersetzung +#elif L==3 // en + "Eliminate completely a user from the platform" +#elif L==4 // es + "Eliminar usuario completamente de la plataforma" +#elif L==5 // fr + "Eliminate completely a user from the platform" // Besoin de traduction +#elif L==6 // gn + "Eliminar usuario completamente de la plataforma" // Okoteve traducción +#elif L==7 // it + "Eliminate completely a user from the platform" // Bisogno di traduzione +#elif L==8 // pl + "Eliminate completely a user from the platform" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Eliminate completely a user from the platform" // Precisa de tradução +#elif L==10 // tr + "Eliminate completely a user from the platform" // Çeviri lazim! +#endif + , + [ActReqRemOldUsr] = +#if L==1 // ca + "Request complete elimination of old users" // Necessita traducció +#elif L==2 // de + "Request complete elimination of old users" // Need Übersetzung +#elif L==3 // en + "Request complete elimination of old users" +#elif L==4 // es + "Solicitar eliminación completa de usuarios antiguos" +#elif L==5 // fr + "Request complete elimination of old users" // Besoin de traduction +#elif L==6 // gn + "Solicitar eliminación completa de usuarios antiguos" // Okoteve traducción +#elif L==7 // it + "Request complete elimination of old users" // Bisogno di traduzione +#elif L==8 // pl + "Request complete elimination of old users" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request complete elimination of old users" // Precisa de tradução +#elif L==10 // tr + "Request complete elimination of old users" // Çeviri lazim! +#endif + , + [ActRemOldUsr] = +#if L==1 // ca + "Eliminate completely old users" // Necessita traducció +#elif L==2 // de + "Eliminate completely old users" // Need Übersetzung +#elif L==3 // en + "Eliminate completely old users" +#elif L==4 // es + "Eliminar completamente usuarios antiguos" +#elif L==5 // fr + "Eliminate completely old users" // Besoin de traduction +#elif L==6 // gn + "Eliminar completamente usuarios antiguos" // Okoteve traducción +#elif L==7 // it + "Eliminate completely old users" // Bisogno di traduzione +#elif L==8 // pl + "Eliminate completely old users" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Eliminate completely old users" // Precisa de tradução +#elif L==10 // tr + "Eliminate completely old users" // Çeviri lazim! +#endif + , + [ActLstDupUsr] = +#if L==1 // ca + "List possible duplicate users" // Necessita traducció +#elif L==2 // de + "List possible duplicate users" // Need Übersetzung +#elif L==3 // en + "List possible duplicate users" +#elif L==4 // es + "Listar posibles usuarios duplicados" +#elif L==5 // fr + "List possible duplicate users" // Besoin de traduction +#elif L==6 // gn + "Listar posibles usuarios duplicados" // Okoteve traducción +#elif L==7 // it + "List possible duplicate users" // Bisogno di traduzione +#elif L==8 // pl + "List possible duplicate users" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List possible duplicate users" // Precisa de tradução +#elif L==10 // tr + "List possible duplicate users" // Çeviri lazim! +#endif + , + [ActLstSimUsr] = +#if L==1 // ca + "List users similar to a given one (possible duplicates)" // Necessita traducció +#elif L==2 // de + "List users similar to a given one (possible duplicates)" // Need Übersetzung +#elif L==3 // en + "List users similar to a given one (possible duplicates)" +#elif L==4 // es + "Listar usuarios similares a uno dado (posibles duplicados)" +#elif L==5 // fr + "List users similar to a given one (possible duplicates)" // Besoin de traduction +#elif L==6 // gn + "Listar usuarios similares a uno dado (posibles duplicados)" // Okoteve traducción +#elif L==7 // it + "List users similar to a given one (possible duplicates)" // Bisogno di traduzione +#elif L==8 // pl + "List users similar to a given one (possible duplicates)" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "List users similar to a given one (possible duplicates)" // Precisa de tradução +#elif L==10 // tr + "List users similar to a given one (possible duplicates)" // Çeviri lazim! +#endif + , + [ActRemDupUsr] = +#if L==1 // ca + "Remove user from a list of possible duplicate users" // Necessita traducció +#elif L==2 // de + "Remove user from a list of possible duplicate users" // Need Übersetzung +#elif L==3 // en + "Remove user from a list of possible duplicate users" +#elif L==4 // es + "Eliminar a un usuario de una lista de posibles usuarios duplicados" +#elif L==5 // fr + "Remove user from a list of possible duplicate users" // Besoin de traduction +#elif L==6 // gn + "Eliminar a un usuario de una lista de posibles usuarios duplicados" // Okoteve traducción +#elif L==7 // it + "Remove user from a list of possible duplicate users" // Bisogno di traduzione +#elif L==8 // pl + "Remove user from a list of possible duplicate users" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Remove user from a list of possible duplicate users" // Precisa de tradução +#elif L==10 // tr + "Remove user from a list of possible duplicate users" // Çeviri lazim! +#endif + , + [ActSeeAllAtt] = +#if L==1 // ca + "Show attendance events" // Necessita traducció +#elif L==2 // de + "Show attendance events" // Need Übersetzung +#elif L==3 // en + "Show attendance events" +#elif L==4 // es + "Mostrar eventos de asistencia" +#elif L==5 // fr + "Show attendance events" // Besoin de traduction +#elif L==6 // gn + "Mostrar eventos de asistencia" // Okoteve traducción +#elif L==7 // it + "Show attendance events" // Bisogno di traduzione +#elif L==8 // pl + "Show attendance events" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Show attendance events" // Precisa de tradução +#elif L==10 // tr + "Show attendance events" // Çeviri lazim! #endif , [ActReqLstUsrAtt] = @@ -26487,6 +28580,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Save my comments as student in an attendance event" // Precisa de tradução #elif L==10 // tr "Save my comments as student in an attendance event" // Çeviri lazim! +#endif + , + [ActReqSignUp] = +#if L==1 // ca + "Request applying for my enrolment" // Necessita traducció +#elif L==2 // de + "Request applying for my enrolment" // Need Übersetzung +#elif L==3 // en + "Request applying for my enrolment" +#elif L==4 // es + "Formulario para solicitar mi inscripción" +#elif L==5 // fr + "Request applying for my enrolment" // Besoin de traduction +#elif L==6 // gn + "Formulario para solicitar mi inscripción" // Okoteve traducción +#elif L==7 // it + "Request applying for my enrolment" // Bisogno di traduzione +#elif L==8 // pl + "Request applying for my enrolment" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request applying for my enrolment" // Precisa de tradução +#elif L==10 // tr + "Request applying for my enrolment" // Çeviri lazim! #endif , [ActSignUp] = @@ -26510,6 +28626,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Apply for my enrolment" // Precisa de tradução #elif L==10 // tr "Apply for my enrolment" // Çeviri lazim! +#endif + , + [ActSeeSignUpReq] = +#if L==1 // ca + "Show pending requests for inscription in the current course" // Necessita traducció +#elif L==2 // de + "Show pending requests for inscription in the current course" // Need Übersetzung +#elif L==3 // en + "Show pending requests for inscription in the current course" +#elif L==4 // es + "Mostrar solicitudes de inscripción pendientes en la asignatura actual" +#elif L==5 // fr + "Show pending requests for inscription in the current course" // Besoin de traduction +#elif L==6 // gn + "Mostrar solicitudes de inscripción pendientes en la asignatura actual" // Okoteve traducción +#elif L==7 // it + "Show pending requests for inscription in the current course" // Bisogno di traduzione +#elif L==8 // pl + "Show pending requests for inscription in the current course" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Show pending requests for inscription in the current course" // Precisa de tradução +#elif L==10 // tr + "Show pending requests for inscription in the current course" // Çeviri lazim! #endif , [ActUpdSignUpReq] = @@ -26581,2166 +28720,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Reject the enrolment" // Çeviri lazim! #endif , - [ActReqMdfOneOth] = + [ActLstCon] = #if L==1 // ca - "Request a user's ID for enrolment/removal" // Necessita traducció + "List connected users" // Necessita traducció #elif L==2 // de - "Request a user's ID for enrolment/removal" // Need Übersetzung + "List connected users" // Need Übersetzung #elif L==3 // en - "Request a user's ID for enrolment/removal" + "List connected users" #elif L==4 // es - "Solicitar el ID de usuario para inscripción/eliminación" + "Listar usuarios conectados" #elif L==5 // fr - "Request a user's ID for enrolment/removal" // Besoin de traduction + "List connected users" // Besoin de traduction #elif L==6 // gn - "Solicitar el ID de usuario para inscripción/eliminación" // Okoteve traducción + "Listar usuarios conectados" // Okoteve traducción #elif L==7 // it - "Request a user's ID for enrolment/removal" // Bisogno di traduzione + "List connected users" // Bisogno di traduzione #elif L==8 // pl - "Request a user's ID for enrolment/removal" // Potrzebujesz tlumaczenie + "List connected users" // Potrzebujesz tlumaczenie #elif L==9 // pt - "Request a user's ID for enrolment/removal" // Precisa de tradução + "List connected users" // Precisa de tradução #elif L==10 // tr - "Request a user's ID for enrolment/removal" // Çeviri lazim! -#endif - , - [ActReqMdfOneStd] = -#if L==1 // ca - "Request a student's ID for enrolment/removal" // Necessita traducció -#elif L==2 // de - "Request a student's ID for enrolment/removal" // Need Übersetzung -#elif L==3 // en - "Request a student's ID for enrolment/removal" -#elif L==4 // es - "Solicitar el ID de estudiante para inscripción/eliminación" -#elif L==5 // fr - "Request a student's ID for enrolment/removal" // Besoin de traduction -#elif L==6 // gn - "Solicitar el ID de estudiante para inscripción/eliminación" // Okoteve traducción -#elif L==7 // it - "Request a student's ID for enrolment/removal" // Bisogno di traduzione -#elif L==8 // pl - "Request a student's ID for enrolment/removal" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request a student's ID for enrolment/removal" // Precisa de tradução -#elif L==10 // tr - "Request a student's ID for enrolment/removal" // Çeviri lazim! -#endif - , - [ActReqMdfOneTch] = -#if L==1 // ca - "Request a teacher's ID for enrolment/removal" // Necessita traducció -#elif L==2 // de - "Request a teacher's ID for enrolment/removal" // Need Übersetzung -#elif L==3 // en - "Request a teacher's ID for enrolment/removal" -#elif L==4 // es - "Solicitar el ID de profesor para inscripción/eliminación" -#elif L==5 // fr - "Request a teacher's ID for enrolment/removal" // Besoin de traduction -#elif L==6 // gn - "Solicitar el ID de profesor para inscripción/eliminación" // Okoteve traducción -#elif L==7 // it - "Request a teacher's ID for enrolment/removal" // Bisogno di traduzione -#elif L==8 // pl - "Request a teacher's ID for enrolment/removal" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request a teacher's ID for enrolment/removal" // Precisa de tradução -#elif L==10 // tr - "Request a teacher's ID for enrolment/removal" // Çeviri lazim! -#endif - , - [ActReqMdfOth] = -#if L==1 // ca - "Request enrolment/removal of a user" // Necessita traducció -#elif L==2 // de - "Request enrolment/removal of a user" // Need Übersetzung -#elif L==3 // en - "Request enrolment/removal of a user" -#elif L==4 // es - "Solicitar inscripcion/eliminación de usuario" -#elif L==5 // fr - "Request enrolment/removal of a user" // Besoin de traduction -#elif L==6 // gn - "Solicitar inscripcion/eliminación de usuario" // Okoteve traducción -#elif L==7 // it - "Request enrolment/removal of a user" // Bisogno di traduzione -#elif L==8 // pl - "Request enrolment/removal of a user" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request enrolment/removal of a user" // Precisa de tradução -#elif L==10 // tr - "Request enrolment/removal of a user" // Çeviri lazim! -#endif - , - [ActReqMdfStd] = -#if L==1 // ca - "Request enrolment/removal of a student" // Necessita traducció -#elif L==2 // de - "Request enrolment/removal of a student" // Need Übersetzung -#elif L==3 // en - "Request enrolment/removal of a student" -#elif L==4 // es - "Solicitar inscripción/eliminación de estudiante" -#elif L==5 // fr - "Request enrolment/removal of a student" // Besoin de traduction -#elif L==6 // gn - "Solicitar inscripción/eliminación de estudiante" // Okoteve traducción -#elif L==7 // it - "Request enrolment/removal of a student" // Bisogno di traduzione -#elif L==8 // pl - "Request enrolment/removal of a student" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request enrolment/removal of a student" // Precisa de tradução -#elif L==10 // tr - "Request enrolment/removal of a student" // Çeviri lazim! -#endif - , - [ActReqMdfNET] = -#if L==1 // ca - "Request enrolment/removal of a non-editing teacher" // Necessita traducció -#elif L==2 // de - "Request enrolment/removal of a non-editing teacher" // Need Übersetzung -#elif L==3 // en - "Request enrolment/removal of a non-editing teacher" -#elif L==4 // es - "Solicitar inscripción/eliminación de profesor no editor" -#elif L==5 // fr - "Request enrolment/removal of a non-editing teacher" // Besoin de traduction -#elif L==6 // gn - "Solicitar inscripción/eliminación de profesor no editor" // Okoteve traducción -#elif L==7 // it - "Request enrolment/removal of a non-editing teacher" // Bisogno di traduzione -#elif L==8 // pl - "Request enrolment/removal of a non-editing teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request enrolment/removal of a non-editing teacher" // Precisa de tradução -#elif L==10 // tr - "Request enrolment/removal of a non-editing teacher" // Çeviri lazim! -#endif - , - [ActReqMdfTch] = -#if L==1 // ca - "Request enrolment/removal of a teacher" // Necessita traducció -#elif L==2 // de - "Request enrolment/removal of a teacher" // Need Übersetzung -#elif L==3 // en - "Request enrolment/removal of a teacher" -#elif L==4 // es - "Solicitar inscripción/eliminación de profesor" -#elif L==5 // fr - "Request enrolment/removal of a teacher" // Besoin de traduction -#elif L==6 // gn - "Solicitar inscripción/eliminación de profesor" // Okoteve traducción -#elif L==7 // it - "Request enrolment/removal of a teacher" // Bisogno di traduzione -#elif L==8 // pl - "Request enrolment/removal of a teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request enrolment/removal of a teacher" // Precisa de tradução -#elif L==10 // tr - "Request enrolment/removal of a teacher" // Çeviri lazim! -#endif - , - [ActReqOthPho] = -#if L==1 // ca - "Edit a user's photo" // Necessita traducció -#elif L==2 // de - "Edit a user's photo" // Need Übersetzung -#elif L==3 // en - "Edit a user's photo" -#elif L==4 // es - "Editar la foto de usuario" -#elif L==5 // fr - "Edit a user's photo" // Besoin de traduction -#elif L==6 // gn - "Editar la foto de usuario" // Okoteve traducción -#elif L==7 // it - "Edit a user's photo" // Bisogno di traduzione -#elif L==8 // pl - "Edit a user's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit a user's photo" // Precisa de tradução -#elif L==10 // tr - "Edit a user's photo" // Çeviri lazim! -#endif - , - [ActReqStdPho] = -#if L==1 // ca - "Edit a student's photo" // Necessita traducció -#elif L==2 // de - "Edit a student's photo" // Need Übersetzung -#elif L==3 // en - "Edit a student's photo" -#elif L==4 // es - "Editar la foto de estudiante" -#elif L==5 // fr - "Edit a student's photo" // Besoin de traduction -#elif L==6 // gn - "Editar la foto de estudiante" // Okoteve traducción -#elif L==7 // it - "Edit a student's photo" // Bisogno di traduzione -#elif L==8 // pl - "Edit a student's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit a student's photo" // Precisa de tradução -#elif L==10 // tr - "Edit a student's photo" // Çeviri lazim! -#endif - , - [ActReqTchPho] = -#if L==1 // ca - "Edit a teacher's photo" // Necessita traducció -#elif L==2 // de - "Edit a teacher's photo" // Need Übersetzung -#elif L==3 // en - "Edit a teacher's photo" -#elif L==4 // es - "Editar la foto de profesor" -#elif L==5 // fr - "Edit a teacher's photo" // Besoin de traduction -#elif L==6 // gn - "Editar la foto de profesor" // Okoteve traducción -#elif L==7 // it - "Edit a teacher's photo" // Bisogno di traduzione -#elif L==8 // pl - "Edit a teacher's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit a teacher's photo" // Precisa de tradução -#elif L==10 // tr - "Edit a teacher's photo" // Çeviri lazim! -#endif - , - [ActDetOthPho] = -#if L==1 // ca - "Send user's photo and detect faces on it" // Necessita traducció -#elif L==2 // de - "Send user's photo and detect faces on it" // Need Übersetzung -#elif L==3 // en - "Send user's photo and detect faces on it" -#elif L==4 // es - "Enviar la foto de usuario y detectar rostros en ella" -#elif L==5 // fr - "Send user's photo and detect faces on it" // Besoin de traduction -#elif L==6 // gn - "Enviar la foto de usuario y detectar rostros en ella" // Okoteve traducción -#elif L==7 // it - "Send user's photo and detect faces on it" // Bisogno di traduzione -#elif L==8 // pl - "Send user's photo and detect faces on it" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Send user's photo and detect faces on it" // Precisa de tradução -#elif L==10 // tr - "Send user's photo and detect faces on it" // Çeviri lazim! -#endif - , - [ActDetStdPho] = -#if L==1 // ca - "Send student's photo and detect faces on it" // Necessita traducció -#elif L==2 // de - "Send student's photo and detect faces on it" // Need Übersetzung -#elif L==3 // en - "Send student's photo and detect faces on it" -#elif L==4 // es - "Enviar la foto de estudiante y detectar rostros en ella" -#elif L==5 // fr - "Send student's photo and detect faces on it" // Besoin de traduction -#elif L==6 // gn - "Enviar la foto de estudiante y detectar rostros en ella" // Okoteve traducción -#elif L==7 // it - "Send student's photo and detect faces on it" // Bisogno di traduzione -#elif L==8 // pl - "Send student's photo and detect faces on it" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Send student's photo and detect faces on it" // Precisa de tradução -#elif L==10 // tr - "Send student's photo and detect faces on it" // Çeviri lazim! -#endif - , - [ActDetTchPho] = -#if L==1 // ca - "Send teacher's photo and detect faces on it" // Necessita traducció -#elif L==2 // de - "Send teacher's photo and detect faces on it" // Need Übersetzung -#elif L==3 // en - "Send teacher's photo and detect faces on it" -#elif L==4 // es - "Enviar la foto de profesor y detectar rostros en ella" -#elif L==5 // fr - "Send teacher's photo and detect faces on it" // Besoin de traduction -#elif L==6 // gn - "Enviar la foto de profesor y detectar rostros en ella" // Okoteve traducción -#elif L==7 // it - "Send teacher's photo and detect faces on it" // Bisogno di traduzione -#elif L==8 // pl - "Send teacher's photo and detect faces on it" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Send teacher's photo and detect faces on it" // Precisa de tradução -#elif L==10 // tr - "Send teacher's photo and detect faces on it" // Çeviri lazim! -#endif - , - [ActChgOthPho] = -#if L==1 // ca - "Update a user's photo" // Necessita traducció -#elif L==2 // de - "Update a user's photo" // Need Übersetzung -#elif L==3 // en - "Update a user's photo" -#elif L==4 // es - "Actualizar la foto de usuario" -#elif L==5 // fr - "Update a user's photo" // Besoin de traduction -#elif L==6 // gn - "Actualizar la foto de usuario" // Okoteve traducción -#elif L==7 // it - "Update a user's photo" // Bisogno di traduzione -#elif L==8 // pl - "Update a user's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a user's photo" // Precisa de tradução -#elif L==10 // tr - "Update a user's photo" // Çeviri lazim! -#endif - , - [ActChgStdPho] = -#if L==1 // ca - "Update a student's photo" // Necessita traducció -#elif L==2 // de - "Update a student's photo" // Need Übersetzung -#elif L==3 // en - "Update a student's photo" -#elif L==4 // es - "Actualizar la foto de estudiante" -#elif L==5 // fr - "Update a student's photo" // Besoin de traduction -#elif L==6 // gn - "Actualizar la foto de estudiante" // Okoteve traducción -#elif L==7 // it - "Update a student's photo" // Bisogno di traduzione -#elif L==8 // pl - "Update a student's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a student's photo" // Precisa de tradução -#elif L==10 // tr - "Update a student's photo" // Çeviri lazim! -#endif - , - [ActChgTchPho] = -#if L==1 // ca - "Update a teacher's photo" // Necessita traducció -#elif L==2 // de - "Update a teacher's photo" // Need Übersetzung -#elif L==3 // en - "Update a teacher's photo" -#elif L==4 // es - "Actualizar la foto de profesor" -#elif L==5 // fr - "Update a teacher's photo" // Besoin de traduction -#elif L==6 // gn - "Actualizar la foto de profesor" // Okoteve traducción -#elif L==7 // it - "Update a teacher's photo" // Bisogno di traduzione -#elif L==8 // pl - "Update a teacher's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a teacher's photo" // Precisa de tradução -#elif L==10 // tr - "Update a teacher's photo" // Çeviri lazim! -#endif - , - [ActReqRemOthPho] = -#if L==1 // ca - "Request removal of user's photo" // Necessita traducció -#elif L==2 // de - "Request removal of user's photo" // Need Übersetzung -#elif L==3 // en - "Request removal of user's photo" -#elif L==4 // es - "Solicitar eliminación de foto de usuario" -#elif L==5 // fr - "Request removal of user's photo" // Besoin de traduction -#elif L==6 // gn - "Solicitar eliminación de foto de usuario" // Okoteve traducción -#elif L==7 // it - "Request removal of user's photo" // Bisogno di traduzione -#elif L==8 // pl - "Request removal of user's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request removal of user's photo" // Precisa de tradução -#elif L==10 // tr - "Request removal of user's photo" // Çeviri lazim! -#endif - , - [ActReqRemStdPho] = -#if L==1 // ca - "Request removal of student's photo" // Necessita traducció -#elif L==2 // de - "Request removal of student's photo" // Need Übersetzung -#elif L==3 // en - "Request removal of student's photo" -#elif L==4 // es - "Solicitar eliminación de foto de estudiante" -#elif L==5 // fr - "Request removal of student's photo" // Besoin de traduction -#elif L==6 // gn - "Solicitar eliminación de foto de estudiante" // Okoteve traducción -#elif L==7 // it - "Request removal of student's photo" // Bisogno di traduzione -#elif L==8 // pl - "Request removal of student's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request removal of student's photo" // Precisa de tradução -#elif L==10 // tr - "Request removal of student's photo" // Çeviri lazim! -#endif - , - [ActReqRemTchPho] = -#if L==1 // ca - "Request removal of teacher's photo" // Necessita traducció -#elif L==2 // de - "Request removal of teacher's photo" // Need Übersetzung -#elif L==3 // en - "Request removal of teacher's photo" -#elif L==4 // es - "Solicitar eliminación de foto de profesor" -#elif L==5 // fr - "Request removal of teacher's photo" // Besoin de traduction -#elif L==6 // gn - "Solicitar eliminación de foto de profesor" // Okoteve traducción -#elif L==7 // it - "Request removal of teacher's photo" // Bisogno di traduzione -#elif L==8 // pl - "Request removal of teacher's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request removal of teacher's photo" // Precisa de tradução -#elif L==10 // tr - "Request removal of teacher's photo" // Çeviri lazim! -#endif - , - [ActRemOthPho] = -#if L==1 // ca - "Remove user's photo" // Necessita traducció -#elif L==2 // de - "Remove user's photo" // Need Übersetzung -#elif L==3 // en - "Remove user's photo" -#elif L==4 // es - "Eliminar la foto de usuario" -#elif L==5 // fr - "Remove user's photo" // Besoin de traduction -#elif L==6 // gn - "Eliminar la foto de usuario" // Okoteve traducción -#elif L==7 // it - "Remove user's photo" // Bisogno di traduzione -#elif L==8 // pl - "Remove user's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove user's photo" // Precisa de tradução -#elif L==10 // tr - "Remove user's photo" // Çeviri lazim! -#endif - , - [ActRemStdPho] = -#if L==1 // ca - "Remove student's photo" // Necessita traducció -#elif L==2 // de - "Remove student's photo" // Need Übersetzung -#elif L==3 // en - "Remove student's photo" -#elif L==4 // es - "Eliminar la foto de estudiante" -#elif L==5 // fr - "Remove student's photo" // Besoin de traduction -#elif L==6 // gn - "Eliminar la foto de estudiante" // Okoteve traducción -#elif L==7 // it - "Remove student's photo" // Bisogno di traduzione -#elif L==8 // pl - "Remove student's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove student's photo" // Precisa de tradução -#elif L==10 // tr - "Remove student's photo" // Çeviri lazim! -#endif - , - [ActRemTchPho] = -#if L==1 // ca - "Remove teacher's photo" // Necessita traducció -#elif L==2 // de - "Remove teacher's photo" // Need Übersetzung -#elif L==3 // en - "Remove teacher's photo" -#elif L==4 // es - "Eliminar la foto de profesor" -#elif L==5 // fr - "Remove teacher's photo" // Besoin de traduction -#elif L==6 // gn - "Eliminar la foto de profesor" // Okoteve traducción -#elif L==7 // it - "Remove teacher's photo" // Bisogno di traduzione -#elif L==8 // pl - "Remove teacher's photo" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove teacher's photo" // Precisa de tradução -#elif L==10 // tr - "Remove teacher's photo" // Çeviri lazim! -#endif - , - [ActCreOth] = -#if L==1 // ca - "Create new guest" // Necessita traducció -#elif L==2 // de - "Create new guest" // Need Übersetzung -#elif L==3 // en - "Create new guest" -#elif L==4 // es - "Crear nuevo invitado" -#elif L==5 // fr - "Create new guest" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo invitado" // Okoteve traducción -#elif L==7 // it - "Create new guest" // Bisogno di traduzione -#elif L==8 // pl - "Create new guest" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new guest" // Precisa de tradução -#elif L==10 // tr - "Create new guest" // Çeviri lazim! -#endif - , - [ActCreStd] = -#if L==1 // ca - "Create new student" // Necessita traducció -#elif L==2 // de - "Create new student" // Need Übersetzung -#elif L==3 // en - "Create new student" -#elif L==4 // es - "Crear nuevo estudiante" -#elif L==5 // fr - "Create new student" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo estudiante" // Okoteve traducción -#elif L==7 // it - "Create new student" // Bisogno di traduzione -#elif L==8 // pl - "Create new student" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new student" // Precisa de tradução -#elif L==10 // tr - "Create new student" // Çeviri lazim! -#endif - , - [ActCreNET] = -#if L==1 // ca - "Create new non-editing teacher" // Necessita traducció -#elif L==2 // de - "Create new non-editing teacher" // Need Übersetzung -#elif L==3 // en - "Create new non-editing teacher" -#elif L==4 // es - "Crear nuevo profesor no editor" -#elif L==5 // fr - "Create new non-editing teacher" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo profesor no editor" // Okoteve traducción -#elif L==7 // it - "Create new non-editing teacher" // Bisogno di traduzione -#elif L==8 // pl - "Create new non-editing teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new non-editing teacher" // Precisa de tradução -#elif L==10 // tr - "Create new non-editing teacher" // Çeviri lazim! -#endif - , - [ActCreTch] = -#if L==1 // ca - "Create new teacher" // Necessita traducció -#elif L==2 // de - "Create new teacher" // Need Übersetzung -#elif L==3 // en - "Create new teacher" -#elif L==4 // es - "Crear nuevo profesor" -#elif L==5 // fr - "Create new teacher" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo profesor" // Okoteve traducción -#elif L==7 // it - "Create new teacher" // Bisogno di traduzione -#elif L==8 // pl - "Create new teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new teacher" // Precisa de tradução -#elif L==10 // tr - "Create new teacher" // Çeviri lazim! -#endif - , - [ActUpdOth] = -#if L==1 // ca - "Update a user's data and groups" // Necessita traducció -#elif L==2 // de - "Update a user's data and groups" // Need Übersetzung -#elif L==3 // en - "Update a user's data and groups" -#elif L==4 // es - "Actualizar los datos y grupos de usuario" -#elif L==5 // fr - "Update a user's data and groups" // Besoin de traduction -#elif L==6 // gn - "Actualizar los datos y grupos de usuario" // Okoteve traducción -#elif L==7 // it - "Update a user's data and groups" // Bisogno di traduzione -#elif L==8 // pl - "Update a user's data and groups" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a user's data and groups" // Precisa de tradução -#elif L==10 // tr - "Update a user's data and groups" // Çeviri lazim! -#endif - , - [ActUpdStd] = -#if L==1 // ca - "Update a student's data and groups" // Necessita traducció -#elif L==2 // de - "Update a student's data and groups" // Need Übersetzung -#elif L==3 // en - "Update a student's data and groups" -#elif L==4 // es - "Actualizar los datos y grupos de estudiante" -#elif L==5 // fr - "Update a student's data and groups" // Besoin de traduction -#elif L==6 // gn - "Actualizar los datos y grupos de estudiante" // Okoteve traducción -#elif L==7 // it - "Update a student's data and groups" // Bisogno di traduzione -#elif L==8 // pl - "Update a student's data and groups" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a student's data and groups" // Precisa de tradução -#elif L==10 // tr - "Update a student's data and groups" // Çeviri lazim! -#endif - , - [ActUpdNET] = -#if L==1 // ca - "Update a non-editing teacher's data and groups" // Necessita traducció -#elif L==2 // de - "Update a non-editing teacher's data and groups" // Need Übersetzung -#elif L==3 // en - "Update a non-editing teacher's data and groups" -#elif L==4 // es - "Actualizar los datos y grupos de profesor no editor" -#elif L==5 // fr - "Update a non-editing teacher's data and groups" // Besoin de traduction -#elif L==6 // gn - "Actualizar los datos y grupos de profesor no editor" // Okoteve traducción -#elif L==7 // it - "Update a non-editing teacher's data and groups" // Bisogno di traduzione -#elif L==8 // pl - "Update a non-editing teacher's data and groups" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a non-editing teacher's data and groups" // Precisa de tradução -#elif L==10 // tr - "Update a non-editing teacher's data and groups" // Çeviri lazim! -#endif - , - [ActUpdTch] = -#if L==1 // ca - "Update a teacher's data and groups" // Necessita traducció -#elif L==2 // de - "Update a teacher's data and groups" // Need Übersetzung -#elif L==3 // en - "Update a teacher's data and groups" -#elif L==4 // es - "Actualizar los datos y grupos de profesor" -#elif L==5 // fr - "Update a teacher's data and groups" // Besoin de traduction -#elif L==6 // gn - "Actualizar los datos y grupos de profesor" // Okoteve traducción -#elif L==7 // it - "Update a teacher's data and groups" // Bisogno di traduzione -#elif L==8 // pl - "Update a teacher's data and groups" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Update a teacher's data and groups" // Precisa de tradução -#elif L==10 // tr - "Update a teacher's data and groups" // Çeviri lazim! -#endif - , - [ActReqAccEnrStd] = -#if L==1 // ca - "See whether to accept or reject my enrolment as student" // Necessita traducció -#elif L==2 // de - "See whether to accept or reject my enrolment as student" // Need Übersetzung -#elif L==3 // en - "See whether to accept or reject my enrolment as student" -#elif L==4 // es - "Ver si aceptar o rechazar mi inscripción como estudiante" -#elif L==5 // fr - "See whether to accept or reject my enrolment as student" // Besoin de traduction -#elif L==6 // gn - "Ver si aceptar o rechazar mi inscripción como estudiante" // Okoteve traducción -#elif L==7 // it - "See whether to accept or reject my enrolment as student" // Bisogno di traduzione -#elif L==8 // pl - "See whether to accept or reject my enrolment as student" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See whether to accept or reject my enrolment as student" // Precisa de tradução -#elif L==10 // tr - "See whether to accept or reject my enrolment as student" // Çeviri lazim! -#endif - , - [ActReqAccEnrNET] = -#if L==1 // ca - "See whether to accept or reject my enrolment as non-editing teacher" // Necessita traducció -#elif L==2 // de - "See whether to accept or reject my enrolment as non-editing teacher" // Need Übersetzung -#elif L==3 // en - "See whether to accept or reject my enrolment as non-editing teacher" -#elif L==4 // es - "Ver si aceptar o rechazar mi inscripción como profesor no editor" -#elif L==5 // fr - "See whether to accept or reject my enrolment as non-editing teacher" // Besoin de traduction -#elif L==6 // gn - "Ver si aceptar o rechazar mi inscripción como profesor no editor" // Okoteve traducción -#elif L==7 // it - "See whether to accept or reject my enrolment as non-editing teacher" // Bisogno di traduzione -#elif L==8 // pl - "See whether to accept or reject my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See whether to accept or reject my enrolment as non-editing teacher" // Precisa de tradução -#elif L==10 // tr - "See whether to accept or reject my enrolment as non-editing teacher" // Çeviri lazim! -#endif - , - [ActReqAccEnrTch] = -#if L==1 // ca - "See whether to accept or reject my enrolment as teacher" // Necessita traducció -#elif L==2 // de - "See whether to accept or reject my enrolment as teacher" // Need Übersetzung -#elif L==3 // en - "See whether to accept or reject my enrolment as teacher" -#elif L==4 // es - "Ver si aceptar o rechazar mi inscripción como profesor" -#elif L==5 // fr - "See whether to accept or reject my enrolment as teacher" // Besoin de traduction -#elif L==6 // gn - "Ver si aceptar o rechazar mi inscripción como profesor" // Okoteve traducción -#elif L==7 // it - "See whether to accept or reject my enrolment as teacher" // Bisogno di traduzione -#elif L==8 // pl - "See whether to accept or reject my enrolment as teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See whether to accept or reject my enrolment as teacher" // Precisa de tradução -#elif L==10 // tr - "See whether to accept or reject my enrolment as teacher" // Çeviri lazim! -#endif - , - [ActAccEnrStd] = -#if L==1 // ca - "Accept my enrolment as student" // Necessita traducció -#elif L==2 // de - "Accept my enrolment as student" // Need Übersetzung -#elif L==3 // en - "Accept my enrolment as student" -#elif L==4 // es - "Aceptar mi inscripción como estudiante" -#elif L==5 // fr - "Accept my enrolment as student" // Besoin de traduction -#elif L==6 // gn - "Aceptar mi inscripción como estudiante" // Okoteve traducción -#elif L==7 // it - "Accept my enrolment as student" // Bisogno di traduzione -#elif L==8 // pl - "Accept my enrolment as student" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Accept my enrolment as student" // Precisa de tradução -#elif L==10 // tr - "Accept my enrolment as student" // Çeviri lazim! -#endif - , - [ActAccEnrNET] = -#if L==1 // ca - "Accept my enrolment as non-editing teacher" // Necessita traducció -#elif L==2 // de - "Accept my enrolment as non-editing teacher" // Need Übersetzung -#elif L==3 // en - "Accept my enrolment as non-editing teacher" -#elif L==4 // es - "Aceptar mi inscripción como profesor no editor" -#elif L==5 // fr - "Accept my enrolment as non-editing teacher" // Besoin de traduction -#elif L==6 // gn - "Aceptar mi inscripción como profesor no editor" // Okoteve traducción -#elif L==7 // it - "Accept my enrolment as non-editing teacher" // Bisogno di traduzione -#elif L==8 // pl - "Accept my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Accept my enrolment as non-editing teacher" // Precisa de tradução -#elif L==10 // tr - "Accept my enrolment as non-editing teacher" // Çeviri lazim! -#endif - , - [ActAccEnrTch] = -#if L==1 // ca - "Accept my enrolment as teacher" // Necessita traducció -#elif L==2 // de - "Accept my enrolment as teacher" // Need Übersetzung -#elif L==3 // en - "Accept my enrolment as teacher" -#elif L==4 // es - "Aceptar mi inscripción como profesor" -#elif L==5 // fr - "Accept my enrolment as teacher" // Besoin de traduction -#elif L==6 // gn - "Aceptar mi inscripción como profesor" // Okoteve traducción -#elif L==7 // it - "Accept my enrolment as teacher" // Bisogno di traduzione -#elif L==8 // pl - "Accept my enrolment as teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Accept my enrolment as teacher" // Precisa de tradução -#elif L==10 // tr - "Accept my enrolment as teacher" // Çeviri lazim! -#endif - , - [ActRemMe_Std] = -#if L==1 // ca - "Reject my enrolment as student" // Necessita traducció -#elif L==2 // de - "Reject my enrolment as student" // Need Übersetzung -#elif L==3 // en - "Reject my enrolment as student" -#elif L==4 // es - "Rechazar mi inscripción como estudiante" -#elif L==5 // fr - "Reject my enrolment as student" // Besoin de traduction -#elif L==6 // gn - "Rechazar mi inscripción como estudiante" // Okoteve traducción -#elif L==7 // it - "Reject my enrolment as student" // Bisogno di traduzione -#elif L==8 // pl - "Reject my enrolment as student" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Reject my enrolment as student" // Precisa de tradução -#elif L==10 // tr - "Reject my enrolment as student" // Çeviri lazim! -#endif - , - [ActRemMe_NET] = -#if L==1 // ca - "Reject my enrolment as non-editing teacher" // Necessita traducció -#elif L==2 // de - "Reject my enrolment as non-editing teacher" // Need Übersetzung -#elif L==3 // en - "Reject my enrolment as non-editing teacher" -#elif L==4 // es - "Rechazar mi inscripción como profesor no editor" -#elif L==5 // fr - "Reject my enrolment as non-editing teacher" // Besoin de traduction -#elif L==6 // gn - "Rechazar mi inscripción como profesor no editor" // Okoteve traducción -#elif L==7 // it - "Reject my enrolment as non-editing teacher" // Bisogno di traduzione -#elif L==8 // pl - "Reject my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Reject my enrolment as non-editing teacher" // Precisa de tradução -#elif L==10 // tr - "Reject my enrolment as non-editing teacher" // Çeviri lazim! -#endif - , - [ActRemMe_Tch] = -#if L==1 // ca - "Reject my enrolment as teacher" // Necessita traducció -#elif L==2 // de - "Reject my enrolment as teacher" // Need Übersetzung -#elif L==3 // en - "Reject my enrolment as teacher" -#elif L==4 // es - "Rechazar mi inscripción como profesor" -#elif L==5 // fr - "Reject my enrolment as teacher" // Besoin de traduction -#elif L==6 // gn - "Rechazar mi inscripción como profesor" // Okoteve traducción -#elif L==7 // it - "Reject my enrolment as teacher" // Bisogno di traduzione -#elif L==8 // pl - "Reject my enrolment as teacher" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Reject my enrolment as teacher" // Precisa de tradução -#elif L==10 // tr - "Reject my enrolment as teacher" // Çeviri lazim! -#endif - , - [ActNewAdmIns] = -#if L==1 // ca - "Register an administrador in an institution" // Necessita traducció -#elif L==2 // de - "Register an administrador in an institution" // Need Übersetzung -#elif L==3 // en - "Register an administrador in an institution" -#elif L==4 // es - "Inscribir un administrador en una institución" -#elif L==5 // fr - "Register an administrador in an institution" // Besoin de traduction -#elif L==6 // gn - "Inscribir un administrador en una institución" // Okoteve traducción -#elif L==7 // it - "Register an administrador in an institution" // Bisogno di traduzione -#elif L==8 // pl - "Register an administrador in an institution" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Register an administrador in an institution" // Precisa de tradução -#elif L==10 // tr - "Register an administrador in an institution" // Çeviri lazim! -#endif - , - [ActRemAdmIns] = -#if L==1 // ca - "Remove administrador from an institution" // Necessita traducció -#elif L==2 // de - "Remove administrador from an institution" // Need Übersetzung -#elif L==3 // en - "Remove administrador from an institution" -#elif L==4 // es - "Eliminar administrador de institución" -#elif L==5 // fr - "Remove administrador from an institution" // Besoin de traduction -#elif L==6 // gn - "Eliminar administrador de institución" // Okoteve traducción -#elif L==7 // it - "Remove administrador from an institution" // Bisogno di traduzione -#elif L==8 // pl - "Remove administrador from an institution" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove administrador from an institution" // Precisa de tradução -#elif L==10 // tr - "Remove administrador from an institution" // Çeviri lazim! -#endif - , - [ActNewAdmCtr] = -#if L==1 // ca - "Register an administrador in a center" // Necessita traducció -#elif L==2 // de - "Register an administrador in a center" // Need Übersetzung -#elif L==3 // en - "Register an administrador in a center" -#elif L==4 // es - "Inscribir un administrador en un centro" -#elif L==5 // fr - "Register an administrador in a center" // Besoin de traduction -#elif L==6 // gn - "Inscribir un administrador en un centro" // Okoteve traducción -#elif L==7 // it - "Register an administrador in a center" // Bisogno di traduzione -#elif L==8 // pl - "Register an administrador in a center" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Register an administrador in a center" // Precisa de tradução -#elif L==10 // tr - "Register an administrador in a center" // Çeviri lazim! -#endif - , - [ActRemAdmCtr] = -#if L==1 // ca - "Remove administrador from a center" // Necessita traducció -#elif L==2 // de - "Remove administrador from a center" // Need Übersetzung -#elif L==3 // en - "Remove administrador from a center" -#elif L==4 // es - "Eliminar administrador de centro" -#elif L==5 // fr - "Remove administrador from a center" // Besoin de traduction -#elif L==6 // gn - "Eliminar administrador de centro" // Okoteve traducción -#elif L==7 // it - "Remove administrador from a center" // Bisogno di traduzione -#elif L==8 // pl - "Remove administrador from a center" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove administrador from a center" // Precisa de tradução -#elif L==10 // tr - "Remove administrador from a center" // Çeviri lazim! -#endif - , - [ActNewAdmDeg] = -#if L==1 // ca - "Register an administrador in a degree" // Necessita traducció -#elif L==2 // de - "Register an administrador in a degree" // Need Übersetzung -#elif L==3 // en - "Register an administrador in a degree" -#elif L==4 // es - "Inscribir un administrador en una titulación" -#elif L==5 // fr - "Register an administrador in a degree" // Besoin de traduction -#elif L==6 // gn - "Inscribir un administrador en una titulación" // Okoteve traducción -#elif L==7 // it - "Register an administrador in a degree" // Bisogno di traduzione -#elif L==8 // pl - "Register an administrador in a degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Register an administrador in a degree" // Precisa de tradução -#elif L==10 // tr - "Register an administrador in a degree" // Çeviri lazim! -#endif - , - [ActRemAdmDeg] = -#if L==1 // ca - "Remove administrador from a degree" // Necessita traducció -#elif L==2 // de - "Remove administrador from a degree" // Need Übersetzung -#elif L==3 // en - "Remove administrador from a degree" -#elif L==4 // es - "Eliminar administrador en una titulación" -#elif L==5 // fr - "Remove administrador from a degree" // Besoin de traduction -#elif L==6 // gn - "Eliminar administrador en una titulación" // Okoteve traducción -#elif L==7 // it - "Remove administrador from a degree" // Bisogno di traduzione -#elif L==8 // pl - "Remove administrador from a degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove administrador from a degree" // Precisa de tradução -#elif L==10 // tr - "Remove administrador from a degree" // Çeviri lazim! -#endif - , - [ActRcvFrmEnrSevStd] = -#if L==1 // ca - "Register/remove several students in/from a course" // Necessita traducció -#elif L==2 // de - "Register/remove several students in/from a course" // Need Übersetzung -#elif L==3 // en - "Register/remove several students in/from a course" -#elif L==4 // es - "Inscribir/eliminar varios estudiantes en/de asignatura" -#elif L==5 // fr - "Register/remove several students in/from a course" // Besoin de traduction -#elif L==6 // gn - "Inscribir/eliminar varios estudiantes en/de asignatura" // Okoteve traducción -#elif L==7 // it - "Register/remove several students in/from a course" // Bisogno di traduzione -#elif L==8 // pl - "Register/remove several students in/from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Register/remove several students in/from a course" // Precisa de tradução -#elif L==10 // tr - "Register/remove several students in/from a course" // Çeviri lazim! -#endif - , - [ActRcvFrmEnrSevNET] = -#if L==1 // ca - "Register/remove several non-editing teachers in/from a course" // Necessita traducció -#elif L==2 // de - "Register/remove several non-editing teachers in/from a course" // Need Übersetzung -#elif L==3 // en - "Register/remove several non-editing teachers in/from a course" -#elif L==4 // es - "Inscribir/eliminar varios profesores no editores en/de asignatura" -#elif L==5 // fr - "Register/remove several non-editing teachers in/from a course" // Besoin de traduction -#elif L==6 // gn - "Inscribir/eliminar varios profesores no editores en/de asignatura" // Okoteve traducción -#elif L==7 // it - "Register/remove several non-editing teachers in/from a course" // Bisogno di traduzione -#elif L==8 // pl - "Register/remove several non-editing teachers in/from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Register/remove several non-editing teachers in/from a course" // Precisa de tradução -#elif L==10 // tr - "Register/remove several non-editing teachers in/from a course" // Çeviri lazim! -#endif - , - [ActRcvFrmEnrSevTch] = -#if L==1 // ca - "Register/remove several teachers in/from a course" // Necessita traducció -#elif L==2 // de - "Register/remove several teachers in/from a course" // Need Übersetzung -#elif L==3 // en - "Register/remove several teachers in/from a course" -#elif L==4 // es - "Inscribir/eliminar varios profesores en/de asignatura" -#elif L==5 // fr - "Register/remove several teachers in/from a course" // Besoin de traduction -#elif L==6 // gn - "Inscribir/eliminar varios profesores en/de asignatura" // Okoteve traducción -#elif L==7 // it - "Register/remove several teachers in/from a course" // Bisogno di traduzione -#elif L==8 // pl - "Register/remove several teachers in/from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Register/remove several teachers in/from a course" // Precisa de tradução -#elif L==10 // tr - "Register/remove several teachers in/from a course" // Çeviri lazim! -#endif - , - [ActCnfID_Oth] = -#if L==1 // ca - "Confirm a user's ID" // Necessita traducció -#elif L==2 // de - "Confirm a user's ID" // Need Übersetzung -#elif L==3 // en - "Confirm a user's ID" -#elif L==4 // es - "Confirmar el ID de usuario" -#elif L==5 // fr - "Confirm a user's ID" // Besoin de traduction -#elif L==6 // gn - "Confirmar el ID de usuario" // Okoteve traducción -#elif L==7 // it - "Confirm a user's ID" // Bisogno di traduzione -#elif L==8 // pl - "Confirm a user's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Confirm a user's ID" // Precisa de tradução -#elif L==10 // tr - "Confirm a user's ID" // Çeviri lazim! -#endif - , - [ActCnfID_Std] = -#if L==1 // ca - "Confirm a student's ID" // Necessita traducció -#elif L==2 // de - "Confirm a student's ID" // Need Übersetzung -#elif L==3 // en - "Confirm a student's ID" -#elif L==4 // es - "Confirmar el ID de estudiante" -#elif L==5 // fr - "Confirm a student's ID" // Besoin de traduction -#elif L==6 // gn - "Confirmar el ID de estudiante" // Okoteve traducción -#elif L==7 // it - "Confirm a student's ID" // Bisogno di traduzione -#elif L==8 // pl - "Confirm a student's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Confirm a student's ID" // Precisa de tradução -#elif L==10 // tr - "Confirm a student's ID" // Çeviri lazim! -#endif - , - [ActCnfID_Tch] = -#if L==1 // ca - "Confirm a teacher's ID" // Necessita traducció -#elif L==2 // de - "Confirm a teacher's ID" // Need Übersetzung -#elif L==3 // en - "Confirm a teacher's ID" -#elif L==4 // es - "Confirmar el ID de profesor" -#elif L==5 // fr - "Confirm a teacher's ID" // Besoin de traduction -#elif L==6 // gn - "Confirmar el ID de profesor" // Okoteve traducción -#elif L==7 // it - "Confirm a teacher's ID" // Bisogno di traduzione -#elif L==8 // pl - "Confirm a teacher's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Confirm a teacher's ID" // Precisa de tradução -#elif L==10 // tr - "Confirm a teacher's ID" // Çeviri lazim! -#endif - , - [ActFrmAccOth] = -#if L==1 // ca - "Forms to the change a user's account" // Necessita traducció -#elif L==2 // de - "Forms to the change a user's account" // Need Übersetzung -#elif L==3 // en - "Forms to the change a user's account" -#elif L==4 // es - "Formularios para cambiar la cuenta de usuario" -#elif L==5 // fr - "Forms to the change a user's account" // Besoin de traduction -#elif L==6 // gn - "Formularios para cambiar la cuenta de usuario" // Okoteve traducción -#elif L==7 // it - "Forms to the change a user's account" // Bisogno di traduzione -#elif L==8 // pl - "Forms to the change a user's account" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Forms to the change a user's account" // Precisa de tradução -#elif L==10 // tr - "Forms to the change a user's account" // Çeviri lazim! -#endif - , - [ActFrmAccStd] = -#if L==1 // ca - "Forms to the change a student's account" // Necessita traducció -#elif L==2 // de - "Forms to the change a student's account" // Need Übersetzung -#elif L==3 // en - "Forms to the change a student's account" -#elif L==4 // es - "Formularios para cambiar la cuenta de estudiante" -#elif L==5 // fr - "Forms to the change a student's account" // Besoin de traduction -#elif L==6 // gn - "Formularios para cambiar la cuenta de estudiante" // Okoteve traducción -#elif L==7 // it - "Forms to the change a student's account" // Bisogno di traduzione -#elif L==8 // pl - "Forms to the change a student's account" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Forms to the change a student's account" // Precisa de tradução -#elif L==10 // tr - "Forms to the change a student's account" // Çeviri lazim! -#endif - , - [ActFrmAccTch] = -#if L==1 // ca - "Forms to the change a teacher's account" // Necessita traducció -#elif L==2 // de - "Forms to the change a teacher's account" // Need Übersetzung -#elif L==3 // en - "Forms to the change a teacher's account" -#elif L==4 // es - "Formularios para cambiar la cuenta de profesor" -#elif L==5 // fr - "Forms to the change a teacher's account" // Besoin de traduction -#elif L==6 // gn - "Formularios para cambiar la cuenta de profesor" // Okoteve traducción -#elif L==7 // it - "Forms to the change a teacher's account" // Bisogno di traduzione -#elif L==8 // pl - "Forms to the change a teacher's account" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Forms to the change a teacher's account" // Precisa de tradução -#elif L==10 // tr - "Forms to the change a teacher's account" // Çeviri lazim! -#endif - , - [ActRemNicOth] = -#if L==1 // ca - "Remove user's nickname" // Necessita traducció -#elif L==2 // de - "Remove user's nickname" // Need Übersetzung -#elif L==3 // en - "Remove user's nickname" -#elif L==4 // es - "Eliminar apodo de usuario" -#elif L==5 // fr - "Remove user's nickname" // Besoin de traduction -#elif L==6 // gn - "Eliminar apodo de usuario" // Okoteve traducción -#elif L==7 // it - "Remove user's nickname" // Bisogno di traduzione -#elif L==8 // pl - "Remove user's nickname" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove user's nickname" // Precisa de tradução -#elif L==10 // tr - "Remove user's nickname" // Çeviri lazim! -#endif - , - [ActRemNicStd] = -#if L==1 // ca - "Remove student's nickname" // Necessita traducció -#elif L==2 // de - "Remove student's nickname" // Need Übersetzung -#elif L==3 // en - "Remove student's nickname" -#elif L==4 // es - "Eliminar apodo de estudiante" -#elif L==5 // fr - "Remove student's nickname" // Besoin de traduction -#elif L==6 // gn - "Eliminar apodo de estudiante" // Okoteve traducción -#elif L==7 // it - "Remove student's nickname" // Bisogno di traduzione -#elif L==8 // pl - "Remove student's nickname" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove student's nickname" // Precisa de tradução -#elif L==10 // tr - "Remove student's nickname" // Çeviri lazim! -#endif - , - [ActRemNicTch] = -#if L==1 // ca - "Remove teacher's nickname" // Necessita traducció -#elif L==2 // de - "Remove teacher's nickname" // Need Übersetzung -#elif L==3 // en - "Remove teacher's nickname" -#elif L==4 // es - "Eliminar apodo de profesor" -#elif L==5 // fr - "Remove teacher's nickname" // Besoin de traduction -#elif L==6 // gn - "Eliminar apodo de profesor" // Okoteve traducción -#elif L==7 // it - "Remove teacher's nickname" // Bisogno di traduzione -#elif L==8 // pl - "Remove teacher's nickname" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove teacher's nickname" // Precisa de tradução -#elif L==10 // tr - "Remove teacher's nickname" // Çeviri lazim! -#endif - , - [ActChgNicOth] = -#if L==1 // ca - "Change user's nickname" // Necessita traducció -#elif L==2 // de - "Change user's nickname" // Need Übersetzung -#elif L==3 // en - "Change user's nickname" -#elif L==4 // es - "Cambiar apodo de usuario" -#elif L==5 // fr - "Change user's nickname" // Besoin de traduction -#elif L==6 // gn - "Cambiar apodo de usuario" // Okoteve traducción -#elif L==7 // it - "Change user's nickname" // Bisogno di traduzione -#elif L==8 // pl - "Change user's nickname" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change user's nickname" // Precisa de tradução -#elif L==10 // tr - "Change user's nickname" // Çeviri lazim! -#endif - , - [ActChgNicStd] = -#if L==1 // ca - "Change student's nickname" // Necessita traducció -#elif L==2 // de - "Change student's nickname" // Need Übersetzung -#elif L==3 // en - "Change student's nickname" -#elif L==4 // es - "Cambiar apodo de estudiante" -#elif L==5 // fr - "Change student's nickname" // Besoin de traduction -#elif L==6 // gn - "Cambiar apodo de estudiante" // Okoteve traducción -#elif L==7 // it - "Change student's nickname" // Bisogno di traduzione -#elif L==8 // pl - "Change student's nickname" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change student's nickname" // Precisa de tradução -#elif L==10 // tr - "Change student's nickname" // Çeviri lazim! -#endif - , - [ActChgNicTch] = -#if L==1 // ca - "Change teacher's nickname" // Necessita traducció -#elif L==2 // de - "Change teacher's nickname" // Need Übersetzung -#elif L==3 // en - "Change teacher's nickname" -#elif L==4 // es - "Cambiar apodo de profesor" -#elif L==5 // fr - "Change teacher's nickname" // Besoin de traduction -#elif L==6 // gn - "Cambiar apodo de profesor" // Okoteve traducción -#elif L==7 // it - "Change teacher's nickname" // Bisogno di traduzione -#elif L==8 // pl - "Change teacher's nickname" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change teacher's nickname" // Precisa de tradução -#elif L==10 // tr - "Change teacher's nickname" // Çeviri lazim! -#endif - , - [ActRemID_Oth] = -#if L==1 // ca - "Remove user's ID" // Necessita traducció -#elif L==2 // de - "Remove user's ID" // Need Übersetzung -#elif L==3 // en - "Remove user's ID" -#elif L==4 // es - "Eliminar ID de usuario" -#elif L==5 // fr - "Remove user's ID" // Besoin de traduction -#elif L==6 // gn - "Eliminar ID de usuario" // Okoteve traducción -#elif L==7 // it - "Remove user's ID" // Bisogno di traduzione -#elif L==8 // pl - "Remove user's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove user's ID" // Precisa de tradução -#elif L==10 // tr - "Remove user's ID" // Çeviri lazim! -#endif - , - [ActRemID_Std] = -#if L==1 // ca - "Remove student's ID" // Necessita traducció -#elif L==2 // de - "Remove student's ID" // Need Übersetzung -#elif L==3 // en - "Remove student's ID" -#elif L==4 // es - "Eliminar ID de estudiante" -#elif L==5 // fr - "Remove student's ID" // Besoin de traduction -#elif L==6 // gn - "Eliminar ID de estudiante" // Okoteve traducción -#elif L==7 // it - "Remove student's ID" // Bisogno di traduzione -#elif L==8 // pl - "Remove student's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove student's ID" // Precisa de tradução -#elif L==10 // tr - "Remove student's ID" // Çeviri lazim! -#endif - , - [ActRemID_Tch] = -#if L==1 // ca - "Remove teacher's ID" // Necessita traducció -#elif L==2 // de - "Remove teacher's ID" // Need Übersetzung -#elif L==3 // en - "Remove teacher's ID" -#elif L==4 // es - "Eliminar ID de profesor" -#elif L==5 // fr - "Remove teacher's ID" // Besoin de traduction -#elif L==6 // gn - "Eliminar ID de profesor" // Okoteve traducción -#elif L==7 // it - "Remove teacher's ID" // Bisogno di traduzione -#elif L==8 // pl - "Remove teacher's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove teacher's ID" // Precisa de tradução -#elif L==10 // tr - "Remove teacher's ID" // Çeviri lazim! -#endif - , - [ActChgID_Oth] = -#if L==1 // ca - "Create new user's ID" // Necessita traducció -#elif L==2 // de - "Create new user's ID" // Need Übersetzung -#elif L==3 // en - "Create new user's ID" -#elif L==4 // es - "Crear nuevo ID de usuario" -#elif L==5 // fr - "Create new user's ID" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo ID de usuario" // Okoteve traducción -#elif L==7 // it - "Create new user's ID" // Bisogno di traduzione -#elif L==8 // pl - "Create new user's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new user's ID" // Precisa de tradução -#elif L==10 // tr - "Create new user's ID" // Çeviri lazim! -#endif - , - [ActChgID_Std] = -#if L==1 // ca - "Create new student's ID" // Necessita traducció -#elif L==2 // de - "Create new student's ID" // Need Übersetzung -#elif L==3 // en - "Create new student's ID" -#elif L==4 // es - "Crear nuevo ID de estudiante" -#elif L==5 // fr - "Create new student's ID" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo ID de estudiante" // Okoteve traducción -#elif L==7 // it - "Create new student's ID" // Bisogno di traduzione -#elif L==8 // pl - "Create new student's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new student's ID" // Precisa de tradução -#elif L==10 // tr - "Create new student's ID" // Çeviri lazim! -#endif - , - [ActChgID_Tch] = -#if L==1 // ca - "Create new teacher's ID" // Necessita traducció -#elif L==2 // de - "Create new teacher's ID" // Need Übersetzung -#elif L==3 // en - "Create new teacher's ID" -#elif L==4 // es - "Crear nuevo ID de profesor" -#elif L==5 // fr - "Create new teacher's ID" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo ID de profesor" // Okoteve traducción -#elif L==7 // it - "Create new teacher's ID" // Bisogno di traduzione -#elif L==8 // pl - "Create new teacher's ID" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new teacher's ID" // Precisa de tradução -#elif L==10 // tr - "Create new teacher's ID" // Çeviri lazim! -#endif - , - [ActChgPwdOth] = -#if L==1 // ca - "Change user's password" // Necessita traducció -#elif L==2 // de - "Change user's password" // Need Übersetzung -#elif L==3 // en - "Change user's password" -#elif L==4 // es - "Cambiar contraseña de usuario" -#elif L==5 // fr - "Change user's password" // Besoin de traduction -#elif L==6 // gn - "Cambiar contraseña de usuario" // Okoteve traducción -#elif L==7 // it - "Change user's password" // Bisogno di traduzione -#elif L==8 // pl - "Change user's password" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change user's password" // Precisa de tradução -#elif L==10 // tr - "Change user's password" // Çeviri lazim! -#endif - , - [ActChgPwdStd] = -#if L==1 // ca - "Change student's password" // Necessita traducció -#elif L==2 // de - "Change student's password" // Need Übersetzung -#elif L==3 // en - "Change student's password" -#elif L==4 // es - "Cambiar contraseña de estudiante" -#elif L==5 // fr - "Change student's password" // Besoin de traduction -#elif L==6 // gn - "Cambiar contraseña de estudiante" // Okoteve traducción -#elif L==7 // it - "Change student's password" // Bisogno di traduzione -#elif L==8 // pl - "Change student's password" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change student's password" // Precisa de tradução -#elif L==10 // tr - "Change student's password" // Çeviri lazim! -#endif - , - [ActChgPwdTch] = -#if L==1 // ca - "Change teacher's password" // Necessita traducció -#elif L==2 // de - "Change teacher's password" // Need Übersetzung -#elif L==3 // en - "Change teacher's password" -#elif L==4 // es - "Cambiar contraseña de profesor" -#elif L==5 // fr - "Change teacher's password" // Besoin de traduction -#elif L==6 // gn - "Cambiar contraseña de profesor" // Okoteve traducción -#elif L==7 // it - "Change teacher's password" // Bisogno di traduzione -#elif L==8 // pl - "Change teacher's password" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change teacher's password" // Precisa de tradução -#elif L==10 // tr - "Change teacher's password" // Çeviri lazim! -#endif - , - [ActRemMaiOth] = -#if L==1 // ca - "Remove user's email" // Necessita traducció -#elif L==2 // de - "Remove user's email" // Need Übersetzung -#elif L==3 // en - "Remove user's email" -#elif L==4 // es - "Eliminar correo electrónico de usuario" -#elif L==5 // fr - "Remove user's email" // Besoin de traduction -#elif L==6 // gn - "Eliminar correo electrónico de usuario" // Okoteve traducción -#elif L==7 // it - "Remove user's email" // Bisogno di traduzione -#elif L==8 // pl - "Remove user's email" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove user's email" // Precisa de tradução -#elif L==10 // tr - "Remove user's email" // Çeviri lazim! -#endif - , - [ActRemMaiStd] = -#if L==1 // ca - "Remove student's email" // Necessita traducció -#elif L==2 // de - "Remove student's email" // Need Übersetzung -#elif L==3 // en - "Remove student's email" -#elif L==4 // es - "Eliminar correo electrónico de estudiante" -#elif L==5 // fr - "Remove student's email" // Besoin de traduction -#elif L==6 // gn - "Eliminar correo electrónico de estudiante" // Okoteve traducción -#elif L==7 // it - "Remove student's email" // Bisogno di traduzione -#elif L==8 // pl - "Remove student's email" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove student's email" // Precisa de tradução -#elif L==10 // tr - "Remove student's email" // Çeviri lazim! -#endif - , - [ActRemMaiTch] = -#if L==1 // ca - "Remove teacher's email" // Necessita traducció -#elif L==2 // de - "Remove teacher's email" // Need Übersetzung -#elif L==3 // en - "Remove teacher's email" -#elif L==4 // es - "Eliminar correo electrónico de profesor" -#elif L==5 // fr - "Remove teacher's email" // Besoin de traduction -#elif L==6 // gn - "Eliminar correo electrónico de profesor" // Okoteve traducción -#elif L==7 // it - "Remove teacher's email" // Bisogno di traduzione -#elif L==8 // pl - "Remove teacher's email" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove teacher's email" // Precisa de tradução -#elif L==10 // tr - "Remove teacher's email" // Çeviri lazim! -#endif - , - [ActChgMaiOth] = -#if L==1 // ca - "Create new user's email" // Necessita traducció -#elif L==2 // de - "Create new user's email" // Need Übersetzung -#elif L==3 // en - "Create new user's email" -#elif L==4 // es - "Crear nuevo correo electrónico de usuario" -#elif L==5 // fr - "Create new user's email" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo correo electrónico de usuario" // Okoteve traducción -#elif L==7 // it - "Create new user's email" // Bisogno di traduzione -#elif L==8 // pl - "Create new user's email" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new user's email" // Precisa de tradução -#elif L==10 // tr - "Create new user's email" // Çeviri lazim! -#endif - , - [ActChgMaiStd] = -#if L==1 // ca - "Create new student's email" // Necessita traducció -#elif L==2 // de - "Create new student's email" // Need Übersetzung -#elif L==3 // en - "Create new student's email" -#elif L==4 // es - "Crear nuevo correo electrónico de estudiante" -#elif L==5 // fr - "Create new student's email" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo correo electrónico de estudiante" // Okoteve traducción -#elif L==7 // it - "Create new student's email" // Bisogno di traduzione -#elif L==8 // pl - "Create new student's email" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new student's email" // Precisa de tradução -#elif L==10 // tr - "Create new student's email" // Çeviri lazim! -#endif - , - [ActChgMaiTch] = -#if L==1 // ca - "Create new teacher's email" // Necessita traducció -#elif L==2 // de - "Create new teacher's email" // Need Übersetzung -#elif L==3 // en - "Create new teacher's email" -#elif L==4 // es - "Crear nuevo correo electrónico de profesor" -#elif L==5 // fr - "Create new teacher's email" // Besoin de traduction -#elif L==6 // gn - "Crear nuevo correo electrónico de profesor" // Okoteve traducción -#elif L==7 // it - "Create new teacher's email" // Bisogno di traduzione -#elif L==8 // pl - "Create new teacher's email" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Create new teacher's email" // Precisa de tradução -#elif L==10 // tr - "Create new teacher's email" // Çeviri lazim! -#endif - , - [ActRemStdCrs] = -#if L==1 // ca - "Remove student from a course" // Necessita traducció -#elif L==2 // de - "Remove student from a course" // Need Übersetzung -#elif L==3 // en - "Remove student from a course" -#elif L==4 // es - "Eliminar estudiante de asignatura" -#elif L==5 // fr - "Remove student from a course" // Besoin de traduction -#elif L==6 // gn - "Eliminar estudiante de asignatura" // Okoteve traducción -#elif L==7 // it - "Remove student from a course" // Bisogno di traduzione -#elif L==8 // pl - "Remove student from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove student from a course" // Precisa de tradução -#elif L==10 // tr - "Remove student from a course" // Çeviri lazim! -#endif - , - [ActRemNETCrs] = -#if L==1 // ca - "Remove non-editing teacher from a course" // Necessita traducció -#elif L==2 // de - "Remove non-editing teacher from a course" // Need Übersetzung -#elif L==3 // en - "Remove non-editing teacher from a course" -#elif L==4 // es - "Eliminar profesor no editor de asignatura" -#elif L==5 // fr - "Remove non-editing teacher from a course" // Besoin de traduction -#elif L==6 // gn - "Eliminar profesor no editor de asignatura" // Okoteve traducción -#elif L==7 // it - "Remove non-editing teacher from a course" // Bisogno di traduzione -#elif L==8 // pl - "Remove non-editing teacher from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove non-editing teacher from a course" // Precisa de tradução -#elif L==10 // tr - "Remove non-editing teacher from a course" // Çeviri lazim! -#endif - , - [ActRemTchCrs] = -#if L==1 // ca - "Remove teacher from a course" // Necessita traducció -#elif L==2 // de - "Remove teacher from a course" // Need Übersetzung -#elif L==3 // en - "Remove teacher from a course" -#elif L==4 // es - "Eliminar profesor de asignatura" -#elif L==5 // fr - "Remove teacher from a course" // Besoin de traduction -#elif L==6 // gn - "Eliminar profesor de asignatura" // Okoteve traducción -#elif L==7 // it - "Remove teacher from a course" // Bisogno di traduzione -#elif L==8 // pl - "Remove teacher from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove teacher from a course" // Precisa de tradução -#elif L==10 // tr - "Remove teacher from a course" // Çeviri lazim! -#endif - , - [ActRemUsrGbl] = -#if L==1 // ca - "Eliminate completely a user from the platform" // Necessita traducció -#elif L==2 // de - "Eliminate completely a user from the platform" // Need Übersetzung -#elif L==3 // en - "Eliminate completely a user from the platform" -#elif L==4 // es - "Eliminar usuario completamente de la plataforma" -#elif L==5 // fr - "Eliminate completely a user from the platform" // Besoin de traduction -#elif L==6 // gn - "Eliminar usuario completamente de la plataforma" // Okoteve traducción -#elif L==7 // it - "Eliminate completely a user from the platform" // Bisogno di traduzione -#elif L==8 // pl - "Eliminate completely a user from the platform" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Eliminate completely a user from the platform" // Precisa de tradução -#elif L==10 // tr - "Eliminate completely a user from the platform" // Çeviri lazim! -#endif - , - [ActReqRemAllStdCrs] = -#if L==1 // ca - "Request removal of all students from a course" // Necessita traducció -#elif L==2 // de - "Request removal of all students from a course" // Need Übersetzung -#elif L==3 // en - "Request removal of all students from a course" -#elif L==4 // es - "Solicitar eliminación de todos los estudiantes de asignatura" -#elif L==5 // fr - "Request removal of all students from a course" // Besoin de traduction -#elif L==6 // gn - "Solicitar eliminación de todos los estudiantes de asignatura" // Okoteve traducción -#elif L==7 // it - "Request removal of all students from a course" // Bisogno di traduzione -#elif L==8 // pl - "Request removal of all students from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request removal of all students from a course" // Precisa de tradução -#elif L==10 // tr - "Request removal of all students from a course" // Çeviri lazim! -#endif - , - [ActRemAllStdCrs] = -#if L==1 // ca - "Remove all students from a course" // Necessita traducció -#elif L==2 // de - "Remove all students from a course" // Need Übersetzung -#elif L==3 // en - "Remove all students from a course" -#elif L==4 // es - "Eliminar todos los estudiantes de asignatura" -#elif L==5 // fr - "Remove all students from a course" // Besoin de traduction -#elif L==6 // gn - "Eliminar todos los estudiantes de asignatura" // Okoteve traducción -#elif L==7 // it - "Remove all students from a course" // Bisogno di traduzione -#elif L==8 // pl - "Remove all students from a course" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove all students from a course" // Precisa de tradução -#elif L==10 // tr - "Remove all students from a course" // Çeviri lazim! -#endif - , - [ActReqRemOldUsr] = -#if L==1 // ca - "Request complete elimination of old users" // Necessita traducció -#elif L==2 // de - "Request complete elimination of old users" // Need Übersetzung -#elif L==3 // en - "Request complete elimination of old users" -#elif L==4 // es - "Solicitar eliminación completa de usuarios antiguos" -#elif L==5 // fr - "Request complete elimination of old users" // Besoin de traduction -#elif L==6 // gn - "Solicitar eliminación completa de usuarios antiguos" // Okoteve traducción -#elif L==7 // it - "Request complete elimination of old users" // Bisogno di traduzione -#elif L==8 // pl - "Request complete elimination of old users" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request complete elimination of old users" // Precisa de tradução -#elif L==10 // tr - "Request complete elimination of old users" // Çeviri lazim! -#endif - , - [ActRemOldUsr] = -#if L==1 // ca - "Eliminate completely old users" // Necessita traducció -#elif L==2 // de - "Eliminate completely old users" // Need Übersetzung -#elif L==3 // en - "Eliminate completely old users" -#elif L==4 // es - "Eliminar completamente usuarios antiguos" -#elif L==5 // fr - "Eliminate completely old users" // Besoin de traduction -#elif L==6 // gn - "Eliminar completamente usuarios antiguos" // Okoteve traducción -#elif L==7 // it - "Eliminate completely old users" // Bisogno di traduzione -#elif L==8 // pl - "Eliminate completely old users" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Eliminate completely old users" // Precisa de tradução -#elif L==10 // tr - "Eliminate completely old users" // Çeviri lazim! -#endif - , - [ActLstDupUsr] = -#if L==1 // ca - "List possible duplicate users" // Necessita traducció -#elif L==2 // de - "List possible duplicate users" // Need Übersetzung -#elif L==3 // en - "List possible duplicate users" -#elif L==4 // es - "Listar posibles usuarios duplicados" -#elif L==5 // fr - "List possible duplicate users" // Besoin de traduction -#elif L==6 // gn - "Listar posibles usuarios duplicados" // Okoteve traducción -#elif L==7 // it - "List possible duplicate users" // Bisogno di traduzione -#elif L==8 // pl - "List possible duplicate users" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List possible duplicate users" // Precisa de tradução -#elif L==10 // tr - "List possible duplicate users" // Çeviri lazim! -#endif - , - [ActLstSimUsr] = -#if L==1 // ca - "List users similar to a given one (possible duplicates)" // Necessita traducció -#elif L==2 // de - "List users similar to a given one (possible duplicates)" // Need Übersetzung -#elif L==3 // en - "List users similar to a given one (possible duplicates)" -#elif L==4 // es - "Listar usuarios similares a uno dado (posibles duplicados)" -#elif L==5 // fr - "List users similar to a given one (possible duplicates)" // Besoin de traduction -#elif L==6 // gn - "Listar usuarios similares a uno dado (posibles duplicados)" // Okoteve traducción -#elif L==7 // it - "List users similar to a given one (possible duplicates)" // Bisogno di traduzione -#elif L==8 // pl - "List users similar to a given one (possible duplicates)" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "List users similar to a given one (possible duplicates)" // Precisa de tradução -#elif L==10 // tr - "List users similar to a given one (possible duplicates)" // Çeviri lazim! -#endif - , - [ActRemDupUsr] = -#if L==1 // ca - "Remove user from a list of possible duplicate users" // Necessita traducció -#elif L==2 // de - "Remove user from a list of possible duplicate users" // Need Übersetzung -#elif L==3 // en - "Remove user from a list of possible duplicate users" -#elif L==4 // es - "Eliminar a un usuario de una lista de posibles usuarios duplicados" -#elif L==5 // fr - "Remove user from a list of possible duplicate users" // Besoin de traduction -#elif L==6 // gn - "Eliminar a un usuario de una lista de posibles usuarios duplicados" // Okoteve traducción -#elif L==7 // it - "Remove user from a list of possible duplicate users" // Bisogno di traduzione -#elif L==8 // pl - "Remove user from a list of possible duplicate users" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Remove user from a list of possible duplicate users" // Precisa de tradução -#elif L==10 // tr - "Remove user from a list of possible duplicate users" // Çeviri lazim! -#endif - , - [ActReqFolSevStd] = -#if L==1 // ca - "Request follow several students" // Necessita traducció -#elif L==2 // de - "Request follow several students" // Need Übersetzung -#elif L==3 // en - "Request follow several students" -#elif L==4 // es - "Solicitar seguir a varios estudiantes" -#elif L==5 // fr - "Request follow several students" // Besoin de traduction -#elif L==6 // gn - "Solicitar seguir a varios estudiantes" // Okoteve traducción -#elif L==7 // it - "Request follow several students" // Bisogno di traduzione -#elif L==8 // pl - "Request follow several students" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request follow several students" // Precisa de tradução -#elif L==10 // tr - "Request follow several students" // Çeviri lazim! -#endif - , - [ActReqFolSevTch] = -#if L==1 // ca - "Request follow several teachers" // Necessita traducció -#elif L==2 // de - "Request follow several teachers" // Need Übersetzung -#elif L==3 // en - "Request follow several teachers" -#elif L==4 // es - "Solicitar seguir a varios profesores" -#elif L==5 // fr - "Request follow several teachers" // Besoin de traduction -#elif L==6 // gn - "Solicitar seguir a varios profesores" // Okoteve traducción -#elif L==7 // it - "Request follow several teachers" // Bisogno di traduzione -#elif L==8 // pl - "Request follow several teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request follow several teachers" // Precisa de tradução -#elif L==10 // tr - "Request follow several teachers" // Çeviri lazim! -#endif - , - [ActReqUnfSevStd] = -#if L==1 // ca - "Request unfollow several students" // Necessita traducció -#elif L==2 // de - "Request unfollow several students" // Need Übersetzung -#elif L==3 // en - "Request unfollow several students" -#elif L==4 // es - "Solicitar dejar de seguir a varios estudiantes" -#elif L==5 // fr - "Request unfollow several students" // Besoin de traduction -#elif L==6 // gn - "Solicitar dejar de seguir a varios estudiantes" // Okoteve traducción -#elif L==7 // it - "Request unfollow several students" // Bisogno di traduzione -#elif L==8 // pl - "Request unfollow several students" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request unfollow several students" // Precisa de tradução -#elif L==10 // tr - "Request unfollow several students" // Çeviri lazim! -#endif - , - [ActReqUnfSevTch] = -#if L==1 // ca - "Request unfollow several teachers" // Necessita traducció -#elif L==2 // de - "Request unfollow several teachers" // Need Übersetzung -#elif L==3 // en - "Request unfollow several teachers" -#elif L==4 // es - "Solicitar dejar de seguir a varios profesores" -#elif L==5 // fr - "Request unfollow several teachers" // Besoin de traduction -#elif L==6 // gn - "Solicitar dejar de seguir a varios profesores" // Okoteve traducción -#elif L==7 // it - "Request unfollow several teachers" // Bisogno di traduzione -#elif L==8 // pl - "Request unfollow several teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request unfollow several teachers" // Precisa de tradução -#elif L==10 // tr - "Request unfollow several teachers" // Çeviri lazim! -#endif - , - [ActFolSevStd] = -#if L==1 // ca - "Follow several students" // Necessita traducció -#elif L==2 // de - "Follow several students" // Need Übersetzung -#elif L==3 // en - "Follow several students" -#elif L==4 // es - "Seguir a varios estudiantes" -#elif L==5 // fr - "Follow several students" // Besoin de traduction -#elif L==6 // gn - "Seguir a varios estudiantes" // Okoteve traducción -#elif L==7 // it - "Follow several students" // Bisogno di traduzione -#elif L==8 // pl - "Follow several students" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Follow several students" // Precisa de tradução -#elif L==10 // tr - "Follow several students" // Çeviri lazim! -#endif - , - [ActFolSevTch] = -#if L==1 // ca - "Follow several teachers" // Necessita traducció -#elif L==2 // de - "Follow several teachers" // Need Übersetzung -#elif L==3 // en - "Follow several teachers" -#elif L==4 // es - "Seguir a varios profesores" -#elif L==5 // fr - "Follow several teachers" // Besoin de traduction -#elif L==6 // gn - "Seguir a varios profesores" // Okoteve traducción -#elif L==7 // it - "Follow several teachers" // Bisogno di traduzione -#elif L==8 // pl - "Follow several teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Follow several teachers" // Precisa de tradução -#elif L==10 // tr - "Follow several teachers" // Çeviri lazim! -#endif - , - [ActUnfSevStd] = -#if L==1 // ca - "Unfollow several students" // Necessita traducció -#elif L==2 // de - "Unfollow several students" // Need Übersetzung -#elif L==3 // en - "Unfollow several students" -#elif L==4 // es - "Dejar de seguir a varios estudiantes" -#elif L==5 // fr - "Unfollow several students" // Besoin de traduction -#elif L==6 // gn - "Dejar de seguir a varios estudiantes" // Okoteve traducción -#elif L==7 // it - "Unfollow several students" // Bisogno di traduzione -#elif L==8 // pl - "Unfollow several students" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Unfollow several students" // Precisa de tradução -#elif L==10 // tr - "Unfollow several students" // Çeviri lazim! -#endif - , - [ActUnfSevTch] = -#if L==1 // ca - "Unfollow several teachers" // Necessita traducció -#elif L==2 // de - "Unfollow several teachers" // Need Übersetzung -#elif L==3 // en - "Unfollow several teachers" -#elif L==4 // es - "Dejar de seguir a varios profesores" -#elif L==5 // fr - "Unfollow several teachers" // Besoin de traduction -#elif L==6 // gn - "Dejar de seguir a varios profesores" // Okoteve traducción -#elif L==7 // it - "Unfollow several teachers" // Bisogno di traduzione -#elif L==8 // pl - "Unfollow several teachers" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Unfollow several teachers" // Precisa de tradução -#elif L==10 // tr - "Unfollow several teachers" // Çeviri lazim! + "List connected users" // Çeviri lazim! #endif , [ActSeeAnn] = @@ -28764,121 +28764,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Show global announcements" // Precisa de tradução #elif L==10 // tr "Show global announcements" // Çeviri lazim! -#endif - , - [ActSeeAllNot] = -#if L==1 // ca - "See notices" // Necessita traducció -#elif L==2 // de - "See notices" // Need Übersetzung -#elif L==3 // en - "See notices" -#elif L==4 // es - "Ver avisos" -#elif L==5 // fr - "See notices" // Besoin de traduction -#elif L==6 // gn - "Ver avisos" // Okoteve traducción -#elif L==7 // it - "See notices" // Bisogno di traduzione -#elif L==8 // pl - "See notices" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See notices" // Precisa de tradução -#elif L==10 // tr - "See notices" // Çeviri lazim! -#endif - , - [ActSeeFor] = -#if L==1 // ca - "See the top level of the forums" // Necessita traducció -#elif L==2 // de - "See the top level of the forums" // Need Übersetzung -#elif L==3 // en - "See the top level of the forums" -#elif L==4 // es - "Ver el nivel superior de los foros" -#elif L==5 // fr - "See the top level of the forums" // Besoin de traduction -#elif L==6 // gn - "Ver el nivel superior de los foros" // Okoteve traducción -#elif L==7 // it - "See the top level of the forums" // Bisogno di traduzione -#elif L==8 // pl - "See the top level of the forums" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the top level of the forums" // Precisa de tradução -#elif L==10 // tr - "See the top level of the forums" // Çeviri lazim! -#endif - , - [ActSeeChtRms] = -#if L==1 // ca - "See the chat rooms" // Necessita traducció -#elif L==2 // de - "See the chat rooms" // Need Übersetzung -#elif L==3 // en - "See the chat rooms" -#elif L==4 // es - "Ver las salas de chat" -#elif L==5 // fr - "See the chat rooms" // Besoin de traduction -#elif L==6 // gn - "Ver las salas de chat" // Okoteve traducción -#elif L==7 // it - "See the chat rooms" // Bisogno di traduzione -#elif L==8 // pl - "See the chat rooms" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the chat rooms" // Precisa de tradução -#elif L==10 // tr - "See the chat rooms" // Çeviri lazim! -#endif - , - [ActSeeRcvMsg] = -#if L==1 // ca - "Show the messages received" // Necessita traducció -#elif L==2 // de - "Show the messages received" // Need Übersetzung -#elif L==3 // en - "Show the messages received" -#elif L==4 // es - "Ver mensajes recibidos" -#elif L==5 // fr - "Show the messages received" // Besoin de traduction -#elif L==6 // gn - "Ver mensajes recibidos" // Okoteve traducción -#elif L==7 // it - "Show the messages received" // Bisogno di traduzione -#elif L==8 // pl - "Show the messages received" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Show the messages received" // Precisa de tradução -#elif L==10 // tr - "Show the messages received" // Çeviri lazim! -#endif - , - [ActReqMaiUsr] = -#if L==1 // ca - "Select users to send an email to them" // Necessita traducció -#elif L==2 // de - "Select users to send an email to them" // Need Übersetzung -#elif L==3 // en - "Select users to send an email to them" -#elif L==4 // es - "Seleccionar usuarios para enviarles un correo" -#elif L==5 // fr - "Select users to send an email to them" // Besoin de traduction -#elif L==6 // gn - "Seleccionar usuarios para enviarles un correo" // Okoteve traducción -#elif L==7 // it - "Select users to send an email to them" // Bisogno di traduzione -#elif L==8 // pl - "Select users to send an email to them" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Select users to send an email to them" // Precisa de tradução -#elif L==10 // tr - "Select users to send an email to them" // Çeviri lazim! #endif , [ActWriAnn] = @@ -28994,6 +28879,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Remove global announcement" // Precisa de tradução #elif L==10 // tr "Remove global announcement" // Çeviri lazim! +#endif + , + [ActSeeAllNot] = +#if L==1 // ca + "See notices" // Necessita traducció +#elif L==2 // de + "See notices" // Need Übersetzung +#elif L==3 // en + "See notices" +#elif L==4 // es + "Ver avisos" +#elif L==5 // fr + "See notices" // Besoin de traduction +#elif L==6 // gn + "Ver avisos" // Okoteve traducción +#elif L==7 // it + "See notices" // Bisogno di traduzione +#elif L==8 // pl + "See notices" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See notices" // Precisa de tradução +#elif L==10 // tr + "See notices" // Çeviri lazim! #endif , [ActSeeOneNot] = @@ -29155,6 +29063,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Remove notice" // Precisa de tradução #elif L==10 // tr "Remove notice" // Çeviri lazim! +#endif + , + [ActSeeFor] = +#if L==1 // ca + "See the top level of the forums" // Necessita traducció +#elif L==2 // de + "See the top level of the forums" // Need Übersetzung +#elif L==3 // en + "See the top level of the forums" +#elif L==4 // es + "Ver el nivel superior de los foros" +#elif L==5 // fr + "See the top level of the forums" // Besoin de traduction +#elif L==6 // gn + "Ver el nivel superior de los foros" // Okoteve traducción +#elif L==7 // it + "See the top level of the forums" // Bisogno di traduzione +#elif L==8 // pl + "See the top level of the forums" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the top level of the forums" // Precisa de tradução +#elif L==10 // tr + "See the top level of the forums" // Çeviri lazim! #endif , [ActSeeForCrsUsr] = @@ -32214,6 +32145,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Copy link to thread of forum of users of course" // Precisa de tradução #elif L==10 // tr "Copy link to thread of forum of users of course" // Çeviri lazim! +#endif + , + [ActSeeChtRms] = +#if L==1 // ca + "See the chat rooms" // Necessita traducció +#elif L==2 // de + "See the chat rooms" // Need Übersetzung +#elif L==3 // en + "See the chat rooms" +#elif L==4 // es + "Ver las salas de chat" +#elif L==5 // fr + "See the chat rooms" // Besoin de traduction +#elif L==6 // gn + "Ver las salas de chat" // Okoteve traducción +#elif L==7 // it + "See the chat rooms" // Bisogno di traduzione +#elif L==8 // pl + "See the chat rooms" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the chat rooms" // Precisa de tradução +#elif L==10 // tr + "See the chat rooms" // Çeviri lazim! #endif , [ActCht] = @@ -32237,6 +32191,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Enter in a chat room to chat" // Precisa de tradução #elif L==10 // tr "Enter in a chat room to chat" // Çeviri lazim! +#endif + , + [ActSeeRcvMsg] = +#if L==1 // ca + "Show the messages received" // Necessita traducció +#elif L==2 // de + "Show the messages received" // Need Übersetzung +#elif L==3 // en + "Show the messages received" +#elif L==4 // es + "Ver mensajes recibidos" +#elif L==5 // fr + "Show the messages received" // Besoin de traduction +#elif L==6 // gn + "Ver mensajes recibidos" // Okoteve traducción +#elif L==7 // it + "Show the messages received" // Bisogno di traduzione +#elif L==8 // pl + "Show the messages received" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Show the messages received" // Precisa de tradução +#elif L==10 // tr + "Show the messages received" // Çeviri lazim! #endif , [ActReqMsgUsr] = @@ -32628,6 +32605,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Unban a user when listing banned users" // Precisa de tradução #elif L==10 // tr "Unban a user when listing banned users" // Çeviri lazim! +#endif + , + [ActReqMaiUsr] = +#if L==1 // ca + "Select users to send an email to them" // Necessita traducció +#elif L==2 // de + "Select users to send an email to them" // Need Übersetzung +#elif L==3 // en + "Select users to send an email to them" +#elif L==4 // es + "Seleccionar usuarios para enviarles un correo" +#elif L==5 // fr + "Select users to send an email to them" // Besoin de traduction +#elif L==6 // gn + "Seleccionar usuarios para enviarles un correo" // Okoteve traducción +#elif L==7 // it + "Select users to send an email to them" // Bisogno di traduzione +#elif L==8 // pl + "Select users to send an email to them" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Select users to send an email to them" // Precisa de tradução +#elif L==10 // tr + "Select users to send an email to them" // Çeviri lazim! #endif , [ActMaiUsr] = @@ -32674,144 +32674,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Request seeing use of the platform" // Precisa de tradução #elif L==10 // tr "Request seeing use of the platform" // Çeviri lazim! -#endif - , - [ActSeePhoDeg] = -#if L==1 // ca - "See a class photo with average photos of students of each degree" // Necessita traducció -#elif L==2 // de - "See a class photo with average photos of students of each degree" // Need Übersetzung -#elif L==3 // en - "See a class photo with average photos of students of each degree" -#elif L==4 // es - "Ver una foto de clase con fotos promedio de estudiantes de cada titulación" -#elif L==5 // fr - "See a class photo with average photos of students of each degree" // Besoin de traduction -#elif L==6 // gn - "Ver una foto de clase con fotos promedio de estudiantes de cada titulación" // Okoteve traducción -#elif L==7 // it - "See a class photo with average photos of students of each degree" // Bisogno di traduzione -#elif L==8 // pl - "See a class photo with average photos of students of each degree" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See a class photo with average photos of students of each degree" // Precisa de tradução -#elif L==10 // tr - "See a class photo with average photos of students of each degree" // Çeviri lazim! -#endif - , - [ActReqStaCrs] = -#if L==1 // ca - "Request statistics of courses" // Necessita traducció -#elif L==2 // de - "Request statistics of courses" // Need Übersetzung -#elif L==3 // en - "Request statistics of courses" -#elif L==4 // es - "Solicitar estadísticas de asignaturas" -#elif L==5 // fr - "Request statistics of courses" // Besoin de traduction -#elif L==6 // gn - "Solicitar estadísticas de asignaturas" // Okoteve traducción -#elif L==7 // it - "Request statistics of courses" // Bisogno di traduzione -#elif L==8 // pl - "Request statistics of courses" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request statistics of courses" // Precisa de tradução -#elif L==10 // tr - "Request statistics of courses" // Çeviri lazim! -#endif - , - [ActSeeAllSvy] = -#if L==1 // ca - "See surveys" // Necessita traducció -#elif L==2 // de - "See surveys" // Need Übersetzung -#elif L==3 // en - "See surveys" -#elif L==4 // es - "Ver encuestas" -#elif L==5 // fr - "See surveys" // Besoin de traduction -#elif L==6 // gn - "Ver encuestas" // Okoteve traducción -#elif L==7 // it - "See surveys" // Bisogno di traduzione -#elif L==8 // pl - "See surveys" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See surveys" // Precisa de tradução -#elif L==10 // tr - "See surveys" // Çeviri lazim! -#endif - , - [ActReqAccGbl] = -#if L==1 // ca - "Request query of clicks to the complete platform" // Necessita traducció -#elif L==2 // de - "Request query of clicks to the complete platform" // Need Übersetzung -#elif L==3 // en - "Request query of clicks to the complete platform" -#elif L==4 // es - "Solicitar consulta de clics a la plataforma completa" -#elif L==5 // fr - "Request query of clicks to the complete platform" // Besoin de traduction -#elif L==6 // gn - "Solicitar consulta de clics a la plataforma completa" // Okoteve traducción -#elif L==7 // it - "Request query of clicks to the complete platform" // Bisogno di traduzione -#elif L==8 // pl - "Request query of clicks to the complete platform" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request query of clicks to the complete platform" // Precisa de tradução -#elif L==10 // tr - "Request query of clicks to the complete platform" // Çeviri lazim! -#endif - , - [ActReqMyUsgRep] = -#if L==1 // ca - "Request my usage report" // Necessita traducció -#elif L==2 // de - "Request my usage report" // Need Übersetzung -#elif L==3 // en - "Request my usage report" -#elif L==4 // es - "Solicitar mi informe de uso" -#elif L==5 // fr - "Request my usage report" // Besoin de traduction -#elif L==6 // gn - "Solicitar mi informe de uso" // Okoteve traducción -#elif L==7 // it - "Request my usage report" // Bisogno di traduzione -#elif L==8 // pl - "Request my usage report" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request my usage report" // Precisa de tradução -#elif L==10 // tr - "Request my usage report" // Çeviri lazim! -#endif - , - [ActMFUAct] = -#if L==1 // ca - "See most frequently used actions" // Necessita traducció -#elif L==2 // de - "See most frequently used actions" // Need Übersetzung -#elif L==3 // en - "See most frequently used actions" -#elif L==4 // es - "Ver acciones más frecuentemente usadas" -#elif L==5 // fr - "See most frequently used actions" // Besoin de traduction -#elif L==6 // gn - "Ver acciones más frecuentemente usadas" // Okoteve traducción -#elif L==7 // it - "See most frequently used actions" // Bisogno di traduzione -#elif L==8 // pl - "See most frequently used actions" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See most frequently used actions" // Precisa de tradução -#elif L==10 // tr - "See most frequently used actions" // Çeviri lazim! #endif , [ActSeeUseGbl] = @@ -32835,6 +32697,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See platform usage statistics" // Precisa de tradução #elif L==10 // tr "See platform usage statistics" // Çeviri lazim! +#endif + , + [ActSeePhoDeg] = +#if L==1 // ca + "See a class photo with average photos of students of each degree" // Necessita traducció +#elif L==2 // de + "See a class photo with average photos of students of each degree" // Need Übersetzung +#elif L==3 // en + "See a class photo with average photos of students of each degree" +#elif L==4 // es + "Ver una foto de clase con fotos promedio de estudiantes de cada titulación" +#elif L==5 // fr + "See a class photo with average photos of students of each degree" // Besoin de traduction +#elif L==6 // gn + "Ver una foto de clase con fotos promedio de estudiantes de cada titulación" // Okoteve traducción +#elif L==7 // it + "See a class photo with average photos of students of each degree" // Bisogno di traduzione +#elif L==8 // pl + "See a class photo with average photos of students of each degree" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See a class photo with average photos of students of each degree" // Precisa de tradução +#elif L==10 // tr + "See a class photo with average photos of students of each degree" // Çeviri lazim! #endif , [ActPrnPhoDeg] = @@ -32881,6 +32766,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Compute average photos of students of degree" // Precisa de tradução #elif L==10 // tr "Compute average photos of students of degree" // Çeviri lazim! +#endif + , + [ActReqStaCrs] = +#if L==1 // ca + "Request statistics of courses" // Necessita traducció +#elif L==2 // de + "Request statistics of courses" // Need Übersetzung +#elif L==3 // en + "Request statistics of courses" +#elif L==4 // es + "Solicitar estadísticas de asignaturas" +#elif L==5 // fr + "Request statistics of courses" // Besoin de traduction +#elif L==6 // gn + "Solicitar estadísticas de asignaturas" // Okoteve traducción +#elif L==7 // it + "Request statistics of courses" // Bisogno di traduzione +#elif L==8 // pl + "Request statistics of courses" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request statistics of courses" // Precisa de tradução +#elif L==10 // tr + "Request statistics of courses" // Çeviri lazim! #endif , [ActSeeAllStaCrs] = @@ -32904,6 +32812,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See statistics of courses" // Precisa de tradução #elif L==10 // tr "See statistics of courses" // Çeviri lazim! +#endif + , + [ActSeeAllSvy] = +#if L==1 // ca + "See surveys" // Necessita traducció +#elif L==2 // de + "See surveys" // Need Übersetzung +#elif L==3 // en + "See surveys" +#elif L==4 // es + "Ver encuestas" +#elif L==5 // fr + "See surveys" // Besoin de traduction +#elif L==6 // gn + "Ver encuestas" // Okoteve traducción +#elif L==7 // it + "See surveys" // Bisogno di traduzione +#elif L==8 // pl + "See surveys" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See surveys" // Precisa de tradução +#elif L==10 // tr + "See surveys" // Çeviri lazim! #endif , [ActSeeOneSvy] = @@ -33318,6 +33249,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Confirm removal of survey question" // Precisa de tradução #elif L==10 // tr "Confirm removal of survey question" // Çeviri lazim! +#endif + , + [ActReqAccGbl] = +#if L==1 // ca + "Request query of clicks to the complete platform" // Necessita traducció +#elif L==2 // de + "Request query of clicks to the complete platform" // Need Übersetzung +#elif L==3 // en + "Request query of clicks to the complete platform" +#elif L==4 // es + "Solicitar consulta de clics a la plataforma completa" +#elif L==5 // fr + "Request query of clicks to the complete platform" // Besoin de traduction +#elif L==6 // gn + "Solicitar consulta de clics a la plataforma completa" // Okoteve traducción +#elif L==7 // it + "Request query of clicks to the complete platform" // Bisogno di traduzione +#elif L==8 // pl + "Request query of clicks to the complete platform" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request query of clicks to the complete platform" // Precisa de tradução +#elif L==10 // tr + "Request query of clicks to the complete platform" // Çeviri lazim! #endif , [ActSeeAccGbl] = @@ -33433,6 +33387,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Refresh the last clicks in real time" // Precisa de tradução #elif L==10 // tr "Refresh the last clicks in real time" // Çeviri lazim! +#endif + , + [ActReqMyUsgRep] = +#if L==1 // ca + "Request my usage report" // Necessita traducció +#elif L==2 // de + "Request my usage report" // Need Übersetzung +#elif L==3 // en + "Request my usage report" +#elif L==4 // es + "Solicitar mi informe de uso" +#elif L==5 // fr + "Request my usage report" // Besoin de traduction +#elif L==6 // gn + "Solicitar mi informe de uso" // Okoteve traducción +#elif L==7 // it + "Request my usage report" // Bisogno di traduzione +#elif L==8 // pl + "Request my usage report" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request my usage report" // Precisa de tradução +#elif L==10 // tr + "Request my usage report" // Çeviri lazim! #endif , [ActSeeMyUsgRep] = @@ -33456,6 +33433,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See my usage report" // Precisa de tradução #elif L==10 // tr "See my usage report" // Çeviri lazim! +#endif + , + [ActMFUAct] = +#if L==1 // ca + "See most frequently used actions" // Necessita traducció +#elif L==2 // de + "See most frequently used actions" // Need Übersetzung +#elif L==3 // en + "See most frequently used actions" +#elif L==4 // es + "Ver acciones más frecuentemente usadas" +#elif L==5 // fr + "See most frequently used actions" // Besoin de traduction +#elif L==6 // gn + "Ver acciones más frecuentemente usadas" // Okoteve traducción +#elif L==7 // it + "See most frequently used actions" // Bisogno di traduzione +#elif L==8 // pl + "See most frequently used actions" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See most frequently used actions" // Precisa de tradução +#elif L==10 // tr + "See most frequently used actions" // Çeviri lazim! #endif , [ActFrmRolSes] = @@ -33479,6 +33479,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See form to log out and to change the current role" // Precisa de tradução #elif L==10 // tr "See form to log out and to change the current role" // Çeviri lazim! +#endif + , + [ActChgMyRol] = +#if L==1 // ca + "Change user's role" // Necessita traducció +#elif L==2 // de + "Change user's role" // Need Übersetzung +#elif L==3 // en + "Change user's role" +#elif L==4 // es + "Cambiar rol de usuario" +#elif L==5 // fr + "Change user's role" // Besoin de traduction +#elif L==6 // gn + "Cambiar rol de usuario" // Okoteve traducción +#elif L==7 // it + "Change user's role" // Bisogno di traduzione +#elif L==8 // pl + "Change user's role" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change user's role" // Precisa de tradução +#elif L==10 // tr + "Change user's role" // Çeviri lazim! #endif , [ActMyCrs] = @@ -33525,6 +33548,98 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See the timetable of all my courses" // Precisa de tradução #elif L==10 // tr "See the timetable of all my courses" // Çeviri lazim! +#endif + , + [ActPrnMyTT] = +#if L==1 // ca + "See the print view of the timetable of all my courses" // Necessita traducció +#elif L==2 // de + "See the print view of the timetable of all my courses" // Need Übersetzung +#elif L==3 // en + "See the print view of the timetable of all my courses" +#elif L==4 // es + "Ver la vista de impresión del horario de todas mis asignaturas" +#elif L==5 // fr + "See the print view of the timetable of all my courses" // Besoin de traduction +#elif L==6 // gn + "Ver la vista de impresión del horario de todas mis asignaturas" // Okoteve traducción +#elif L==7 // it + "See the print view of the timetable of all my courses" // Bisogno di traduzione +#elif L==8 // pl + "See the print view of the timetable of all my courses" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See the print view of the timetable of all my courses" // Precisa de tradução +#elif L==10 // tr + "See the print view of the timetable of all my courses" // Çeviri lazim! +#endif + , + [ActEdiTut] = +#if L==1 // ca + "Edit my office timetable" // Necessita traducció +#elif L==2 // de + "Edit my office timetable" // Need Übersetzung +#elif L==3 // en + "Edit my office timetable" +#elif L==4 // es + "Editar mi horario de tutorías" +#elif L==5 // fr + "Edit my office timetable" // Besoin de traduction +#elif L==6 // gn + "Editar mi horario de tutorías" // Okoteve traducción +#elif L==7 // it + "Edit my office timetable" // Bisogno di traduzione +#elif L==8 // pl + "Edit my office timetable" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Edit my office timetable" // Precisa de tradução +#elif L==10 // tr + "Edit my office timetable" // Çeviri lazim! +#endif + , + [ActChgTut] = +#if L==1 // ca + "Change my office timetable" // Necessita traducció +#elif L==2 // de + "Change my office timetable" // Need Übersetzung +#elif L==3 // en + "Change my office timetable" +#elif L==4 // es + "Cambiar mi horario de tutorías" +#elif L==5 // fr + "Change my office timetable" // Besoin de traduction +#elif L==6 // gn + "Cambiar mi horario de tutorías" // Okoteve traducción +#elif L==7 // it + "Change my office timetable" // Bisogno di traduzione +#elif L==8 // pl + "Change my office timetable" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change my office timetable" // Precisa de tradução +#elif L==10 // tr + "Change my office timetable" // Çeviri lazim! +#endif + , + [ActChgMyTT1stDay] = +#if L==1 // ca + "Change first day of week and show office timetable" // Necessita traducció +#elif L==2 // de + "Change first day of week and show office timetable" // Need Übersetzung +#elif L==3 // en + "Change first day of week and show office timetable" +#elif L==4 // es + "Cambiar primer día de la semana y mostrar el horario de tutorías" +#elif L==5 // fr + "Change first day of week and show office timetable" // Besoin de traduction +#elif L==6 // gn + "Cambiar primer día de la semana y mostrar el horario de tutorías" // Okoteve traducción +#elif L==7 // it + "Change first day of week and show office timetable" // Bisogno di traduzione +#elif L==8 // pl + "Change first day of week and show office timetable" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Change first day of week and show office timetable" // Precisa de tradução +#elif L==10 // tr + "Change first day of week and show office timetable" // Çeviri lazim! #endif , [ActSeeMyAgd] = @@ -33548,98 +33663,6 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See my full agenda (personal organizer)" // Precisa de tradução #elif L==10 // tr "See my full agenda (personal organizer)" // Çeviri lazim! -#endif - , - [ActFrmMyAcc] = -#if L==1 // ca - "See form to create or change my account" // Necessita traducció -#elif L==2 // de - "See form to create or change my account" // Need Übersetzung -#elif L==3 // en - "See form to create or change my account" -#elif L==4 // es - "Ver formulario para crear o cambiar mi cuenta" -#elif L==5 // fr - "See form to create or change my account" // Besoin de traduction -#elif L==6 // gn - "Ver formulario para crear o cambiar mi cuenta" // Okoteve traducción -#elif L==7 // it - "See form to create or change my account" // Bisogno di traduzione -#elif L==8 // pl - "See form to create or change my account" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See form to create or change my account" // Precisa de tradução -#elif L==10 // tr - "See form to create or change my account" // Çeviri lazim! -#endif - , - [ActReqEdiRecSha] = -#if L==1 // ca - "Request edition of the record with the personal data of the user" // Necessita traducció -#elif L==2 // de - "Request edition of the record with the personal data of the user" // Need Übersetzung -#elif L==3 // en - "Request edition of the record with the personal data of the user" -#elif L==4 // es - "Solicitar edición de la ficha con los datos personales del usuario" -#elif L==5 // fr - "Request edition of the record with the personal data of the user" // Besoin de traduction -#elif L==6 // gn - "Solicitar edición de la ficha con los datos personales del usuario" // Okoteve traducción -#elif L==7 // it - "Request edition of the record with the personal data of the user" // Bisogno di traduzione -#elif L==8 // pl - "Request edition of the record with the personal data of the user" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Request edition of the record with the personal data of the user" // Precisa de tradução -#elif L==10 // tr - "Request edition of the record with the personal data of the user" // Çeviri lazim! -#endif - , - [ActReqEdiSet] = -#if L==1 // ca - "See forms to edit settings" // Necessita traducció -#elif L==2 // de - "See forms to edit settings" // Need Übersetzung -#elif L==3 // en - "See forms to edit settings" -#elif L==4 // es - "Ver formularios para editar ajustes" -#elif L==5 // fr - "See forms to edit settings" // Besoin de traduction -#elif L==6 // gn - "Ver formularios para editar ajustes" // Okoteve traducción -#elif L==7 // it - "See forms to edit settings" // Bisogno di traduzione -#elif L==8 // pl - "See forms to edit settings" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See forms to edit settings" // Precisa de tradução -#elif L==10 // tr - "See forms to edit settings" // Çeviri lazim! -#endif - , - [ActChgMyRol] = -#if L==1 // ca - "Change user's role" // Necessita traducció -#elif L==2 // de - "Change user's role" // Need Übersetzung -#elif L==3 // en - "Change user's role" -#elif L==4 // es - "Cambiar rol de usuario" -#elif L==5 // fr - "Change user's role" // Besoin de traduction -#elif L==6 // gn - "Cambiar rol de usuario" // Okoteve traducción -#elif L==7 // it - "Change user's role" // Bisogno di traduzione -#elif L==8 // pl - "Change user's role" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change user's role" // Precisa de tradução -#elif L==10 // tr - "Change user's role" // Çeviri lazim! #endif , [ActFrmNewEvtMyAgd] = @@ -33893,6 +33916,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "See agenda QR code ready to print" // Precisa de tradução #elif L==10 // tr "See agenda QR code ready to print" // Çeviri lazim! +#endif + , + [ActFrmMyAcc] = +#if L==1 // ca + "See form to create or change my account" // Necessita traducció +#elif L==2 // de + "See form to create or change my account" // Need Übersetzung +#elif L==3 // en + "See form to create or change my account" +#elif L==4 // es + "Ver formulario para crear o cambiar mi cuenta" +#elif L==5 // fr + "See form to create or change my account" // Besoin de traduction +#elif L==6 // gn + "Ver formulario para crear o cambiar mi cuenta" // Okoteve traducción +#elif L==7 // it + "See form to create or change my account" // Bisogno di traduzione +#elif L==8 // pl + "See form to create or change my account" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See form to create or change my account" // Precisa de tradução +#elif L==10 // tr + "See form to create or change my account" // Çeviri lazim! #endif , [ActChkUsrAcc] = @@ -34192,6 +34238,52 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Remove my account" // Precisa de tradução #elif L==10 // tr "Remove my account" // Çeviri lazim! +#endif + , + [ActPrnUsrQR] = +#if L==1 // ca + "See my QR code ready to print" // Necessita traducció +#elif L==2 // de + "See my QR code ready to print" // Need Übersetzung +#elif L==3 // en + "See my QR code ready to print" +#elif L==4 // es + "Ver mi código QR listo para imprimir" +#elif L==5 // fr + "See my QR code ready to print" // Besoin de traduction +#elif L==6 // gn + "Ver mi código QR listo para imprimir" // Okoteve traducción +#elif L==7 // it + "See my QR code ready to print" // Bisogno di traduzione +#elif L==8 // pl + "See my QR code ready to print" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See my QR code ready to print" // Precisa de tradução +#elif L==10 // tr + "See my QR code ready to print" // Çeviri lazim! +#endif + , + [ActReqEdiRecSha] = +#if L==1 // ca + "Request edition of the record with the personal data of the user" // Necessita traducció +#elif L==2 // de + "Request edition of the record with the personal data of the user" // Need Übersetzung +#elif L==3 // en + "Request edition of the record with the personal data of the user" +#elif L==4 // es + "Solicitar edición de la ficha con los datos personales del usuario" +#elif L==5 // fr + "Request edition of the record with the personal data of the user" // Besoin de traduction +#elif L==6 // gn + "Solicitar edición de la ficha con los datos personales del usuario" // Okoteve traducción +#elif L==7 // it + "Request edition of the record with the personal data of the user" // Bisogno di traduzione +#elif L==8 // pl + "Request edition of the record with the personal data of the user" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "Request edition of the record with the personal data of the user" // Precisa de tradução +#elif L==10 // tr + "Request edition of the record with the personal data of the user" // Çeviri lazim! #endif , [ActChgMyData] = @@ -34514,6 +34606,29 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change my web and social networks" // Precisa de tradução #elif L==10 // tr "Change my web and social networks" // Çeviri lazim! +#endif + , + [ActReqEdiSet] = +#if L==1 // ca + "See forms to edit settings" // Necessita traducció +#elif L==2 // de + "See forms to edit settings" // Need Übersetzung +#elif L==3 // en + "See forms to edit settings" +#elif L==4 // es + "Ver formularios para editar ajustes" +#elif L==5 // fr + "See forms to edit settings" // Besoin de traduction +#elif L==6 // gn + "Ver formularios para editar ajustes" // Okoteve traducción +#elif L==7 // it + "See forms to edit settings" // Bisogno di traduzione +#elif L==8 // pl + "See forms to edit settings" // Potrzebujesz tlumaczenie +#elif L==9 // pt + "See forms to edit settings" // Precisa de tradução +#elif L==10 // tr + "See forms to edit settings" // Çeviri lazim! #endif , [ActChgThe] = @@ -34836,120 +34951,5 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Change whether to notify by email" // Precisa de tradução #elif L==10 // tr "Change whether to notify by email" // Çeviri lazim! -#endif - , - [ActPrnUsrQR] = -#if L==1 // ca - "See my QR code ready to print" // Necessita traducció -#elif L==2 // de - "See my QR code ready to print" // Need Übersetzung -#elif L==3 // en - "See my QR code ready to print" -#elif L==4 // es - "Ver mi código QR listo para imprimir" -#elif L==5 // fr - "See my QR code ready to print" // Besoin de traduction -#elif L==6 // gn - "Ver mi código QR listo para imprimir" // Okoteve traducción -#elif L==7 // it - "See my QR code ready to print" // Bisogno di traduzione -#elif L==8 // pl - "See my QR code ready to print" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See my QR code ready to print" // Precisa de tradução -#elif L==10 // tr - "See my QR code ready to print" // Çeviri lazim! -#endif - , - [ActPrnMyTT] = -#if L==1 // ca - "See the print view of the timetable of all my courses" // Necessita traducció -#elif L==2 // de - "See the print view of the timetable of all my courses" // Need Übersetzung -#elif L==3 // en - "See the print view of the timetable of all my courses" -#elif L==4 // es - "Ver la vista de impresión del horario de todas mis asignaturas" -#elif L==5 // fr - "See the print view of the timetable of all my courses" // Besoin de traduction -#elif L==6 // gn - "Ver la vista de impresión del horario de todas mis asignaturas" // Okoteve traducción -#elif L==7 // it - "See the print view of the timetable of all my courses" // Bisogno di traduzione -#elif L==8 // pl - "See the print view of the timetable of all my courses" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "See the print view of the timetable of all my courses" // Precisa de tradução -#elif L==10 // tr - "See the print view of the timetable of all my courses" // Çeviri lazim! -#endif - , - [ActEdiTut] = -#if L==1 // ca - "Edit my office timetable" // Necessita traducció -#elif L==2 // de - "Edit my office timetable" // Need Übersetzung -#elif L==3 // en - "Edit my office timetable" -#elif L==4 // es - "Editar mi horario de tutorías" -#elif L==5 // fr - "Edit my office timetable" // Besoin de traduction -#elif L==6 // gn - "Editar mi horario de tutorías" // Okoteve traducción -#elif L==7 // it - "Edit my office timetable" // Bisogno di traduzione -#elif L==8 // pl - "Edit my office timetable" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Edit my office timetable" // Precisa de tradução -#elif L==10 // tr - "Edit my office timetable" // Çeviri lazim! -#endif - , - [ActChgTut] = -#if L==1 // ca - "Change my office timetable" // Necessita traducció -#elif L==2 // de - "Change my office timetable" // Need Übersetzung -#elif L==3 // en - "Change my office timetable" -#elif L==4 // es - "Cambiar mi horario de tutorías" -#elif L==5 // fr - "Change my office timetable" // Besoin de traduction -#elif L==6 // gn - "Cambiar mi horario de tutorías" // Okoteve traducción -#elif L==7 // it - "Change my office timetable" // Bisogno di traduzione -#elif L==8 // pl - "Change my office timetable" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change my office timetable" // Precisa de tradução -#elif L==10 // tr - "Change my office timetable" // Çeviri lazim! -#endif - , - [ActChgMyTT1stDay] = -#if L==1 // ca - "Change first day of week and show office timetable" // Necessita traducció -#elif L==2 // de - "Change first day of week and show office timetable" // Need Übersetzung -#elif L==3 // en - "Change first day of week and show office timetable" -#elif L==4 // es - "Cambiar primer día de la semana y mostrar el horario de tutorías" -#elif L==5 // fr - "Change first day of week and show office timetable" // Besoin de traduction -#elif L==6 // gn - "Cambiar primer día de la semana y mostrar el horario de tutorías" // Okoteve traducción -#elif L==7 // it - "Change first day of week and show office timetable" // Bisogno di traduzione -#elif L==8 // pl - "Change first day of week and show office timetable" // Potrzebujesz tlumaczenie -#elif L==9 // pt - "Change first day of week and show office timetable" // Precisa de tradução -#elif L==10 // tr - "Change first day of week and show office timetable" // Çeviri lazim! #endif }; diff --git a/swad_user.c b/swad_user.c index bb59a783..1824ab30 100644 --- a/swad_user.c +++ b/swad_user.c @@ -276,7 +276,7 @@ void Usr_InformAboutNumClicksBeforePhoto (void) { if (Gbl.Usrs.Me.NumAccWithoutPhoto >= Pho_MAX_CLICKS_WITHOUT_PHOTO) Ale_ShowAlert (Ale_WARNING,Txt_You_must_send_your_photo_because_); - else if (Act_GetBrowserTab (Gbl.Action.Act) == Act_BRW_1ST_TAB) + else if (Act_GetBrowserTab (Gbl.Action.Act) == Act_1ST_TAB) Ale_ShowAlertAndButton (ActReqMyPho,NULL,NULL, NULL,NULL, Btn_CONFIRM_BUTTON,Txt_Upload_photo,