Version 21.101: Jun 28, 2022 Preparation for Turkish translation.

This commit is contained in:
acanas 2022-06-28 11:09:19 +02:00
parent ad4c31a5f0
commit 2fef64ca85
6 changed files with 2797 additions and 2506 deletions

View File

@ -606,10 +606,11 @@ TODO: Fix bug: error al enviar un mensaje a dos recipientes, error on duplicate
TODO: Attach pdf files in multimedia. TODO: Attach pdf files in multimedia.
*/ */
#define Log_PLATFORM_VERSION "SWAD 21.100.1 (2022-06-24)" #define Log_PLATFORM_VERSION "SWAD 21.101 (2022-06-28)"
#define CSS_FILE "swad21.100.css" #define CSS_FILE "swad21.100.css"
#define JS_FILE "swad21.100.js" #define JS_FILE "swad21.100.js"
/* /*
Version 21.101: Jun 28, 2022 Preparation for Turkish translation.. (331564 lines)
Version 21.100.1: Jun 24, 2022 Some messages translated to Turkish. (331273 lines) Version 21.100.1: Jun 24, 2022 Some messages translated to Turkish. (331273 lines)
Version 21.100: Jun 23, 2022 Changes in calendar. Version 21.100: Jun 23, 2022 Changes in calendar.
Some messages translated. (331107 lines) Some messages translated. (331107 lines)

View File

@ -447,11 +447,11 @@ void Hie_WriteBigNameCtyInsCtrDegCrs (void)
if (Gbl.Hierarchy.Cty.CtyCod > 0) if (Gbl.Hierarchy.Cty.CtyCod > 0)
{ {
HTM_DIV_Begin ("id=\"big_full_name\""); HTM_DIV_Begin ("id=\"big_full_name\"");
HTM_Txt ( (Gbl.Hierarchy.Level == HieLvl_CRS) ? Gbl.Hierarchy.Crs.FullName :// Full name HTM_Txt ( (Gbl.Hierarchy.Level == HieLvl_CRS) ? Gbl.Hierarchy.Crs.FullName :// Full name
((Gbl.Hierarchy.Level == HieLvl_DEG) ? Gbl.Hierarchy.Deg.FullName : ((Gbl.Hierarchy.Level == HieLvl_DEG) ? Gbl.Hierarchy.Deg.FullName :
((Gbl.Hierarchy.Level == HieLvl_CTR) ? Gbl.Hierarchy.Ctr.FullName : ((Gbl.Hierarchy.Level == HieLvl_CTR) ? Gbl.Hierarchy.Ctr.FullName :
((Gbl.Hierarchy.Level == HieLvl_INS) ? Gbl.Hierarchy.Ins.FullName : ((Gbl.Hierarchy.Level == HieLvl_INS) ? Gbl.Hierarchy.Ins.FullName :
Gbl.Hierarchy.Cty.Name[Gbl.Prefs.Language])))); Gbl.Hierarchy.Cty.Name[Gbl.Prefs.Language]))));
HTM_DIV_End (); HTM_DIV_End ();
HTM_DIV_Begin ("class=\"NOT_SHOWN\""); HTM_DIV_Begin ("class=\"NOT_SHOWN\"");

View File

@ -245,7 +245,8 @@ void Mnu_WriteMenuThisTab (void)
{ {
IsTheSelectedAction = (NumAct == Act_GetSuperAction (Gbl.Action.Act)); IsTheSelectedAction = (NumAct == Act_GetSuperAction (Gbl.Action.Act));
Title = Act_GetSubtitleAction (NumAct); // Title = Act_GetSubtitleAction (NumAct);
Title = Act_GetActionText (NumAct);
/***** Begin option *****/ /***** Begin option *****/
HTM_LI_Begin ("class=\"MENU_LIST_ITEM %s\"", HTM_LI_Begin ("class=\"MENU_LIST_ITEM %s\"",

File diff suppressed because it is too large Load Diff

View File

@ -57,7 +57,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Qualquer ação" "Qualquer ação"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Any action" // Çeviri lazim!
#endif #endif
, ,
[ActUnk] = [ActUnk] =
@ -80,7 +80,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Ação desconhecida" "Ação desconhecida"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Unknown action" // Çeviri lazim!
#endif #endif
, ,
[ActMnu] = [ActMnu] =
@ -103,7 +103,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Mostrar menu" "Mostrar menu"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show menu" // Çeviri lazim!
#endif #endif
, ,
[ActRefCon] = [ActRefCon] =
@ -126,7 +126,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Atualizar notificações e conectados" "Atualizar notificações e conectados"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Refresh notifications and connected" // Çeviri lazim!
#endif #endif
, ,
[ActWebSvc] = [ActWebSvc] =
@ -149,7 +149,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Serviço da Web (função de API)" "Serviço da Web (função de API)"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Web service (API function)" // Çeviri lazim!
#endif #endif
, ,
[ActFrmLogIn] = [ActFrmLogIn] =
@ -172,7 +172,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Landing page" "Landing page"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Landing page" // Çeviri lazim!
#endif #endif
, ,
[ActReqSch] = [ActReqSch] =
@ -195,7 +195,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Solicitar pesquisa" "Solicitar pesquisa"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Request search" // Çeviri lazim!
#endif #endif
, ,
[ActSeeGblTL] = [ActSeeGblTL] =
@ -218,7 +218,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Mostrar timeline global" "Mostrar timeline global"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActSeeSocPrf] = [ActSeeSocPrf] =
@ -241,7 +241,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Sugerir lista de usuários a seguir" "Sugerir lista de usuários a seguir"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Suggest list of users to follow" // Çeviri lazim!
#endif #endif
, ,
[ActSeeCal] = [ActSeeCal] =
@ -264,7 +264,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Mostrar calendário" "Mostrar calendário"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show calendar" // Çeviri lazim!
#endif #endif
, ,
[ActSeeNtf] = [ActSeeNtf] =
@ -287,7 +287,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Mostrar notificações" "Mostrar notificações"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show notifications" // Çeviri lazim!
#endif #endif
, ,
[ActLogIn] = [ActLogIn] =
@ -310,7 +310,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Autenticar usuário" "Autenticar usuário"
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Authenticate user" // Çeviri lazim!
#endif #endif
, ,
[ActLogInNew] = [ActLogInNew] =
@ -333,7 +333,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Authenticate user in empty account" // Precisa de tradução "Authenticate user in empty account" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Authenticate user in empty account" // Çeviri lazim!
#endif #endif
, ,
[ActLogInLan] = [ActLogInLan] =
@ -356,7 +356,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Change language after authentication" // Precisa de tradução "Change language after authentication" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Change language after authentication" // Çeviri lazim!
#endif #endif
, ,
[ActAnnSee] = [ActAnnSee] =
@ -379,7 +379,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Mark announcement as seen" // Precisa de tradução "Mark announcement as seen" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Mark announcement as seen" // Çeviri lazim!
#endif #endif
, ,
[ActReqSndNewPwd] = [ActReqSndNewPwd] =
@ -402,7 +402,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Request to send a new password" // Precisa de tradução "Request to send a new password" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Request to send a new password" // Çeviri lazim!
#endif #endif
, ,
[ActSndNewPwd] = [ActSndNewPwd] =
@ -425,7 +425,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Send new password" // Precisa de tradução "Send new password" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Send new password" // Çeviri lazim!
#endif #endif
, ,
[ActLogOut] = [ActLogOut] =
@ -448,7 +448,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Close session" // Precisa de tradução "Close session" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Close session" // Çeviri lazim!
#endif #endif
, ,
[ActSch] = [ActSch] =
@ -471,7 +471,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Search" // Precisa de tradução "Search" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Search" // Çeviri lazim!
#endif #endif
, ,
[ActRefNewPubGblTL] = [ActRefNewPubGblTL] =
@ -494,7 +494,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Refresh global timeline (new publications)" // Precisa de tradução "Refresh global timeline (new publications)" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Refresh global timeline (new publications)" // Çeviri lazim!
#endif #endif
, ,
[ActRefOldPubGblTL] = [ActRefOldPubGblTL] =
@ -517,7 +517,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show previous publications in global timeline" // Precisa de tradução "Show previous publications in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show previous publications in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActRcvPstGblTL] = [ActRcvPstGblTL] =
@ -540,7 +540,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Create post in global timeline" // Precisa de tradução "Create post in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Create post in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActRcvComGblTL] = [ActRcvComGblTL] =
@ -563,7 +563,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Create comment in global timeline" // Precisa de tradução "Create comment in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Create comment in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActShoHidComGblTL] = [ActShoHidComGblTL] =
@ -586,7 +586,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show hidden comments in global timeline" // Precisa de tradução "Show hidden comments in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show hidden comments in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActAllShaNotGblTL] = [ActAllShaNotGblTL] =
@ -609,7 +609,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show who shared a publication in global timeline" // Precisa de tradução "Show who shared a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show who shared a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActAllFavNotGblTL] = [ActAllFavNotGblTL] =
@ -632,7 +632,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show who favourited a publication in global timeline" // Precisa de tradução "Show who favourited a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show who favourited a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActAllFavComGblTL] = [ActAllFavComGblTL] =
@ -655,7 +655,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show who favourited a comment in global timeline" // Precisa de tradução "Show who favourited a comment in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show who favourited a comment in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActShaNotGblTL] = [ActShaNotGblTL] =
@ -678,7 +678,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Share a publication in global timeline" // Precisa de tradução "Share a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Share a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActUnsNotGblTL] = [ActUnsNotGblTL] =
@ -701,7 +701,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Unshare a publication in global timeline" // Precisa de tradução "Unshare a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Unshare a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActFavNotGblTL] = [ActFavNotGblTL] =
@ -724,7 +724,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Favourite a publication in global timeline" // Precisa de tradução "Favourite a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Favourite a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActUnfNotGblTL] = [ActUnfNotGblTL] =
@ -747,7 +747,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Unfavourite a publication in global timeline" // Precisa de tradução "Unfavourite a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Unfavourite a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActFavComGblTL] = [ActFavComGblTL] =
@ -770,7 +770,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Favourite a comment in global timeline" // Precisa de tradução "Favourite a comment in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Favourite a comment in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActUnfComGblTL] = [ActUnfComGblTL] =
@ -793,7 +793,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Unfavourite a comment in global timeline" // Precisa de tradução "Unfavourite a comment in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Unfavourite a comment in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActReqRemPubGblTL] = [ActReqRemPubGblTL] =
@ -816,7 +816,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Request deletion of a publication in global timeline" // Precisa de tradução "Request deletion of a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Request deletion of a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActRemPubGblTL] = [ActRemPubGblTL] =
@ -839,7 +839,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Delete a publication in global timeline" // Precisa de tradução "Delete a publication in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Delete a publication in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActReqRemComGblTL] = [ActReqRemComGblTL] =
@ -862,7 +862,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Request deletion of a comment in global timeline" // Precisa de tradução "Request deletion of a comment in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Request deletion of a comment in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActRemComGblTL] = [ActRemComGblTL] =
@ -885,7 +885,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Delete a comment in global timeline" // Precisa de tradução "Delete a comment in global timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Delete a comment in global timeline" // Çeviri lazim!
#endif #endif
, ,
[ActReqOthPubPrf] = [ActReqOthPubPrf] =
@ -908,7 +908,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Request to show public user profile" // Precisa de tradução "Request to show public user profile" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Request to show public user profile" // Çeviri lazim!
#endif #endif
, ,
[ActRefOldPubUsrTL] = [ActRefOldPubUsrTL] =
@ -931,7 +931,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show previous publications in user timeline" // Precisa de tradução "Show previous publications in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show previous publications in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActRcvPstUsrTL] = [ActRcvPstUsrTL] =
@ -954,7 +954,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Create post in user timeline" // Precisa de tradução "Create post in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Create post in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActRcvComUsrTL] = [ActRcvComUsrTL] =
@ -977,7 +977,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Create comment in user timeline" // Precisa de tradução "Create comment in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Create comment in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActShoHidComUsrTL] = [ActShoHidComUsrTL] =
@ -1000,7 +1000,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show hidden comments in user timeline" // Precisa de tradução "Show hidden comments in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show hidden comments in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActAllShaNotUsrTL] = [ActAllShaNotUsrTL] =
@ -1023,7 +1023,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show who shared a publication in user timeline" // Precisa de tradução "Show who shared a publication in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show who shared a publication in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActAllFavNotUsrTL] = [ActAllFavNotUsrTL] =
@ -1046,7 +1046,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show who favourited a publication in user timeline" // Precisa de tradução "Show who favourited a publication in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show who favourited a publication in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActAllFavComUsrTL] = [ActAllFavComUsrTL] =
@ -1069,7 +1069,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Show who favourited a comment in user timeline" // Precisa de tradução "Show who favourited a comment in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Show who favourited a comment in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActShaNotUsrTL] = [ActShaNotUsrTL] =
@ -1092,7 +1092,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] =
#elif L==9 // pt #elif L==9 // pt
"Share a publication in user timeline" // Precisa de tradução "Share a publication in user timeline" // Precisa de tradução
#elif L==10 // tr #elif L==10 // tr
"" // Çeviri lazim! "Share a publication in user timeline" // Çeviri lazim!
#endif #endif
, ,
[ActUnsNotUsrTL] = [ActUnsNotUsrTL] =

View File

@ -96,7 +96,7 @@ const char *Txt_Country_NO_HTML =
#elif L==9 #elif L==9
"País"; "País";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "Country"; // Çeviri lazim!
#endif #endif
const char *Txt_Confirmation_of_your_email_NO_HTML = // Don't use HTML entities like è here const char *Txt_Confirmation_of_your_email_NO_HTML = // Don't use HTML entities like è here
@ -119,7 +119,7 @@ const char *Txt_Confirmation_of_your_email_NO_HTML = // Don't use HTML entities
#elif L==9 #elif L==9
"Confirmação do seu email"; "Confirmação do seu email";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "Confirmation of your email"; // Çeviri lazim!
#endif #endif
// The following variables are compilated together in all languages because they are used in emails... // The following variables are compilated together in all languages because they are used in emails...
@ -319,7 +319,14 @@ const char *Txt_If_you_just_requested_from_X_the_confirmation_of_your_email_Y_NO
" Nesse caso, recomendamos que você verifique em %s" " Nesse caso, recomendamos que você verifique em %s"
" se você confirmou seu endereço de e-mail.\n\n"; " se você confirmou seu endereço de e-mail.\n\n";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "If you have just requested from %s"
" the confirmation of your email %s,"
" click on the following link"
" to confirm that direction:"
" %s/?act=%ld&key=%s\n\n"
"If it was not you, do not click on the link above!"
" In this case, we recommend that you check in %s"
" if you have confirmed your email address.\n\n"; // Çeviri lazim!
#endif #endif
const char *Txt_If_you_no_longer_wish_to_receive_email_notifications_NO_HTML[1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here const char *Txt_If_you_no_longer_wish_to_receive_email_notifications_NO_HTML[1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here
@ -365,7 +372,7 @@ const char *Txt_Institutions_NO_HTML =
#elif L==9 #elif L==9
"Instituções"; "Instituções";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "Institutions"; // Çeviri lazim!
#endif #endif
const char *Txt_MSG_From_NO_HTML[1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here const char *Txt_MSG_From_NO_HTML[1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here
@ -870,7 +877,17 @@ const char *Txt_The_following_password_has_been_assigned_to_you_to_log_in_X_NO_H
"Esta nova senha foi enviada apenas para o endereço de e-mail %s," "Esta nova senha foi enviada apenas para o endereço de e-mail %s,"
" que está no seu cartão de registro.\n\n"; " que está no seu cartão de registro.\n\n";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "The following password has been assigned to you to log in %s: %s\n"
"If you want to activate the new password,"
" you must enter %s with your ID/nickname/email"
" and this new password before %u days."
" Once you have logged in, you can change your password.\n"
"If you do not log in with this new password,"
" the old password will remain valid.\n"
"If you have received this message without having requested it,"
" is that someone who knows your ID, nickname or email has requested a new password sent to you.\n"
"This new password has been sent only to the email address %s,"
" which is on your record card.\n\n"; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_could_not_create_file_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_could_not_create_file_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -893,7 +910,7 @@ const char *Txt_UPLOAD_FILE_could_not_create_file_NO_HTML = // Warning: it is ve
#elif L==9 #elif L==9
"%s: não foi possível criar arquivo."; "%s: não foi possível criar arquivo.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: could not create file."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_Forbidden_NO_HTML = const char *Txt_UPLOAD_FILE_Forbidden_NO_HTML =
@ -916,7 +933,7 @@ const char *Txt_UPLOAD_FILE_Forbidden_NO_HTML =
#elif L==9 #elif L==9
"Você não pode criar arquivos aqui."; "Você não pode criar arquivos aqui.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "You can not create files here."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_You_must_specify_the_file_NO_HTML = const char *Txt_UPLOAD_FILE_You_must_specify_the_file_NO_HTML =
@ -939,7 +956,7 @@ const char *Txt_UPLOAD_FILE_You_must_specify_the_file_NO_HTML =
#elif L==9 #elif L==9
"Você deve especificar o arquivo."; "Você deve especificar o arquivo.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "You must specify the file."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -954,7 +971,7 @@ const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is
#elif L==5 #elif L==5
"%s: extension non autorisée."; "%s: extension non autorisée.";
#elif L==6 #elif L==6
"%s: extensión no permitida."; // Okoteve traducción "%s: extensión no permitida."; // Okoteve traducción
#elif L==7 #elif L==7
"%s: estensione non permessa."; "%s: estensione non permessa.";
#elif L==8 #elif L==8
@ -962,7 +979,7 @@ const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is
#elif L==9 #elif L==9
"%s: extensão não permitida."; "%s: extensão não permitida.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: extension not allowed."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_X_file_already_exists_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_X_file_already_exists_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -985,7 +1002,7 @@ const char *Txt_UPLOAD_FILE_X_file_already_exists_NO_HTML = // Warning: it is ve
#elif L==9 #elif L==9
"%s: o arquivo já existe."; "%s: o arquivo já existe.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: file already exists."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_File_too_large_maximum_X_MiB_NO_HTML = // Warning: it is very important to include %lu in the following sentences const char *Txt_UPLOAD_FILE_File_too_large_maximum_X_MiB_NO_HTML = // Warning: it is very important to include %lu in the following sentences
@ -1017,7 +1034,8 @@ const char *Txt_UPLOAD_FILE_File_too_large_maximum_X_MiB_NO_HTML = // Warning: i
"Arquivo muito grande (máximo %lu MiB) /" "Arquivo muito grande (máximo %lu MiB) /"
" outro problema de upload."; " outro problema de upload.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "File too large (maximum %lu MiB) /"
" another upload problem."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_Invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_Invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -1040,7 +1058,7 @@ const char *Txt_UPLOAD_FILE_Invalid_name_NO_HTML = // Warning: it is very import
#elif L==9 #elif L==9
"Nome inválido."; "Nome inválido.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "Invalid name."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_X_invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_X_invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -1063,7 +1081,7 @@ const char *Txt_UPLOAD_FILE_X_invalid_name_NO_HTML = // Warning: it is very impo
#elif L==9 #elif L==9
"%s: nome inválido."; "%s: nome inválido.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: invalid name."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_X_MIME_type_Y_not_allowed_NO_HTML = // Warning: it is very important to include two %s in the following sentences const char *Txt_UPLOAD_FILE_X_MIME_type_Y_not_allowed_NO_HTML = // Warning: it is very important to include two %s in the following sentences
@ -1086,7 +1104,7 @@ const char *Txt_UPLOAD_FILE_X_MIME_type_Y_not_allowed_NO_HTML = // Warning: it i
#elif L==9 #elif L==9
"%s: Tipo MIME %s não permitido."; "%s: Tipo MIME %s não permitido.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: MIME type %s not allowed."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_X_not_HTML_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_X_not_HTML_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -1109,7 +1127,7 @@ const char *Txt_UPLOAD_FILE_X_not_HTML_NO_HTML = // Warning: it is very importan
#elif L==9 #elif L==9
"%s: não HTML."; "%s: não HTML.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: not HTML."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very important to include %s in the following sentences const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very important to include %s in the following sentences
@ -1124,7 +1142,7 @@ const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very im
#elif L==5 #elif L==5
"%s: quota dépassé."; "%s: quota dépassé.";
#elif L==6 #elif L==6
"%s: cuota excedida."; // Okoteve traducción "%s: cuota excedida."; // Okoteve traducción
#elif L==7 #elif L==7
"%s: quota superata."; "%s: quota superata.";
#elif L==8 #elif L==8
@ -1132,7 +1150,7 @@ const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very im
#elif L==9 #elif L==9
"5s: quota excedida."; "5s: quota excedida.";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "%s: quota exceeded."; // Çeviri lazim!
#endif #endif
const char *Txt_UPLOAD_FILE_Upload_time_too_long_maximum_X_minutes_NO_HTML = // Warning: it is very important to include %lu in the following sentences const char *Txt_UPLOAD_FILE_Upload_time_too_long_maximum_X_minutes_NO_HTML = // Warning: it is very important to include %lu in the following sentences
@ -1155,7 +1173,7 @@ const char *Txt_UPLOAD_FILE_Upload_time_too_long_maximum_X_minutes_NO_HTML = //
#elif L==9 #elif L==9
"Tempo de upload muito longo (máximo %lu minutos)."; "Tempo de upload muito longo (máximo %lu minutos).";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "Upload time too long (maximum %lu minutes)."; // Çeviri lazim!
#endif #endif
const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here
@ -1238,5 +1256,5 @@ const char *Txt_Users_NO_HTML =
#elif L==9 #elif L==9
"Utilizadores"; "Utilizadores";
#elif L==10 // tr #elif L==10 // tr
""; // Çeviri lazim! "Users"; // Çeviri lazim!
#endif #endif