.env.production file eliminated ! (-> .env)

.env.production worked in local
added myconfig
messagepopup working (but not ready yet)
added Graphql (only module)
This commit is contained in:
Paolo Arena
2018-12-26 21:02:16 +01:00
parent e41eeb43ca
commit 7a217c3ca9
42 changed files with 430 additions and 657 deletions

View File

@@ -6,7 +6,20 @@ const messages = {
msg: {
hello: 'Buongiorno',
myAppName: 'FreePlanet',
myDescriz: 'La prima App Libera e per Tutti'
myDescriz: 'La prima App Libera'
},
pages: {
home: 'Principale',
SignUp: 'Registrazione',
SignIn: 'Login',
Test: 'Test',
},
components: {
authentication:{
login: {
facebook: 'Facebook'
}
}
},
reg: {
incorso: 'Registrazione in corso...',
@@ -53,6 +66,11 @@ const messages = {
logout:{
uscito: 'Sei Uscito',
},
errors: {
graphql: {
undefined: 'non definito'
}
},
},
enUk: {
comp:{
@@ -61,7 +79,20 @@ const messages = {
msg: {
hello: 'Hello!',
myAppName: 'FreePlanet',
myDescriz: 'The first Free app for Everyone'
myDescriz: 'The first Free app'
},
pages: {
home: 'Dashboard One',
SignUp: 'SignUp',
SignIn: 'SignIn',
Test: 'Test',
},
components: {
authentication:{
login: {
facebook: 'Facebook'
}
}
},
reg: {
incorso: 'Registration please wait...',
@@ -108,6 +139,11 @@ const messages = {
logout:{
uscito: 'Logout successfully',
},
errors: {
graphql: {
undefined: 'undefined'
}
},
},
};