lesli_shield 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/lesli_shield/confirmations.css +18763 -0
- data/app/assets/stylesheets/lesli_shield/devise/oauth.css +32 -0
- data/app/assets/stylesheets/lesli_shield/passwords.css +18717 -1
- data/app/assets/stylesheets/lesli_shield/registrations.css +18804 -1
- data/app/assets/stylesheets/lesli_shield/sessions.css +18804 -1
- data/app/assets/stylesheets/lesli_shield/users.css +30 -0
- data/app/controllers/lesli_shield/dashboards_controller.rb +1 -8
- data/app/controllers/lesli_shield/invites_controller.rb +80 -0
- data/app/controllers/lesli_shield/role/actions_controller.rb +32 -20
- data/app/controllers/lesli_shield/roles_controller.rb +16 -8
- data/app/controllers/lesli_shield/sessions_controller.rb +5 -8
- data/app/controllers/lesli_shield/user/roles_controller.rb +62 -0
- data/app/controllers/lesli_shield/users_controller.rb +57 -20
- data/app/controllers/users/confirmations_controller.rb +42 -8
- data/app/controllers/users/passwords_controller.rb +52 -37
- data/app/controllers/users/registrations_controller.rb +2 -8
- data/app/controllers/users/sessions_controller.rb +57 -50
- data/app/helpers/lesli_shield/invites_helper.rb +4 -0
- data/app/helpers/lesli_shield/user/roles_helper.rb +4 -0
- data/app/interfaces/lesli_shield/authorization_interface.rb +8 -2
- data/app/mailers/lesli_shield/devise_mailer.rb +98 -0
- data/app/mailers/lesli_shield/invitation.html.erb +23 -0
- data/app/models/concerns/lesli_shield/user_security.rb +222 -0
- data/app/models/lesli_shield/account.rb +1 -1
- data/app/models/lesli_shield/dashboard.rb +1 -4
- data/app/models/lesli_shield/invite.rb +24 -0
- data/{lib/vue/confirmations.js → app/models/lesli_shield/role/action.rb} +17 -10
- data/{db/migrate/v1/0801003010_create_lesli_shield_dashboards.rb → app/models/lesli_shield/role/privilege.rb} +5 -4
- data/app/models/lesli_shield/user/role.rb +8 -0
- data/app/models/lesli_shield/user/session.rb +80 -0
- data/app/services/lesli_shield/invite_service.rb +43 -0
- data/app/services/lesli_shield/role_action_service.rb +118 -0
- data/app/services/lesli_shield/role_privilege_service.rb +112 -0
- data/app/{operators/lesli_shield/user_registration_operator.rb → services/lesli_shield/user_registration_service.rb} +26 -29
- data/app/services/lesli_shield/user_session_service.rb +78 -0
- data/app/services/lesli_shield/user_validator_service.rb +221 -0
- data/app/views/devise/confirmations/show.html.erb +4 -6
- data/app/views/devise/passwords/edit.html.erb +1 -2
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +5 -4
- data/app/views/devise/sessions/new.html.erb +3 -2
- data/app/views/devise/shared/_application-devise-simple.erb +59 -0
- data/app/views/devise/shared/_application-devise.html.erb +76 -0
- data/app/views/lesli_shield/dashboards/_component-calendar.html.erb +1 -0
- data/app/views/lesli_shield/dashboards/_component-chart-bar.html.erb +6 -0
- data/app/views/lesli_shield/dashboards/_component-chart-line.html.erb +8 -0
- data/app/views/lesli_shield/dashboards/_component-count.html.erb +1 -0
- data/app/views/lesli_shield/dashboards/_component-date.html.erb +1 -0
- data/app/views/lesli_shield/dashboards/_component-weather.html.erb +1 -0
- data/app/views/lesli_shield/invites/_form.html.erb +10 -0
- data/app/views/lesli_shield/invites/_invite.html.erb +2 -0
- data/app/views/lesli_shield/invites/edit.html.erb +12 -0
- data/app/views/lesli_shield/invites/index.html.erb +66 -0
- data/{db/migrate/v1/0801001710_create_lesli_shield_settings.rb → app/views/lesli_shield/invites/new.html.erb} +9 -10
- data/{lib/vue/apps/dashboards/components/engine-version.vue → app/views/lesli_shield/invites/show.html.erb} +26 -43
- data/app/views/lesli_shield/partials/_navigation.html.erb +2 -4
- data/app/views/lesli_shield/{roles/_form-privileges.html.erb → role/actions/_form.html.erb} +5 -30
- data/app/views/lesli_shield/role/actions/index.html.erb +14 -0
- data/app/views/lesli_shield/roles/index.html.erb +2 -6
- data/app/views/lesli_shield/roles/new.html.erb +0 -11
- data/app/views/lesli_shield/roles/show.html.erb +5 -8
- data/app/views/lesli_shield/user/roles/_form.html.erb +17 -0
- data/app/views/lesli_shield/user/roles/_role.html.erb +2 -0
- data/app/views/lesli_shield/user/roles/edit.html.erb +12 -0
- data/app/views/lesli_shield/user/roles/index.html.erb +16 -0
- data/app/views/lesli_shield/user/roles/new.html.erb +11 -0
- data/app/views/lesli_shield/user/roles/show.html.erb +10 -0
- data/app/views/lesli_shield/users/{_viewer-activities.html.erb → _activities-viewer.html.erb} +2 -4
- data/app/views/lesli_shield/users/_information-card.html.erb +3 -3
- data/app/views/lesli_shield/users/_management-privileges.html.erb +74 -0
- data/app/views/lesli_shield/users/_management-security.html.erb +5 -0
- data/app/views/lesli_shield/users/index.html.erb +3 -7
- data/app/views/lesli_shield/users/new.html.erb +5 -11
- data/app/views/lesli_shield/users/show.html.erb +7 -5
- data/config/initializers/devise.rb +305 -304
- data/config/locales/translations.en.yml +4 -1
- data/config/locales/translations.es.yml +4 -1
- data/config/locales/translations.it.yml +4 -1
- data/config/routes.rb +7 -8
- data/db/migrate/v1/0801100210_create_lesli_shield_role_actions.rb +48 -0
- data/db/migrate/v1/0801100410_create_lesli_shield_role_privileges.rb +45 -0
- data/db/migrate/v1/0801110110_create_lesli_shield_user_roles.rb +43 -0
- data/db/migrate/v1/0801111210_create_lesli_shield_user_sessions.rb +56 -0
- data/db/migrate/v1/0801120110_create_lesli_shield_invites.rb +49 -0
- data/lib/lesli_shield/engine.rb +3 -3
- data/lib/lesli_shield/router.rb +21 -0
- data/lib/lesli_shield/version.rb +2 -2
- data/lib/lesli_shield.rb +1 -1
- data/lib/scss/_devise.scss +10 -0
- data/lib/scss/confirmations.scss +24 -24
- data/lib/tasks/lesli_shield_tasks.rake +1 -1
- data/readme.md +59 -20
- metadata +69 -44
- data/app/controllers/lesli_shield/dashboard/components_controller.rb +0 -60
- data/app/models/lesli_shield/dashboard/component.rb +0 -18
- data/app/views/lesli_shield/dashboards/edit.html.erb +0 -1
- data/app/views/lesli_shield/dashboards/index.html.erb +0 -9
- data/app/views/lesli_shield/dashboards/new.html.erb +0 -1
- data/app/views/lesli_shield/dashboards/show.html.erb +0 -1
- data/app/views/lesli_shield/roles/_session.html.erb +0 -2
- data/app/views/lesli_shield/roles/edit.html.erb +0 -12
- data/app/views/lesli_shield/roles/update.turbo_stream.erb +0 -3
- data/app/views/lesli_shield/users/update.turbo_stream.erb +0 -3
- data/lib/lesli_shield/routing.rb +0 -23
- data/lib/vue/application.js +0 -83
- data/lib/vue/apps/sessions/index.vue +0 -50
- data/lib/vue/passwords.js +0 -137
- data/lib/vue/registrations.js +0 -144
- data/lib/vue/sessions.js +0 -148
- data/lib/vue/stores/sessions.js +0 -43
- data/lib/vue/stores/translations.json +0 -162
- /data/app/views/lesli_shield/roles/{_form-information.html.erb → _form.html.erb} +0 -0
- /data/db/migrate/v1/{0801120310_create_lesli_shield_user_shortcuts.rb → 0801111010_create_lesli_shield_user_shortcuts.rb} +0 -0
- /data/db/migrate/v1/{0801120410_create_lesli_shield_user_tokens.rb → 0801111110_create_lesli_shield_user_tokens.rb} +0 -0
data/lib/vue/registrations.js
DELETED
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
Lesli
|
|
4
|
-
|
|
5
|
-
Copyright (c) 2023, Lesli Technologies, S. A.
|
|
6
|
-
|
|
7
|
-
This program is free software: you can redistribute it and/or modify
|
|
8
|
-
it under the terms of the GNU General Public License as published by
|
|
9
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
10
|
-
(at your option) any later version.
|
|
11
|
-
|
|
12
|
-
This program is distributed in the hope that it will be useful,
|
|
13
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15
|
-
GNU General Public License for more details.
|
|
16
|
-
|
|
17
|
-
You should have received a copy of the GNU General Public License
|
|
18
|
-
along with this program. If not, see http://www.gnu.org/licenses/.
|
|
19
|
-
|
|
20
|
-
Lesli · Ruby on Rails SaaS Development Framework.
|
|
21
|
-
|
|
22
|
-
Made with ♥ by LesliTech
|
|
23
|
-
Building a better future, one line of code at a time.
|
|
24
|
-
|
|
25
|
-
@contact hello@lesli.tech
|
|
26
|
-
@website https://www.lesli.tech
|
|
27
|
-
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
|
|
28
|
-
|
|
29
|
-
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
|
30
|
-
// ·
|
|
31
|
-
*/
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// ·
|
|
35
|
-
import application from "Lesli/vue/public"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
// ·
|
|
39
|
-
application({
|
|
40
|
-
|
|
41
|
-
data(){
|
|
42
|
-
return {
|
|
43
|
-
translations: {},
|
|
44
|
-
password_uppercase: 0,
|
|
45
|
-
password_symbol: 0,
|
|
46
|
-
password_number: 0,
|
|
47
|
-
telephone_code: "",
|
|
48
|
-
telephone_codes: null,
|
|
49
|
-
sign_up: {
|
|
50
|
-
email: "",
|
|
51
|
-
password: "",
|
|
52
|
-
password_confirmation: '',
|
|
53
|
-
// first_name: null,
|
|
54
|
-
// last_name: null,
|
|
55
|
-
// telephone: null,
|
|
56
|
-
},
|
|
57
|
-
progress_bar_active: false,
|
|
58
|
-
notification: {
|
|
59
|
-
show: false,
|
|
60
|
-
message: '',
|
|
61
|
-
type: 'is-danger'
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
mounted() {
|
|
67
|
-
this.$refs.email.focus()
|
|
68
|
-
},
|
|
69
|
-
methods: {
|
|
70
|
-
|
|
71
|
-
postRegistration(event) {
|
|
72
|
-
|
|
73
|
-
this.notification.show = false;
|
|
74
|
-
|
|
75
|
-
event.preventDefault();
|
|
76
|
-
|
|
77
|
-
const user = this.validateFields()
|
|
78
|
-
|
|
79
|
-
this.http.post(this.url.to(), user).then(response => {
|
|
80
|
-
|
|
81
|
-
//setTimeout(() => { this.url.go("/login") }, 5000)
|
|
82
|
-
|
|
83
|
-
}).catch((err)=>{
|
|
84
|
-
this.showNotification(err.message)
|
|
85
|
-
})
|
|
86
|
-
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
-
typing() {
|
|
90
|
-
this.notification.message= ""
|
|
91
|
-
this.notification.show= false
|
|
92
|
-
this.notification.type= "default"
|
|
93
|
-
this.verifyPasswords()
|
|
94
|
-
},
|
|
95
|
-
|
|
96
|
-
showNotification(message,type = "danger") {
|
|
97
|
-
this.notification.message = message
|
|
98
|
-
this.notification.type = type
|
|
99
|
-
this.notification.show = true
|
|
100
|
-
},
|
|
101
|
-
|
|
102
|
-
verifyPasswords() {
|
|
103
|
-
|
|
104
|
-
this.password_uppercase = 0
|
|
105
|
-
this.password_number = 0
|
|
106
|
-
this.password_symbol = 0
|
|
107
|
-
|
|
108
|
-
if (this.sign_up.password.length <= 0) {
|
|
109
|
-
return
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
if (this.sign_up.password.search(/[A-Z]/) < 0) {
|
|
113
|
-
this.password_uppercase = 1
|
|
114
|
-
} else {
|
|
115
|
-
this.password_uppercase = 2
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
if (this.sign_up.password.search(/[0-9]/) < 0) {
|
|
119
|
-
this.password_number = 1
|
|
120
|
-
} else {
|
|
121
|
-
this.password_number = 2
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
if (this.sign_up.password.search(/[!#$%&]/) < 0) {
|
|
125
|
-
this.password_symbol = 1
|
|
126
|
-
} else {
|
|
127
|
-
this.password_symbol = 2
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
},
|
|
131
|
-
|
|
132
|
-
validateFields() {
|
|
133
|
-
|
|
134
|
-
// · copy object without reference
|
|
135
|
-
const user = JSON.parse(JSON.stringify(this.sign_up))
|
|
136
|
-
|
|
137
|
-
if (user.password_confirmation == "") {
|
|
138
|
-
user.password_confirmation = user.password
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
return user
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
})
|
data/lib/vue/sessions.js
DELETED
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Lesli
|
|
3
|
-
|
|
4
|
-
Copyright (c) 2023, Lesli Technologies, S. A.
|
|
5
|
-
|
|
6
|
-
This program is free software: you can redistribute it and/or modify
|
|
7
|
-
it under the terms of the GNU General Public License as published by
|
|
8
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
9
|
-
(at your option) any later version.
|
|
10
|
-
|
|
11
|
-
This program is distributed in the hope that it will be useful,
|
|
12
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
-
GNU General Public License for more details.
|
|
15
|
-
|
|
16
|
-
You should have received a copy of the GNU General Public License
|
|
17
|
-
along with this program. If not, see http://www.gnu.org/licenses/.
|
|
18
|
-
|
|
19
|
-
Lesli · Ruby on Rails SaaS Development Framework.
|
|
20
|
-
|
|
21
|
-
Made with ♥ by LesliTech
|
|
22
|
-
Building a better future, one line of code at a time.
|
|
23
|
-
|
|
24
|
-
@contact hello@lesli.tech
|
|
25
|
-
@website https://www.lesli.tech
|
|
26
|
-
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
|
|
27
|
-
|
|
28
|
-
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
|
29
|
-
// ·
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
// ·
|
|
34
|
-
import application from "Lesli/vue/public"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
// ·
|
|
38
|
-
application({
|
|
39
|
-
|
|
40
|
-
data(){
|
|
41
|
-
return {
|
|
42
|
-
loading: false,
|
|
43
|
-
sign_in: {
|
|
44
|
-
email: "",
|
|
45
|
-
password: ""
|
|
46
|
-
},
|
|
47
|
-
notification: {
|
|
48
|
-
message: "",
|
|
49
|
-
show: false,
|
|
50
|
-
type: "default"
|
|
51
|
-
},
|
|
52
|
-
errors: []
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
mounted() {
|
|
56
|
-
this.$refs?.email?.focus()
|
|
57
|
-
|
|
58
|
-
if (lesli_application_development) {
|
|
59
|
-
this.sign_in.email = "hello@lesli.tech"
|
|
60
|
-
this.sign_in.password = "Tardis2024$"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
methods: {
|
|
64
|
-
|
|
65
|
-
togglePasswordInput() {
|
|
66
|
-
if (this.$refs.password.type === "password") {
|
|
67
|
-
this.$refs.password.type = "text";
|
|
68
|
-
} else {
|
|
69
|
-
this.$refs.password.type = "password";
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
|
|
73
|
-
validateEmail() {
|
|
74
|
-
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(this.sign_in.email)) {
|
|
75
|
-
console.log("error")
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
|
|
79
|
-
build_redirect_url(default_path = null) {
|
|
80
|
-
|
|
81
|
-
// redirect to the root of the domain by default
|
|
82
|
-
let redirect_url = "/"
|
|
83
|
-
|
|
84
|
-
try {
|
|
85
|
-
|
|
86
|
-
// search for a redirection route in the url params
|
|
87
|
-
redirect_url = Object.fromEntries(new URLSearchParams(window.location.search)).r
|
|
88
|
-
|
|
89
|
-
} catch (error) {
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// redirect to the default path if:
|
|
94
|
-
// - there is no query params with redirection
|
|
95
|
-
if (!redirect_url && default_path) {
|
|
96
|
-
redirect_url = default_path
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// redirect to the root if:
|
|
100
|
-
// - error parsing redirection route
|
|
101
|
-
// - there is no query params with redirection
|
|
102
|
-
if (!redirect_url) {
|
|
103
|
-
redirect_url = "/"
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
return redirect_url
|
|
107
|
-
|
|
108
|
-
},
|
|
109
|
-
|
|
110
|
-
postLogin(event) {
|
|
111
|
-
|
|
112
|
-
this.loading = true
|
|
113
|
-
|
|
114
|
-
event.preventDefault();
|
|
115
|
-
|
|
116
|
-
this.notification.show = false
|
|
117
|
-
|
|
118
|
-
let data = {
|
|
119
|
-
user: {
|
|
120
|
-
email: this.sign_in.email.toLowerCase(),
|
|
121
|
-
password: this.sign_in.password
|
|
122
|
-
}
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
this.http.post("/login", data).then(response => {
|
|
126
|
-
this.url.go(this.build_redirect_url(response.default_path))
|
|
127
|
-
}).catch(error => {
|
|
128
|
-
this.showNotification(error.message)
|
|
129
|
-
}).finally(() => {
|
|
130
|
-
this.loading = false
|
|
131
|
-
})
|
|
132
|
-
|
|
133
|
-
},
|
|
134
|
-
|
|
135
|
-
typing() {
|
|
136
|
-
this.notification.message= ""
|
|
137
|
-
this.notification.show= false
|
|
138
|
-
this.notification.type= "default"
|
|
139
|
-
},
|
|
140
|
-
|
|
141
|
-
showNotification(message, type="danger"){
|
|
142
|
-
this.notification.message = message;
|
|
143
|
-
this.notification.type = type;
|
|
144
|
-
this.notification.show = true;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
}
|
|
148
|
-
})
|
data/lib/vue/stores/sessions.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright (c) 2022, all rights reserved.
|
|
3
|
-
|
|
4
|
-
All the information provided by this platform is protected by international laws related to
|
|
5
|
-
industrial property, intellectual property, copyright and relative international laws.
|
|
6
|
-
All intellectual or industrial property rights of the code, texts, trade mark, design,
|
|
7
|
-
pictures and any other information belongs to the owner of this platform.
|
|
8
|
-
|
|
9
|
-
Without the written permission of the owner, any replication, modification,
|
|
10
|
-
transmission, publication is strictly forbidden.
|
|
11
|
-
|
|
12
|
-
For more information read the license file including with this software.
|
|
13
|
-
|
|
14
|
-
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
|
15
|
-
// ·
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
// ·
|
|
20
|
-
import { defineStore } from "pinia"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
// ·
|
|
24
|
-
export const useSessions = defineStore("shield.sessions", {
|
|
25
|
-
state: () => {
|
|
26
|
-
return {
|
|
27
|
-
sessions: {
|
|
28
|
-
pagination: {},
|
|
29
|
-
records: {}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
actions: {
|
|
34
|
-
|
|
35
|
-
get() {
|
|
36
|
-
this.http.get(this.url.shield("sessions")).then(result => {
|
|
37
|
-
this.sessions = result
|
|
38
|
-
}).catch(error => {
|
|
39
|
-
console.log(error)
|
|
40
|
-
})
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
})
|
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"en": {
|
|
3
|
-
"lesli": {
|
|
4
|
-
"application": {
|
|
5
|
-
"navigation_logout": "Logout",
|
|
6
|
-
"navigation_my_profile": "My profile"
|
|
7
|
-
},
|
|
8
|
-
"dashboards": {
|
|
9
|
-
"column_default": "Default",
|
|
10
|
-
"column_name": "Name",
|
|
11
|
-
"title": "Dashboards",
|
|
12
|
-
"view_add_component": "Add component"
|
|
13
|
-
},
|
|
14
|
-
"shared": {
|
|
15
|
-
"button_add_new": "Add new",
|
|
16
|
-
"button_delete": "Delete",
|
|
17
|
-
"button_edit": "Edit",
|
|
18
|
-
"button_list": "List",
|
|
19
|
-
"button_reload": "Reload",
|
|
20
|
-
"button_save": "Save",
|
|
21
|
-
"button_settings": "Settings",
|
|
22
|
-
"button_show": "Show",
|
|
23
|
-
"message_operation_error": "Operation failed. Please try again.",
|
|
24
|
-
"message_operation_success": "Operation completed successfully",
|
|
25
|
-
"toolbar_search": "Search...",
|
|
26
|
-
"view_discussions": "Discussions",
|
|
27
|
-
"view_files": "Files",
|
|
28
|
-
"view_quick_actions": "Quick actions",
|
|
29
|
-
"view_status_active": "Active",
|
|
30
|
-
"view_status_inactive": "Inactive"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"es": {
|
|
35
|
-
"lesli": {
|
|
36
|
-
"application": {
|
|
37
|
-
"navigation_logout": "Cerrar sesión",
|
|
38
|
-
"navigation_my_profile": "Mi perfil"
|
|
39
|
-
},
|
|
40
|
-
"dashboards": {
|
|
41
|
-
"column_default": "Default",
|
|
42
|
-
"column_name": "Nombre",
|
|
43
|
-
"title": "Dashboards",
|
|
44
|
-
"view_add_component": "Agregar componente"
|
|
45
|
-
},
|
|
46
|
-
"shared": {
|
|
47
|
-
"button_add_new": "Agregar nuevo",
|
|
48
|
-
"button_delete": "Eliminar",
|
|
49
|
-
"button_edit": "Editar",
|
|
50
|
-
"button_list": "Lista",
|
|
51
|
-
"button_reload": "Recargar",
|
|
52
|
-
"button_save": "Guardar",
|
|
53
|
-
"button_settings": "Configuración",
|
|
54
|
-
"button_show": "Ver",
|
|
55
|
-
"message_operation_error": "Operación fallida. Por favor, inténtelo de nuevo.",
|
|
56
|
-
"message_operation_success": "Operacion realizada satisfactoriamente",
|
|
57
|
-
"toolbar_search": "Buscar...",
|
|
58
|
-
"view_discussions": "Discusiones",
|
|
59
|
-
"view_files": "Archivos",
|
|
60
|
-
"view_quick_actions": "Acciones rapidas",
|
|
61
|
-
"view_status_active": "Activo",
|
|
62
|
-
"view_status_inactive": "Inactivo"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
"fr": {
|
|
67
|
-
"lesli": {
|
|
68
|
-
"application": {
|
|
69
|
-
"navigation_logout": ":lesli.application.navigation_logout:",
|
|
70
|
-
"navigation_my_profile": ":lesli.application.navigation_my_profile:"
|
|
71
|
-
},
|
|
72
|
-
"dashboards": {
|
|
73
|
-
"column_default": ":lesli.dashboards.column_default:",
|
|
74
|
-
"column_name": ":lesli.dashboards.column_name:",
|
|
75
|
-
"title": ":lesli.dashboards.title:",
|
|
76
|
-
"view_add_component": ":lesli.dashboards.view_add_component:"
|
|
77
|
-
},
|
|
78
|
-
"shared": {
|
|
79
|
-
"button_add_new": ":lesli.shared.button_add_new:",
|
|
80
|
-
"button_delete": ":lesli.shared.button_delete:",
|
|
81
|
-
"button_edit": ":lesli.shared.button_edit:",
|
|
82
|
-
"button_list": ":lesli.shared.button_list:",
|
|
83
|
-
"button_reload": ":lesli.shared.button_reload:",
|
|
84
|
-
"button_save": ":lesli.shared.button_save:",
|
|
85
|
-
"button_settings": ":lesli.shared.button_settings:",
|
|
86
|
-
"button_show": ":lesli.shared.button_show:",
|
|
87
|
-
"message_operation_error": ":lesli.shared.message_operation_error:",
|
|
88
|
-
"message_operation_success": ":lesli.shared.message_operation_success:",
|
|
89
|
-
"toolbar_search": ":lesli.shared.toolbar_search:",
|
|
90
|
-
"view_discussions": ":lesli.shared.view_discussions:",
|
|
91
|
-
"view_files": ":lesli.shared.view_files:",
|
|
92
|
-
"view_quick_actions": ":lesli.shared.view_quick_actions:",
|
|
93
|
-
"view_status_active": ":lesli.shared.view_status_active:",
|
|
94
|
-
"view_status_inactive": ":lesli.shared.view_status_inactive:"
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
"it": {
|
|
99
|
-
"lesli": {
|
|
100
|
-
"application": {
|
|
101
|
-
"navigation_logout": ":lesli.application.navigation_logout:",
|
|
102
|
-
"navigation_my_profile": ":lesli.application.navigation_my_profile:"
|
|
103
|
-
},
|
|
104
|
-
"dashboards": {
|
|
105
|
-
"column_default": ":lesli.dashboards.column_default:",
|
|
106
|
-
"column_name": ":lesli.dashboards.column_name:",
|
|
107
|
-
"title": ":lesli.dashboards.title:",
|
|
108
|
-
"view_add_component": ":lesli.dashboards.view_add_component:"
|
|
109
|
-
},
|
|
110
|
-
"shared": {
|
|
111
|
-
"button_add_new": ":lesli.shared.button_add_new:",
|
|
112
|
-
"button_delete": ":lesli.shared.button_delete:",
|
|
113
|
-
"button_edit": ":lesli.shared.button_edit:",
|
|
114
|
-
"button_list": ":lesli.shared.button_list:",
|
|
115
|
-
"button_reload": ":lesli.shared.button_reload:",
|
|
116
|
-
"button_save": ":lesli.shared.button_save:",
|
|
117
|
-
"button_settings": ":lesli.shared.button_settings:",
|
|
118
|
-
"button_show": ":lesli.shared.button_show:",
|
|
119
|
-
"message_operation_error": ":lesli.shared.message_operation_error:",
|
|
120
|
-
"message_operation_success": ":lesli.shared.message_operation_success:",
|
|
121
|
-
"toolbar_search": ":lesli.shared.toolbar_search:",
|
|
122
|
-
"view_discussions": ":lesli.shared.view_discussions:",
|
|
123
|
-
"view_files": ":lesli.shared.view_files:",
|
|
124
|
-
"view_quick_actions": ":lesli.shared.view_quick_actions:",
|
|
125
|
-
"view_status_active": ":lesli.shared.view_status_active:",
|
|
126
|
-
"view_status_inactive": ":lesli.shared.view_status_inactive:"
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"pt": {
|
|
131
|
-
"lesli": {
|
|
132
|
-
"application": {
|
|
133
|
-
"navigation_logout": ":lesli.application.navigation_logout:",
|
|
134
|
-
"navigation_my_profile": ":lesli.application.navigation_my_profile:"
|
|
135
|
-
},
|
|
136
|
-
"dashboards": {
|
|
137
|
-
"column_default": ":lesli.dashboards.column_default:",
|
|
138
|
-
"column_name": ":lesli.dashboards.column_name:",
|
|
139
|
-
"title": ":lesli.dashboards.title:",
|
|
140
|
-
"view_add_component": ":lesli.dashboards.view_add_component:"
|
|
141
|
-
},
|
|
142
|
-
"shared": {
|
|
143
|
-
"button_add_new": ":lesli.shared.button_add_new:",
|
|
144
|
-
"button_delete": ":lesli.shared.button_delete:",
|
|
145
|
-
"button_edit": ":lesli.shared.button_edit:",
|
|
146
|
-
"button_list": ":lesli.shared.button_list:",
|
|
147
|
-
"button_reload": ":lesli.shared.button_reload:",
|
|
148
|
-
"button_save": ":lesli.shared.button_save:",
|
|
149
|
-
"button_settings": ":lesli.shared.button_settings:",
|
|
150
|
-
"button_show": ":lesli.shared.button_show:",
|
|
151
|
-
"message_operation_error": ":lesli.shared.message_operation_error:",
|
|
152
|
-
"message_operation_success": ":lesli.shared.message_operation_success:",
|
|
153
|
-
"toolbar_search": ":lesli.shared.toolbar_search:",
|
|
154
|
-
"view_discussions": ":lesli.shared.view_discussions:",
|
|
155
|
-
"view_files": ":lesli.shared.view_files:",
|
|
156
|
-
"view_quick_actions": ":lesli.shared.view_quick_actions:",
|
|
157
|
-
"view_status_active": ":lesli.shared.view_status_active:",
|
|
158
|
-
"view_status_inactive": ":lesli.shared.view_status_inactive:"
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|