lesli_babel 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +5 -0
  3. data/app/assets/config/lesli_babel_manifest.js +7 -0
  4. data/app/assets/images/lesli_babel/babel-logo.svg +157 -0
  5. data/app/assets/javascripts/lesli_babel/application.js +3288 -0
  6. data/app/assets/stylesheets/lesli_babel/application.scss +41 -0
  7. data/app/assets/stylesheets/lesli_babel/dashboards.scss +55 -0
  8. data/app/assets/stylesheets/lesli_babel/modules.scss +33 -0
  9. data/app/assets/stylesheets/lesli_babel/translations.scss +58 -0
  10. data/app/controllers/lesli_babel/application_controller.rb +37 -0
  11. data/app/controllers/lesli_babel/buckets_controller.rb +79 -0
  12. data/app/controllers/lesli_babel/clones_controller.rb +80 -0
  13. data/app/controllers/lesli_babel/dashboards_controller.rb +38 -0
  14. data/app/controllers/lesli_babel/modules_controller.rb +91 -0
  15. data/app/controllers/lesli_babel/relevants_controller.rb +38 -0
  16. data/app/controllers/lesli_babel/strings_controller.rb +142 -0
  17. data/app/controllers/lesli_babel/translations_controller.rb +134 -0
  18. data/app/jobs/lesli_babel/application_job.rb +7 -0
  19. data/app/mailers/lesli_babel/application_mailer.rb +6 -0
  20. data/app/models/lesli_babel/application_record.rb +36 -0
  21. data/app/models/lesli_babel/bucket.rb +6 -0
  22. data/app/models/lesli_babel/clone.rb +24 -0
  23. data/app/models/lesli_babel/dashboard.rb +35 -0
  24. data/app/models/lesli_babel/module.rb +35 -0
  25. data/app/models/lesli_babel/relevant.rb +21 -0
  26. data/app/models/lesli_babel/string/activity.rb +5 -0
  27. data/app/models/lesli_babel/string/discussion.rb +68 -0
  28. data/app/models/lesli_babel/string.rb +225 -0
  29. data/app/models/lesli_babel/translation.rb +5 -0
  30. data/app/services/lesli_babel/module_service.rb +18 -0
  31. data/app/services/lesli_babel/old/translations_android_service.rb +82 -0
  32. data/app/services/lesli_babel/old/translations_clone_service.rb +161 -0
  33. data/app/services/lesli_babel/old/translations_flutter_service.rb +102 -0
  34. data/app/services/lesli_babel/old/translations_ios_service.rb +119 -0
  35. data/app/services/lesli_babel/old/translations_js_service.rb +114 -0
  36. data/app/services/lesli_babel/old/translations_middleman_service.rb +77 -0
  37. data/app/services/lesli_babel/old/translations_rails_service.rb +119 -0
  38. data/app/services/lesli_babel/old/translations_service.rb +97 -0
  39. data/app/services/lesli_babel/old/translations_synchronization_service.rb +215 -0
  40. data/app/services/lesli_babel/string_service.rb +80 -0
  41. data/app/views/lesli_babel/buckets/_form.html.erb +17 -0
  42. data/app/views/lesli_babel/buckets/edit.html.erb +6 -0
  43. data/app/views/lesli_babel/buckets/index.html.erb +25 -0
  44. data/app/views/lesli_babel/buckets/new.html.erb +5 -0
  45. data/app/views/lesli_babel/buckets/show.html.erb +4 -0
  46. data/app/views/lesli_babel/clones/_form.html.erb +19 -0
  47. data/app/views/lesli_babel/clones/edit.html.erb +20 -0
  48. data/app/views/lesli_babel/clones/index.html.erb +20 -0
  49. data/app/views/lesli_babel/clones/new.html.erb +20 -0
  50. data/app/views/lesli_babel/clones/show.html.erb +20 -0
  51. data/app/views/lesli_babel/dashboards/show.html.erb +1 -0
  52. data/app/views/lesli_babel/dashboards/stats..html.erb +1 -0
  53. data/app/views/lesli_babel/modules/_form.html.erb +17 -0
  54. data/app/views/lesli_babel/modules/edit.html.erb +1 -0
  55. data/app/views/lesli_babel/modules/index.html.erb +1 -0
  56. data/app/views/lesli_babel/modules/new.html.erb +1 -0
  57. data/app/views/lesli_babel/modules/show.html.erb +1 -0
  58. data/app/views/lesli_babel/partials/_engine-navigation.html.erb +37 -0
  59. data/app/views/lesli_babel/partials/_engine-sidebar.html.erb +45 -0
  60. data/app/views/lesli_babel/relevants/edit.html.erb +20 -0
  61. data/app/views/lesli_babel/relevants/index.html.erb +21 -0
  62. data/app/views/lesli_babel/relevants/new.html.erb +20 -0
  63. data/app/views/lesli_babel/relevants/show.html.erb +20 -0
  64. data/app/views/lesli_babel/string/activities/_form.html.erb +17 -0
  65. data/app/views/lesli_babel/string/activities/edit.html.erb +6 -0
  66. data/app/views/lesli_babel/string/activities/index.html.erb +25 -0
  67. data/app/views/lesli_babel/string/activities/new.html.erb +5 -0
  68. data/app/views/lesli_babel/string/activities/show.html.erb +4 -0
  69. data/app/views/lesli_babel/string/discussions/_form.html.erb +17 -0
  70. data/app/views/lesli_babel/string/discussions/edit.html.erb +6 -0
  71. data/app/views/lesli_babel/string/discussions/index.html.erb +25 -0
  72. data/app/views/lesli_babel/string/discussions/new.html.erb +5 -0
  73. data/app/views/lesli_babel/string/discussions/show.html.erb +4 -0
  74. data/app/views/lesli_babel/strings/_form.html.erb +17 -0
  75. data/app/views/lesli_babel/strings/edit.html.erb +6 -0
  76. data/app/views/lesli_babel/strings/index.html.erb +25 -0
  77. data/app/views/lesli_babel/strings/new.html.erb +5 -0
  78. data/app/views/lesli_babel/strings/show.html.erb +4 -0
  79. data/app/views/lesli_babel/translations/_form.html.erb +17 -0
  80. data/app/views/lesli_babel/translations/edit.html.erb +6 -0
  81. data/app/views/lesli_babel/translations/index.html.erb +1 -0
  82. data/app/views/lesli_babel/translations/new.html.erb +5 -0
  83. data/app/views/lesli_babel/translations/show.html.erb +1 -0
  84. data/config/routes.rb +63 -0
  85. data/db/migrate/v1.0/0901100110_create_lesli_babel_modules.rb +42 -0
  86. data/db/migrate/v1.0/0901110110_create_lesli_babel_buckets.rb +43 -0
  87. data/db/migrate/v1.0/0901120110_create_lesli_babel_strings.rb +80 -0
  88. data/lib/lesli_babel/engine.rb +54 -0
  89. data/lib/lesli_babel/version.rb +3 -0
  90. data/lib/lesli_babel.rb +6 -0
  91. data/lib/tasks/lesli_babel_tasks.rake +121 -0
  92. data/lib/vue/application.js +46 -0
  93. data/lib/vue/apps/dashboards/show.vue +85 -0
  94. data/lib/vue/apps/modules/show.vue +97 -0
  95. data/lib/vue/apps/relevants/index.vue +47 -0
  96. data/lib/vue/apps/translations/index.vue +64 -0
  97. data/lib/vue/components/actions.vue +29 -0
  98. data/lib/vue/components/form-label-editor.vue +439 -0
  99. data/lib/vue/components/form-string-new.vue +171 -0
  100. data/lib/vue/stores/module.js +49 -0
  101. data/lib/vue/stores/statistics.js +42 -0
  102. data/lib/vue/stores/strings.js +141 -0
  103. data/lib/vue/stores/translations.js +73 -0
  104. data/license +674 -0
  105. data/readme.md +19 -0
  106. metadata +149 -0
data/readme.md ADDED
@@ -0,0 +1,19 @@
1
+ <p align="center">
2
+ <img width="100" alt="LesliBabel logo" src="app/assets/images/lesli_babel/babel-logo.svg" />
3
+ </p>
4
+
5
+ <h3 align="center">LesliBabel - Translation management system</h3>
6
+
7
+ <hr/>
8
+
9
+ Version 5.0
10
+
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)
14
+
15
+ <br>
16
+
17
+ <p align="center">
18
+ <img alt="Lesli logo" width="100" src="./app/assets/images/lesli/brand/app-icon.svg" />
19
+ </p>
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lesli_babel
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - The Lesli Development Team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-10-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Translation management system for the Lesli Framework
14
+ email:
15
+ - hello@lesli.tech
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Rakefile
21
+ - app/assets/config/lesli_babel_manifest.js
22
+ - app/assets/images/lesli_babel/babel-logo.svg
23
+ - app/assets/javascripts/lesli_babel/application.js
24
+ - app/assets/stylesheets/lesli_babel/application.scss
25
+ - app/assets/stylesheets/lesli_babel/dashboards.scss
26
+ - app/assets/stylesheets/lesli_babel/modules.scss
27
+ - app/assets/stylesheets/lesli_babel/translations.scss
28
+ - app/controllers/lesli_babel/application_controller.rb
29
+ - app/controllers/lesli_babel/buckets_controller.rb
30
+ - app/controllers/lesli_babel/clones_controller.rb
31
+ - app/controllers/lesli_babel/dashboards_controller.rb
32
+ - app/controllers/lesli_babel/modules_controller.rb
33
+ - app/controllers/lesli_babel/relevants_controller.rb
34
+ - app/controllers/lesli_babel/strings_controller.rb
35
+ - app/controllers/lesli_babel/translations_controller.rb
36
+ - app/jobs/lesli_babel/application_job.rb
37
+ - app/mailers/lesli_babel/application_mailer.rb
38
+ - app/models/lesli_babel/application_record.rb
39
+ - app/models/lesli_babel/bucket.rb
40
+ - app/models/lesli_babel/clone.rb
41
+ - app/models/lesli_babel/dashboard.rb
42
+ - app/models/lesli_babel/module.rb
43
+ - app/models/lesli_babel/relevant.rb
44
+ - app/models/lesli_babel/string.rb
45
+ - app/models/lesli_babel/string/activity.rb
46
+ - app/models/lesli_babel/string/discussion.rb
47
+ - app/models/lesli_babel/translation.rb
48
+ - app/services/lesli_babel/module_service.rb
49
+ - app/services/lesli_babel/old/translations_android_service.rb
50
+ - app/services/lesli_babel/old/translations_clone_service.rb
51
+ - app/services/lesli_babel/old/translations_flutter_service.rb
52
+ - app/services/lesli_babel/old/translations_ios_service.rb
53
+ - app/services/lesli_babel/old/translations_js_service.rb
54
+ - app/services/lesli_babel/old/translations_middleman_service.rb
55
+ - app/services/lesli_babel/old/translations_rails_service.rb
56
+ - app/services/lesli_babel/old/translations_service.rb
57
+ - app/services/lesli_babel/old/translations_synchronization_service.rb
58
+ - app/services/lesli_babel/string_service.rb
59
+ - app/views/lesli_babel/buckets/_form.html.erb
60
+ - app/views/lesli_babel/buckets/edit.html.erb
61
+ - app/views/lesli_babel/buckets/index.html.erb
62
+ - app/views/lesli_babel/buckets/new.html.erb
63
+ - app/views/lesli_babel/buckets/show.html.erb
64
+ - app/views/lesli_babel/clones/_form.html.erb
65
+ - app/views/lesli_babel/clones/edit.html.erb
66
+ - app/views/lesli_babel/clones/index.html.erb
67
+ - app/views/lesli_babel/clones/new.html.erb
68
+ - app/views/lesli_babel/clones/show.html.erb
69
+ - app/views/lesli_babel/dashboards/show.html.erb
70
+ - app/views/lesli_babel/dashboards/stats..html.erb
71
+ - app/views/lesli_babel/modules/_form.html.erb
72
+ - app/views/lesli_babel/modules/edit.html.erb
73
+ - app/views/lesli_babel/modules/index.html.erb
74
+ - app/views/lesli_babel/modules/new.html.erb
75
+ - app/views/lesli_babel/modules/show.html.erb
76
+ - app/views/lesli_babel/partials/_engine-navigation.html.erb
77
+ - app/views/lesli_babel/partials/_engine-sidebar.html.erb
78
+ - app/views/lesli_babel/relevants/edit.html.erb
79
+ - app/views/lesli_babel/relevants/index.html.erb
80
+ - app/views/lesli_babel/relevants/new.html.erb
81
+ - app/views/lesli_babel/relevants/show.html.erb
82
+ - app/views/lesli_babel/string/activities/_form.html.erb
83
+ - app/views/lesli_babel/string/activities/edit.html.erb
84
+ - app/views/lesli_babel/string/activities/index.html.erb
85
+ - app/views/lesli_babel/string/activities/new.html.erb
86
+ - app/views/lesli_babel/string/activities/show.html.erb
87
+ - app/views/lesli_babel/string/discussions/_form.html.erb
88
+ - app/views/lesli_babel/string/discussions/edit.html.erb
89
+ - app/views/lesli_babel/string/discussions/index.html.erb
90
+ - app/views/lesli_babel/string/discussions/new.html.erb
91
+ - app/views/lesli_babel/string/discussions/show.html.erb
92
+ - app/views/lesli_babel/strings/_form.html.erb
93
+ - app/views/lesli_babel/strings/edit.html.erb
94
+ - app/views/lesli_babel/strings/index.html.erb
95
+ - app/views/lesli_babel/strings/new.html.erb
96
+ - app/views/lesli_babel/strings/show.html.erb
97
+ - app/views/lesli_babel/translations/_form.html.erb
98
+ - app/views/lesli_babel/translations/edit.html.erb
99
+ - app/views/lesli_babel/translations/index.html.erb
100
+ - app/views/lesli_babel/translations/new.html.erb
101
+ - app/views/lesli_babel/translations/show.html.erb
102
+ - config/routes.rb
103
+ - db/migrate/v1.0/0901100110_create_lesli_babel_modules.rb
104
+ - db/migrate/v1.0/0901110110_create_lesli_babel_buckets.rb
105
+ - db/migrate/v1.0/0901120110_create_lesli_babel_strings.rb
106
+ - lib/lesli_babel.rb
107
+ - lib/lesli_babel/engine.rb
108
+ - lib/lesli_babel/version.rb
109
+ - lib/tasks/lesli_babel_tasks.rake
110
+ - lib/vue/application.js
111
+ - lib/vue/apps/dashboards/show.vue
112
+ - lib/vue/apps/modules/show.vue
113
+ - lib/vue/apps/relevants/index.vue
114
+ - lib/vue/apps/translations/index.vue
115
+ - lib/vue/components/actions.vue
116
+ - lib/vue/components/form-label-editor.vue
117
+ - lib/vue/components/form-string-new.vue
118
+ - lib/vue/stores/module.js
119
+ - lib/vue/stores/statistics.js
120
+ - lib/vue/stores/strings.js
121
+ - lib/vue/stores/translations.js
122
+ - license
123
+ - readme.md
124
+ homepage: https://www.lesli.dev/
125
+ licenses: []
126
+ metadata:
127
+ homepage_uri: https://www.lesli.dev/
128
+ source_code_uri: https://github.com/LesliTech/LesliBabel
129
+ changelog_uri: https://github.com/LesliTech/LesliBabel
130
+ post_install_message:
131
+ rdoc_options: []
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ required_rubygems_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ requirements: []
145
+ rubygems_version: 3.3.7
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: Translation management system for the Lesli Framework
149
+ test_files: []