lesli_babel 0.1.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/lesli_babel/application.js +108 -52
  3. data/app/assets/javascripts/lesli_babel/application.js.LICENSE.txt +282 -0
  4. data/app/assets/stylesheets/lesli_babel/application.scss +2 -1
  5. data/app/assets/stylesheets/lesli_babel/dashboards.scss +3 -2
  6. data/app/controllers/lesli_babel/buckets_controller.rb +32 -8
  7. data/app/controllers/lesli_babel/modules_controller.rb +24 -18
  8. data/app/controllers/lesli_babel/strings_controller.rb +10 -10
  9. data/app/controllers/lesli_babel/translations_controller.rb +23 -12
  10. data/app/models/lesli_babel/module.rb +10 -1
  11. data/app/models/lesli_babel/string.rb +26 -9
  12. data/app/services/lesli_babel/deploy_rails_service.rb +93 -0
  13. data/app/services/lesli_babel/module_service.rb +1 -1
  14. data/app/services/lesli_babel/string_service.rb +6 -3
  15. data/app/views/lesli_babel/partials/_engine-sidebar.html.erb +9 -11
  16. data/config/locales/translations.en.yml +5 -0
  17. data/config/locales/translations.es.yml +5 -0
  18. data/config/routes.rb +16 -16
  19. data/db/migrate/v1.0/0901100110_create_lesli_babel_modules.rb +2 -2
  20. data/db/migrate/v1.0/0901110110_create_lesli_babel_buckets.rb +1 -1
  21. data/lib/lesli_babel/version.rb +2 -1
  22. data/lib/tasks/lesli_babel_tasks.rake +38 -56
  23. data/lib/vue/application.js +23 -9
  24. data/lib/vue/apps/modules/show.vue +26 -17
  25. data/lib/vue/components/form-string-new.vue +51 -63
  26. data/lib/vue/stores/module.js +25 -11
  27. data/lib/vue/stores/translations.js +1 -1
  28. data/lib/vue/stores/translations.json +38 -0
  29. data/readme.md +61 -9
  30. metadata +11 -5
@@ -1,17 +1,31 @@
1
1
  /*
2
- Copyright (c) 2022, all rights reserved.
2
+ Lesli
3
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.
4
+ Copyright (c) 2023, Lesli Technologies, S. A.
8
5
 
9
- Without the written permission of the owner, any replication, modification,
10
- transmission, publication is strictly forbidden.
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.
11
10
 
12
- For more information read the license file including with this software.
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.
13
15
 
14
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
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 https://www.lesli.tech
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
+ // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
15
29
  // ·
16
30
  */
17
31
 
@@ -25,7 +39,7 @@ export const useModule = defineStore("babel.module", {
25
39
  state: () => {
26
40
  return {
27
41
  id: 0,
28
- name: "",
42
+ code: "",
29
43
  platform: "",
30
44
  buckets: []
31
45
  }
@@ -35,7 +49,7 @@ export const useModule = defineStore("babel.module", {
35
49
  if (!modulo) return;
36
50
  this.http.get(this.url.babel("modules/:id", modulo)).then(result => {
37
51
  this.id = result.id
38
- this.name = result.name
52
+ this.code = result.code
39
53
  this.platform = result.platform
40
54
  this.fetchBuckets()
41
55
  })
@@ -39,7 +39,7 @@ export const useTranslations = defineStore("babel.translations", {
39
39
  },
40
40
  postDeploy() {
41
41
  this.http.post(this.url.babel("translations/deploy")).then(result => {
42
- this.msg.success("Translations deployed")
42
+ this.msg.success("Deploy successfully")
43
43
  })
44
44
  },
45
45
  postSync() {
@@ -0,0 +1,38 @@
1
+ {
2
+ "en": {
3
+ "lesli": {
4
+ "shared": {
5
+ "title_lesli": ":lesli.shared.title_lesli:"
6
+ },
7
+ "users": {
8
+ "title_users": "Users"
9
+ }
10
+ },
11
+ "lesli_babel": {
12
+ "shared": {
13
+ "title_lesli": ":lesli.shared.title_lesli:"
14
+ },
15
+ "users": {
16
+ "title_users": "Users"
17
+ }
18
+ }
19
+ },
20
+ "es": {
21
+ "lesli": {
22
+ "shared": {
23
+ "title_lesli": "Lesli en español "
24
+ },
25
+ "users": {
26
+ "title_users": "Usuarios"
27
+ }
28
+ },
29
+ "lesli_babel": {
30
+ "shared": {
31
+ "title_lesli": "Lesli en español "
32
+ },
33
+ "users": {
34
+ "title_users": "Usuarios"
35
+ }
36
+ }
37
+ }
38
+ }
data/readme.md CHANGED
@@ -1,19 +1,71 @@
1
1
  <p align="center">
2
- <img width="100" alt="LesliBabel logo" src="app/assets/images/lesli_babel/babel-logo.svg" />
2
+ <img width="75" alt="LesliBabel logo" src="./app/assets/images/lesli_babel/babel-logo.svg" />
3
+ <h3 align="center">Babel - Translation Management System for the Lesli Framework.</h3>
3
4
  </p>
4
5
 
5
- <h3 align="center">LesliBabel - Translation management system</h3>
6
-
7
6
  <hr/>
7
+ <p align="center">
8
+ <a target="blank" href="https://rubygems.org/gems/lesli_babel">
9
+ <img src="https://badge.fury.io/rb/lesli_babel.svg" alt="Gem Version" height="24">
10
+ </a>
11
+ </p>
12
+ <hr/>
13
+
14
+ ### Quick start
15
+
16
+ ```shell
17
+ # Add LesliBabel engine
18
+ bundle add lesli_babel
19
+ ```
20
+
21
+ ```shell
22
+ # Setup database
23
+ rake lesli:db:setup
24
+ ```
25
+
26
+ ```ruby
27
+ # Load LesliBabel
28
+ Rails.application.routes.draw do
29
+ mount LesliBabel::Engine => "/babel"
30
+ end
31
+ ```
32
+
33
+
34
+ ### Documentation
35
+ * [Roadmap](./docs/roadmap.md)
36
+ * [database](./docs/database.md)
37
+ * [documentation](https://www.lesli.dev/documentation/)
8
38
 
9
- Version 5.0
10
39
 
11
- ### License
12
- ------
13
- Software developed in [Guatemala](http://visitguatemala.com/) by [LesliTech](https://www.lesli.tech) distributed under the *General Public License v 3.0* you can read the full license [here](http://www.gnu.org/licenses/gpl-3.0.html)
40
+ ### Get in touch
14
41
 
15
- <br>
42
+ * [Website: https://www.lesli.tech](https://www.lesli.tech)
43
+ * [Email: hello@lesli.tech](hello@lesli.tech)
44
+ * [Twitter: @LesliTech](https://twitter.com/LesliTech)
45
+
46
+
47
+ ### License
48
+ -------
49
+ Copyright (c) 2023, Lesli Technologies, S. A.
50
+
51
+ This program is free software: you can redistribute it and/or modify
52
+ it under the terms of the GNU General Public License as published by
53
+ the Free Software Foundation, either version 3 of the License, or
54
+ (at your option) any later version.
55
+
56
+ This program is distributed in the hope that it will be useful,
57
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
58
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
59
+ GNU General Public License for more details.
60
+
61
+ You should have received a copy of the GNU General Public License
62
+ along with this program. If not, see http://www.gnu.org/licenses/.
63
+
64
+ <hr />
65
+ <br />
16
66
 
17
67
  <p align="center">
18
- <img alt="Lesli logo" width="100" src="./app/assets/images/lesli/brand/app-icon.svg" />
68
+ <img width="200" alt="Lesli logo" src="https://cdn.lesli.tech/lesli/brand/app-logo.svg" />
69
+ <h4 align="center">Ruby on Rails SaaS Development Framework.</h4>
19
70
  </p>
71
+
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lesli_babel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Lesli Development Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2023-11-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Translation management system for the Lesli Framework
13
+ description: Translation Management System for The Lesli Framework
14
14
  email:
15
15
  - hello@lesli.tech
16
16
  executables: []
@@ -21,6 +21,7 @@ files:
21
21
  - app/assets/config/lesli_babel_manifest.js
22
22
  - app/assets/images/lesli_babel/babel-logo.svg
23
23
  - app/assets/javascripts/lesli_babel/application.js
24
+ - app/assets/javascripts/lesli_babel/application.js.LICENSE.txt
24
25
  - app/assets/stylesheets/lesli_babel/application.scss
25
26
  - app/assets/stylesheets/lesli_babel/dashboards.scss
26
27
  - app/assets/stylesheets/lesli_babel/modules.scss
@@ -45,6 +46,7 @@ files:
45
46
  - app/models/lesli_babel/string/activity.rb
46
47
  - app/models/lesli_babel/string/discussion.rb
47
48
  - app/models/lesli_babel/translation.rb
49
+ - app/services/lesli_babel/deploy_rails_service.rb
48
50
  - app/services/lesli_babel/module_service.rb
49
51
  - app/services/lesli_babel/old/translations_android_service.rb
50
52
  - app/services/lesli_babel/old/translations_clone_service.rb
@@ -99,6 +101,8 @@ files:
99
101
  - app/views/lesli_babel/translations/index.html.erb
100
102
  - app/views/lesli_babel/translations/new.html.erb
101
103
  - app/views/lesli_babel/translations/show.html.erb
104
+ - config/locales/translations.en.yml
105
+ - config/locales/translations.es.yml
102
106
  - config/routes.rb
103
107
  - db/migrate/v1.0/0901100110_create_lesli_babel_modules.rb
104
108
  - db/migrate/v1.0/0901110110_create_lesli_babel_buckets.rb
@@ -119,10 +123,12 @@ files:
119
123
  - lib/vue/stores/statistics.js
120
124
  - lib/vue/stores/strings.js
121
125
  - lib/vue/stores/translations.js
126
+ - lib/vue/stores/translations.json
122
127
  - license
123
128
  - readme.md
124
129
  homepage: https://www.lesli.dev/
125
- licenses: []
130
+ licenses:
131
+ - GPL-3.0
126
132
  metadata:
127
133
  homepage_uri: https://www.lesli.dev/
128
134
  source_code_uri: https://github.com/LesliTech/LesliBabel
@@ -145,5 +151,5 @@ requirements: []
145
151
  rubygems_version: 3.3.7
146
152
  signing_key:
147
153
  specification_version: 4
148
- summary: Translation management system for the Lesli Framework
154
+ summary: Translation Management System for The Lesli Framework
149
155
  test_files: []