diff --git a/_ALL_SITES/freeplanet.app/db/i18n_website.js b/_ALL_SITES/freeplanet.app/db/i18n_website.js
index c1059426..a03410f3 100755
--- a/_ALL_SITES/freeplanet.app/db/i18n_website.js
+++ b/_ALL_SITES/freeplanet.app/db/i18n_website.js
@@ -102,7 +102,7 @@ const msg_website = {
descr: '
'
+ '- Condividendolo a tutti coloro che vogliono far parte insieme della crescita e sviluppo di una Nuova Era
'
+ '- Rispondendo ai Sondaggi Popolari e lasciando Feedback
'
- + '- Tramite una donazione (anche 1€ ) per le spese.
'
+ + ' - Tramite una piccola donazione per le spese dei Server
'
+ '
'
+ 'Vedo un futuro dove non si utilizzerà più denaro. Dove le persone si aiuteranno a vicenda e non avranno bisogno di "possedere" cose, ma le condivideranno con gli altri.
',
},
diff --git a/_ALL_SITES/freeplanet.app/db/lang/ws_it.js b/_ALL_SITES/freeplanet.app/db/lang/ws_it.js
index 4c4d7bbf..4652b915 100755
--- a/_ALL_SITES/freeplanet.app/db/lang/ws_it.js
+++ b/_ALL_SITES/freeplanet.app/db/lang/ws_it.js
@@ -208,7 +208,7 @@ const msg_website_it = {
descr: ''
+ '- Condividendolo a tutti coloro che vogliono far parte insieme della crescita e sviluppo di una Nuova Era
'
+ '- Rispondendo ai Sondaggi Popolari e lasciando Feedback
'
- + '- Tramite una donazione (anche 1€ ) per le spese.
'
+ + ' - Tramite una piccola donazione per le spese dei Server
'
+ '
'
+ 'Vedo un futuro dove non si utilizzerà più denaro. Dove le persone si aiuteranno a vicenda e non avranno bisogno di "possedere" cose, ma le condivideranno con gli altri.
',
},
diff --git a/_ALL_SITES/freeplanet.app/root/home/home.ts b/_ALL_SITES/freeplanet.app/root/home/home.ts
index 0727d751..c2b4ef32 100755
--- a/_ALL_SITES/freeplanet.app/root/home/home.ts
+++ b/_ALL_SITES/freeplanet.app/root/home/home.ts
@@ -47,7 +47,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if (tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
return {
diff --git a/_ALL_SITES/insiemesipuo.app/db/lang/ws_it.js b/_ALL_SITES/insiemesipuo.app/db/lang/ws_it.js
index fdfe18ed..eb3a735e 100755
--- a/_ALL_SITES/insiemesipuo.app/db/lang/ws_it.js
+++ b/_ALL_SITES/insiemesipuo.app/db/lang/ws_it.js
@@ -208,7 +208,7 @@ const msg_website_it = {
descr: ''
+ '- Condividendolo a tutti coloro che vogliono far parte insieme della crescita e sviluppo di una Nuova Era
'
+ '- Rispondendo ai Sondaggi Popolari e lasciando Feedback
'
- + '- Tramite una donazione (anche 1€ ) per le spese.
'
+ + ' - Tramite una piccola donazione per le spese dei Server
'
+ '
'
+ 'Vedo un futuro dove non si utilizzerà più denaro. Dove le persone si aiuteranno a vicenda e non avranno bisogno di "possedere" cose, ma le condivideranno con gli altri.
',
},
diff --git a/_ALL_SITES/insiemesipuo.app/root/home/home.ts b/_ALL_SITES/insiemesipuo.app/root/home/home.ts
index 0727d751..40521a32 100755
--- a/_ALL_SITES/insiemesipuo.app/root/home/home.ts
+++ b/_ALL_SITES/insiemesipuo.app/root/home/home.ts
@@ -47,7 +47,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if ( tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
return {
diff --git a/_ALL_SITES/popolodelnuovomondo.app/root/home/home.ts b/_ALL_SITES/popolodelnuovomondo.app/root/home/home.ts
index 0727d751..40521a32 100755
--- a/_ALL_SITES/popolodelnuovomondo.app/root/home/home.ts
+++ b/_ALL_SITES/popolodelnuovomondo.app/root/home/home.ts
@@ -47,7 +47,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if ( tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
return {
diff --git a/src/App.ts b/src/App.ts
index 2a551b78..bd3762f3 100755
--- a/src/App.ts
+++ b/src/App.ts
@@ -44,7 +44,7 @@ export default {
console.info('SESSIONE IN SVILUPPO ! (DEV)')
// console.info(process.env)
}
- if (tools.isTest()) {
+ if ( tools.isTest() && !process.env.DEV) {
console.info('SESSIONE IN TEST ! (TEST)')
} else {
if (process.env.PROD) {
diff --git a/src/components/CVerifyTelegram/CVerifyTelegram.ts b/src/components/CVerifyTelegram/CVerifyTelegram.ts
index 3ff38efb..8ba4e3cb 100755
--- a/src/components/CVerifyTelegram/CVerifyTelegram.ts
+++ b/src/components/CVerifyTelegram/CVerifyTelegram.ts
@@ -5,6 +5,7 @@ import { CCopyBtn } from '../CCopyBtn'
import { useUserStore } from '@store/UserStore'
import { useQuasar } from 'quasar'
import { useI18n } from '@/boot/i18n'
+import { tools } from '@store/Modules/tools'
export default defineComponent({
name: 'CVerifyTelegram',
@@ -31,7 +32,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if (tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
function getBotNameTelegram() {
return t('ws.botname');
diff --git a/src/db/i18n_website.js b/src/db/i18n_website.js
index c1059426..a03410f3 100755
--- a/src/db/i18n_website.js
+++ b/src/db/i18n_website.js
@@ -102,7 +102,7 @@ const msg_website = {
descr: ''
+ '- Condividendolo a tutti coloro che vogliono far parte insieme della crescita e sviluppo di una Nuova Era
'
+ '- Rispondendo ai Sondaggi Popolari e lasciando Feedback
'
- + '- Tramite una donazione (anche 1€ ) per le spese.
'
+ + ' - Tramite una piccola donazione per le spese dei Server
'
+ '
'
+ 'Vedo un futuro dove non si utilizzerà più denaro. Dove le persone si aiuteranno a vicenda e non avranno bisogno di "possedere" cose, ma le condivideranno con gli altri.
',
},
diff --git a/src/db/lang/ws_it.js b/src/db/lang/ws_it.js
index 4c4d7bbf..77ef8712 100755
--- a/src/db/lang/ws_it.js
+++ b/src/db/lang/ws_it.js
@@ -208,7 +208,7 @@ const msg_website_it = {
descr: ''
+ '- Condividendolo a tutti coloro che vogliono far parte insieme della crescita e sviluppo di una Nuova Era
'
+ '- Rispondendo ai Sondaggi Popolari e lasciando Feedback
'
- + '- Tramite una donazione (anche 1€ ) per le spese.
'
+ + ' - Tramite una piccola donazione per le spese dei Server.
'
+ '
'
+ 'Vedo un futuro dove non si utilizzerà più denaro. Dove le persone si aiuteranno a vicenda e non avranno bisogno di "possedere" cose, ma le condivideranno con gli altri.
',
},
diff --git a/src/db/static_data.ts b/src/db/static_data.ts
index 00735d46..b212f2c6 100755
--- a/src/db/static_data.ts
+++ b/src/db/static_data.ts
@@ -628,8 +628,8 @@ const baseroutes: IListRoutes[] = [
const arrLangUsed = [
'it',
- 'enUs',
- 'es',
+ // 'enUs',
+ // 'es',
]
const lang_available: ILang[] = [
diff --git a/src/root/home_freeplanet/home_freeplanet.ts b/src/root/home_freeplanet/home_freeplanet.ts
index 0727d751..40521a32 100755
--- a/src/root/home_freeplanet/home_freeplanet.ts
+++ b/src/root/home_freeplanet/home_freeplanet.ts
@@ -47,7 +47,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if ( tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
return {
diff --git a/src/root/home_insiemesipuo/home_insiemesipuo.ts b/src/root/home_insiemesipuo/home_insiemesipuo.ts
index 0727d751..40521a32 100755
--- a/src/root/home_insiemesipuo/home_insiemesipuo.ts
+++ b/src/root/home_insiemesipuo/home_insiemesipuo.ts
@@ -47,7 +47,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if ( tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
return {
diff --git a/src/root/home_pdnm/home_pdnm.ts b/src/root/home_pdnm/home_pdnm.ts
index 0727d751..40521a32 100755
--- a/src/root/home_pdnm/home_pdnm.ts
+++ b/src/root/home_pdnm/home_pdnm.ts
@@ -47,7 +47,11 @@ export default defineComponent({
}
function getLinkBotTelegram(): string {
- return getValDb('TELEG_BOT_LINK', false)
+ if ( tools.isTest() && !process.env.DEV) {
+ return getValDb('TELEG_BOT_LINK_TEST', false)
+ } else{
+ return getValDb('TELEG_BOT_LINK', false)
+ }
}
return {
diff --git a/src/root/presentazione/presentazione.scss b/src/root/presentazione/presentazione.scss
index db7b581d..b6f8d8b3 100755
--- a/src/root/presentazione/presentazione.scss
+++ b/src/root/presentazione/presentazione.scss
@@ -1,3 +1,6 @@
+li {
+ color: darkgreen !important;
+}
.testo-banda {
//background: -webkit-gradient(linear, left top, left bottom, from(#3144f0), to(transparent));
@@ -320,7 +323,7 @@ body.mobile .landing:before {
}
.mylist {
- background: #3fdaff;
+ background: #ebefef;
padding-left: 1.25rem;
}
diff --git a/src/root/presentazione/presentazione.vue b/src/root/presentazione/presentazione.vue
index b83e4e4e..fed521cb 100755
--- a/src/root/presentazione/presentazione.vue
+++ b/src/root/presentazione/presentazione.vue
@@ -425,6 +425,6 @@
-
diff --git a/src/statics/lang/enUs.js b/src/statics/lang/enUs.js
index 8791ae01..b79d3782 100755
--- a/src/statics/lang/enUs.js
+++ b/src/statics/lang/enUs.js
@@ -385,7 +385,7 @@ const msg_enUs = {
duplicate_email: 'Email was already registered',
user_already_exist: 'Registration with these data (name, surname and mobile phone) has already been created. To access the site, click on the LOGIN button from the HomePage.',
user_extralist_not_found: 'User in archive not found, insert the Name, Surname and mobile phone sent previously',
- user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
+ user_aportador_not_valid: 'Il link di registrazione non sembra risultare valido.',
duplicate_username: 'Username is already taken',
username_not_valid: 'Username not valid',
aportador_not_exist: 'The username of the person who invited you is not present. Contact us.',
diff --git a/src/statics/lang/es.js b/src/statics/lang/es.js
index 856db15e..95d2f0b4 100755
--- a/src/statics/lang/es.js
+++ b/src/statics/lang/es.js
@@ -388,7 +388,7 @@ const msg_es = {
duplicate_email: 'La email ya ha sido registrada',
user_already_exist: 'El registro con estos datos (nombre, apellido y teléfono móvil) ya se ha llevado a cabo. Para acceder al sitio, haga clic en el botón INICIAR SESIÓN desde la Página de inicio.',
user_extralist_not_found: 'Usuario en el archivo no encontrado, inserte el nombre, apellido y número de teléfono enviado previamente',
- user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
+ user_aportador_not_valid: 'Il link di registrazione non sembra risultare valido.',
duplicate_username: 'El nombre de usuario ya ha sido utilizado',
username_not_valid: 'Username not valid',
aportador_not_exist: 'El nombre de usuario de la persona que lo invitó no está presente. Contactanos.',
diff --git a/src/statics/lang/fr.js b/src/statics/lang/fr.js
index 45e0c255..45c31bc6 100755
--- a/src/statics/lang/fr.js
+++ b/src/statics/lang/fr.js
@@ -386,7 +386,7 @@ const msg_fr = {
duplicate_email: 'L\'email a déjà été enregistré',
user_already_exist: 'L\'enregistrement avec ces données (nom, prénom et téléphone portable) a déjà été effectué. Pour accéder au site, cliquez sur le bouton CONNEXION de la page d\'accueil.',
user_extralist_not_found: 'Utilisateur dans les archives introuvable, insérez le nom, le prénom et le numéro de téléphone portable envoyés précédemment',
- user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
+ user_aportador_not_valid: 'Il link di registrazione non sembra risultare valido.',
duplicate_username: 'Le nom d\'utilisateur a déjà été utilisé',
username_not_valid: 'Username not valid',
aportador_not_exist: 'Le nom d\'utilisateur de la personne qui vous a invité n\'est pas présent. Contactez-nous.',
diff --git a/src/statics/lang/it.js b/src/statics/lang/it.js
index 42982b4d..c5a18436 100755
--- a/src/statics/lang/it.js
+++ b/src/statics/lang/it.js
@@ -522,7 +522,7 @@ const msg_it = {
invalid_email: 'l\'Email non è valida',
user_already_exist: 'La registrazione con questi dati (nome, cognome e cellulare) è stata già effettuata. Per accedere al sito, cliccare sul bottone LOGIN dalla HomePage.',
user_extralist_not_found: 'Utente in archivio non trovato, inserire il Nome, Cognome e numero di cellulare comunicato nella lista nel 2019. Se questa è una nuova registrazione, dovete registrarvi tramite il LINK di chi vi sta invitando.',
- user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
+ user_aportador_not_valid: 'Il link di registrazione non sembra risultare valido.',
duplicate_username: 'L\'Username è stato già utilizzato',
username_not_valid: 'L\'Username non é valido',
aportador_not_exist: 'L\'Username di chi ti ha invitato non è presente. Contattaci.',
diff --git a/src/statics/lang/pt.js b/src/statics/lang/pt.js
index 79539691..9eeea2a5 100755
--- a/src/statics/lang/pt.js
+++ b/src/statics/lang/pt.js
@@ -398,7 +398,7 @@ const msg_pt = {
duplicate_email: 'o e-mail já foi registrado',
user_already_exist: 'O registo com estes dados (nome, apelido e telemóvel) já foi feito. Para acessar o site, clique no botão LOGIN da HomePage.',
user_extralist_not_found: 'Utilizador no arquivo não encontrado, introduza o Nome, Apelido e número de telemóvel comunicado na lista em 2019. Se este for um novo registo, deve registar-se através do LINK de quem o está a convidar.',
- user_not_this_aportador: 'Estás a usar um link de alguém que não o teu convidado original',
+ user_aportador_not_valid: 'Il link di registrazione non sembra risultare valido.',
duplicate_username: 'O nome de usuário já foi usado',
username_not_valid: 'Username not valid',
aportador_not_exist: 'O nome de usuário da pessoa que o convidou não está presente. Por favor, contacte-nos.',
diff --git a/src/statics/lang/si.js b/src/statics/lang/si.js
index 9a5e3b67..2a0f1b29 100755
--- a/src/statics/lang/si.js
+++ b/src/statics/lang/si.js
@@ -400,7 +400,7 @@ const msg_si = {
duplicate_email: 'E-naslov je že bila registrirana',
user_already_exist: 'Registracija s temi podatki (ime,priimek, telefonska)je že uporabljena.Za vstop na spletno stran, klikni na gumb LOGIN na Začetni Strani.',
user_extralist_not_found: 'Uporabnik ni najden v arhivu, vpiši Ime,Priimek in telefonsko, ki si jo posredoval v listi leta 2019. Če je to nova registracija, se moraš prijaviti potom LINKA osebe, ki te vabi.',
- user_not_this_aportador: 'Uporabljaš link druge osebe, različen od tvojega originalnega povabljenca.',
+ user_aportador_not_valid: 'Il link di registrazione non sembra risultare valido.',
duplicate_username: 'To Uporabniško ime je že uporabljeno',
username_not_valid: 'Username not valid',
aportador_not_exist: 'To Uporabniško ime, ki te je povabilo, ni več prisotno.Kontaktiraj nas.',
diff --git a/src/store/Modules/serv_constants.ts b/src/store/Modules/serv_constants.ts
index 4feda00d..07433e84 100755
--- a/src/store/Modules/serv_constants.ts
+++ b/src/store/Modules/serv_constants.ts
@@ -6,7 +6,7 @@ export const serv_constants = {
RIS_CODE_EMAIL_ALREADY_VERIFIED: -5,
RIS_CODE_EMAIL_VERIFIED: 1,
- RIS_CODE_USER_NOT_THIS_APORTADOR: -75,
+ RIS_CODE_USER_APORTADOR_NOT_VALID: -75,
RIS_CODE_USER_EXTRALIST_NOTFOUND: -70,
RIS_CODE_USERNAME_ALREADY_EXIST: -60,
RIS_CODE_USERNAME_NOT_VALID: -65,
diff --git a/src/store/Modules/tools.ts b/src/store/Modules/tools.ts
index a3cf112c..9457863a 100644
--- a/src/store/Modules/tools.ts
+++ b/src/store/Modules/tools.ts
@@ -3110,9 +3110,9 @@ export const tools = {
} else if (riscode === serv_constants.RIS_CODE_USER_EXTRALIST_NOTFOUND) {
this.showNegativeNotif(mythisq, t('reg.err.user_extralist_not_found') + ' ' + msg)
- } else if (riscode === serv_constants.RIS_CODE_USER_NOT_THIS_APORTADOR) {
+ } else if (riscode === serv_constants.RIS_CODE_USER_APORTADOR_NOT_VALID) {
- this.showNegativeNotif(mythisq, t('reg.err.user_not_this_aportador') + ' ' + msg)
+ this.showNegativeNotif(mythisq, t('reg.err.user_aportador_not_valid') + ' ' + msg)
} else if (riscode === serv_constants.RIS_CODE_USERNAME_NOT_VALID) {
this.showNotif(mythisq, t('reg.err.username_not_valid'))
diff --git a/src/views/user/myprofile/myprofile.vue b/src/views/user/myprofile/myprofile.vue
index d34144d8..73b77aef 100755
--- a/src/views/user/myprofile/myprofile.vue
+++ b/src/views/user/myprofile/myprofile.vue
@@ -24,6 +24,14 @@
myuser.profile.nationality
}})
+
+
+ {{ myuser.profile.qualifica }}
+
+
+
+ {{ myuser.profile.biografia }}
+
+
-
-
- {{ myuser.profile.qualifica }}
-
-
- {{ myuser.profile.biografia }}
-
-