Version 15.80.1

This commit is contained in:
Antonio Cañas Vargas 2015-12-29 20:39:06 +01:00
parent 7427289570
commit 66ffffb861
3 changed files with 26 additions and 2 deletions

View File

@ -110,18 +110,20 @@
// TODO: Fix bug at the end of ranking (number too low) when a course is selected // TODO: Fix bug at the end of ranking (number too low) when a course is selected
// TODO: Reply to all // TODO: Reply to all
// TODO: Hour in exam announcement should start at six a.m. // TODO: Hour in exam announcement should start at six a.m.
// TODO: When a file, notice, etc. is removed, it should be removed from social events?
/*****************************************************************************/ /*****************************************************************************/
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.80 (2015-12-29)" #define Log_PLATFORM_VERSION "SWAD 15.80.1 (2015-12-29)"
#define CSS_FILE "swad15.80.css" #define CSS_FILE "swad15.80.css"
#define JS_FILE "swad15.77.7.js" #define JS_FILE "swad15.77.7.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 15.80.1: Dec 29, 2015 Message translated. (188967 lines)
Version 15.80: Dec 29, 2015 Changes in layout of user's profile. (188944 lines) Version 15.80: Dec 29, 2015 Changes in layout of user's profile. (188944 lines)
Version 15.79.2: Dec 29, 2015 Include my public activity in timeline. (188838 lines) Version 15.79.2: Dec 29, 2015 Include my public activity in timeline. (188838 lines)
Version 15.79.1: Dec 29, 2015 Changes in layout of user's profile. (188836 lines) Version 15.79.1: Dec 29, 2015 Changes in layout of user's profile. (188836 lines)

View File

@ -124,6 +124,7 @@ void Fol_ShowFollowingAndFollowers (const struct UsrData *UsrDat,
unsigned NumFollowing,unsigned NumFollowers, unsigned NumFollowing,unsigned NumFollowers,
bool UsrFollowsMe,bool IFollowUsr) bool UsrFollowsMe,bool IFollowUsr)
{ {
extern const char *Txt_FOLLOWS_YOU;
extern const char *Txt_Following; extern const char *Txt_Following;
extern const char *Txt_Followers; extern const char *Txt_Followers;
extern const char *Txt_Following_unfollow; extern const char *Txt_Following_unfollow;
@ -141,7 +142,7 @@ void Fol_ShowFollowingAndFollowers (const struct UsrData *UsrDat,
/* User follows me? */ /* User follows me? */
fprintf (Gbl.F.Out,"<div id=\"follows_me\" class=\"DAT_LIGHT\">"); fprintf (Gbl.F.Out,"<div id=\"follows_me\" class=\"DAT_LIGHT\">");
if (UsrFollowsMe) if (UsrFollowsMe)
fprintf (Gbl.F.Out,"TE SIGUE"); // Need translation!!!! fprintf (Gbl.F.Out,"%s",Txt_FOLLOWS_YOU);
fprintf (Gbl.F.Out,"</div>"); fprintf (Gbl.F.Out,"</div>");
/* Number of followed */ /* Number of followed */

View File

@ -12066,6 +12066,27 @@ const char *Txt_Following_unfollow =
"Seguinte, deixar de seguir"; "Seguinte, deixar de seguir";
#endif #endif
const char *Txt_FOLLOWS_YOU =
#if L==1
"ET SEGUEIX";
#elif L==2
"FOLGT DIR";
#elif L==3
"FOLLOWS YOU";
#elif L==4
"TE SIGUE";
#elif L==5
"VOUS SUIT";
#elif L==6
"TE SIGUE"; // Okoteve traducción
#elif L==7
"TI SEGUE";
#elif L==8
"OBSERWUJE CI&Eogon;";
#elif L==9
"SEGUE VOC&Ecirc;";
#endif
const char *Txt_For_security_enter_your_password = const char *Txt_For_security_enter_your_password =
#if L==1 #if L==1
"Per a m&eacute;s seguretat, introdueixi la seva contrasenya"; "Per a m&eacute;s seguretat, introdueixi la seva contrasenya";