Version 16.54.7

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 13:01:44 +01:00
parent cceb8ebba0
commit 77040e455a
3 changed files with 14 additions and 13 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.6 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.7 (2016-11-13)"
#define CSS_FILE "swad16.51.css"
#define JS_FILE "swad16.46.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/*
Version 16.54.7: Nov 13, 2016 Changes in translation related to role. (206778 lines)
Version 16.54.6: Nov 13, 2016 Link to session in head. (206777 lines)
Version 16.54.5: Nov 13, 2016 Frame and contextual help on role. (206771 lines)
Version 16.54.4: Nov 13, 2016 Contextual help on creating a new account (sign up). (206747 lines)

View File

@ -51520,25 +51520,25 @@ const char *Txt_You_already_answered_this_survey_before =
"Você já respondeu a esso inquérito antes.";
#endif
const char *Txt_You_are_LOGGED_as_X = // Warning: it is very important to include two %s in the following sentences
const char *Txt_You_are_now_LOGGED_IN_as_X = // Warning: it is very important to include two %s in the following sentences
#if L==1
"Ets identificat com a <strong>%s</strong>.";
"Vost&egrave; est&agrave; ara %s com a <strong>%s</strong>.";
#elif L==2
"Sie sind %s als <strong>%s</strong>."; // German translator doesn't understand this
"Sie sind nun %s als <strong>%s</strong>.";
#elif L==3
"You are %s as <strong>%s</strong>.";
"You are now %s as <strong>%s</strong>.";
#elif L==4
"Usted est&aacute; %s como <strong>%s</strong>.";
"Usted est&aacute; ahora %s como <strong>%s</strong>.";
#elif L==5
"Vous &ecirc;tes %s comme <strong>%s</strong>.";
"Vous &ecirc;tes maintenant %s en tant que <strong>%s</strong>.";
#elif L==6
"Usted est&aacute; %s como <strong>%s</strong>."; // Okoteve traducción
"Usted est&aacute; ahora %s como <strong>%s</strong>."; // Okoteve traducción
#elif L==7
"Sei %s come <strong>%s</strong>.";
"Sei ora %s come <strong>%s</strong>.";
#elif L==8
"You are %s as <strong>%s</strong>."; // Potrzebujesz tlumaczenie
"Jeste&sacute; teraz %s jako <strong>%s</strong>.";
#elif L==9
"Voc&ecirc; est&aacute; %s como <strong>%s</strong>.";
"Agora voc&ecirc; est&aacute; %s como <strong>%s</strong>.";
#endif
const char *Txt_You_are_not_enrolled_in_any_course[Usr_NUM_SEXS] =

View File

@ -2707,7 +2707,7 @@ void Usr_ShowFormsLogoutAndRole (void)
extern const char *The_ClassForm[The_NUM_THEMES];
extern const char *Txt_Log_out;
extern const char *Txt_Role;
extern const char *Txt_You_are_LOGGED_as_X;
extern const char *Txt_You_are_now_LOGGED_IN_as_X;
extern const char *Txt_logged[Usr_NUM_SEXS];
extern const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS];
extern const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS];
@ -2723,7 +2723,7 @@ void Usr_ShowFormsLogoutAndRole (void)
/***** Write message with my new logged role *****/
if (Gbl.Usrs.Me.RoleHasChanged)
{
sprintf (Gbl.Message,Txt_You_are_LOGGED_as_X,
sprintf (Gbl.Message,Txt_You_are_now_LOGGED_IN_as_X,
Txt_logged[Gbl.Usrs.Me.UsrDat.Sex],
Txt_ROLES_SINGUL_abc[Gbl.Usrs.Me.LoggedRole][Gbl.Usrs.Me.UsrDat.Sex]);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);