brainsome_typus 4.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (241) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +488 -0
  3. data/Gemfile +60 -0
  4. data/Gemfile.lock +205 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +94 -0
  7. data/Rakefile +33 -0
  8. data/TODO.md +32 -0
  9. data/app/assets/javascripts/typus/application.js +11 -0
  10. data/app/assets/javascripts/typus/custom.js +2 -0
  11. data/app/assets/javascripts/typus/jquery-1.8.3-min.js +2 -0
  12. data/app/assets/javascripts/typus/jquery.application.js +33 -0
  13. data/app/assets/stylesheets/typus/application.css +5 -0
  14. data/app/assets/stylesheets/typus/custom.css +4 -0
  15. data/app/assets/stylesheets/typus/overrides.css.scss +46 -0
  16. data/app/controllers/admin/account_controller.rb +47 -0
  17. data/app/controllers/admin/base_controller.rb +44 -0
  18. data/app/controllers/admin/dashboard_controller.rb +5 -0
  19. data/app/controllers/admin/resource_controller.rb +7 -0
  20. data/app/controllers/admin/resources_controller.rb +256 -0
  21. data/app/controllers/admin/session_controller.rb +42 -0
  22. data/app/controllers/concerns/admin/actions.rb +88 -0
  23. data/app/controllers/concerns/admin/acts_as_list.rb +26 -0
  24. data/app/controllers/concerns/admin/ancestry.rb +26 -0
  25. data/app/controllers/concerns/admin/autocomplete.rb +11 -0
  26. data/app/controllers/concerns/admin/bulk.rb +76 -0
  27. data/app/controllers/concerns/admin/featured_image.rb +22 -0
  28. data/app/controllers/concerns/admin/filters.rb +57 -0
  29. data/app/controllers/concerns/admin/format.rb +48 -0
  30. data/app/controllers/concerns/admin/headless.rb +23 -0
  31. data/app/controllers/concerns/admin/hooks.rb +4 -0
  32. data/app/controllers/concerns/admin/multisite.rb +10 -0
  33. data/app/controllers/concerns/admin/navigation.rb +26 -0
  34. data/app/controllers/concerns/admin/trash.rb +65 -0
  35. data/app/helpers/admin/base_helper.rb +59 -0
  36. data/app/helpers/admin/resources/data_types/belongs_to_helper.rb +91 -0
  37. data/app/helpers/admin/resources/data_types/boolean_helper.rb +28 -0
  38. data/app/helpers/admin/resources/data_types/date_helper.rb +16 -0
  39. data/app/helpers/admin/resources/data_types/datetime_helper.rb +19 -0
  40. data/app/helpers/admin/resources/data_types/dragonfly_helper.rb +56 -0
  41. data/app/helpers/admin/resources/data_types/float_helper.rb +2 -0
  42. data/app/helpers/admin/resources/data_types/has_and_belongs_to_many_helper.rb +53 -0
  43. data/app/helpers/admin/resources/data_types/has_many_helper.rb +66 -0
  44. data/app/helpers/admin/resources/data_types/has_one_helper.rb +36 -0
  45. data/app/helpers/admin/resources/data_types/integer_helper.rb +10 -0
  46. data/app/helpers/admin/resources/data_types/paperclip_helper.rb +36 -0
  47. data/app/helpers/admin/resources/data_types/position_helper.rb +20 -0
  48. data/app/helpers/admin/resources/data_types/selector_helper.rb +11 -0
  49. data/app/helpers/admin/resources/data_types/string_helper.rb +32 -0
  50. data/app/helpers/admin/resources/data_types/text_helper.rb +7 -0
  51. data/app/helpers/admin/resources/data_types/transversal_helper.rb +8 -0
  52. data/app/helpers/admin/resources/data_types/tree_helper.rb +26 -0
  53. data/app/helpers/admin/resources/display_helper.rb +27 -0
  54. data/app/helpers/admin/resources/filters_helper.rb +28 -0
  55. data/app/helpers/admin/resources/form_helper.rb +84 -0
  56. data/app/helpers/admin/resources/list_helper.rb +31 -0
  57. data/app/helpers/admin/resources/pagination_helper.rb +28 -0
  58. data/app/helpers/admin/resources/relationships_helper.rb +34 -0
  59. data/app/helpers/admin/resources/sidebar_helper.rb +40 -0
  60. data/app/helpers/admin/resources/table_helper.rb +66 -0
  61. data/app/helpers/admin/resources_helper.rb +25 -0
  62. data/app/mailers/admin/mailer.rb +20 -0
  63. data/app/views/admin/account/_form.html.erb +11 -0
  64. data/app/views/admin/account/forgot_password.html.erb +19 -0
  65. data/app/views/admin/account/new.html.erb +13 -0
  66. data/app/views/admin/dashboard/_sidebar.html.erb +14 -0
  67. data/app/views/admin/dashboard/index.html.erb +6 -0
  68. data/app/views/admin/dashboard/styles.html.erb +153 -0
  69. data/app/views/admin/dashboard/widgets/_applications.html.erb +44 -0
  70. data/app/views/admin/dashboard/widgets/_default.html.erb +46 -0
  71. data/app/views/admin/dashboard/widgets/_models.html.erb +23 -0
  72. data/app/views/admin/dashboard/widgets/_models_extended.html.erb +25 -0
  73. data/app/views/admin/dashboard/widgets/_resources.html.erb +23 -0
  74. data/app/views/admin/dashboard/widgets/_users.html.erb +23 -0
  75. data/app/views/admin/mailer/reset_password_instructions.html.erb +7 -0
  76. data/app/views/admin/mailer/reset_password_instructions.text.erb +7 -0
  77. data/app/views/admin/resources/_actions.html.erb +23 -0
  78. data/app/views/admin/resources/_edit.html.erb +0 -0
  79. data/app/views/admin/resources/_form.html.erb +41 -0
  80. data/app/views/admin/resources/_form_javascripts.html.erb +0 -0
  81. data/app/views/admin/resources/_form_modal.html.erb +13 -0
  82. data/app/views/admin/resources/_index.html.erb +0 -0
  83. data/app/views/admin/resources/_new.html.erb +0 -0
  84. data/app/views/admin/resources/_pagination.html.erb +15 -0
  85. data/app/views/admin/resources/_show.html.erb +0 -0
  86. data/app/views/admin/resources/edit/_actions.html.erb +7 -0
  87. data/app/views/admin/resources/edit/_recently_edited.html.erb +8 -0
  88. data/app/views/admin/resources/edit.html.erb +22 -0
  89. data/app/views/admin/resources/index.html.erb +81 -0
  90. data/app/views/admin/resources/new.html.erb +21 -0
  91. data/app/views/admin/resources/show.html.erb +27 -0
  92. data/app/views/admin/session/new.html.erb +21 -0
  93. data/app/views/admin/shared/_head.html.erb +15 -0
  94. data/app/views/admin/shared/_modals.html.erb +3 -0
  95. data/app/views/admin/shared/_sidebar_placeholder.html.erb +0 -0
  96. data/app/views/admin/templates/README.md +5 -0
  97. data/app/views/admin/templates/_belongs_to.html.erb +13 -0
  98. data/app/views/admin/templates/_boolean.html.erb +6 -0
  99. data/app/views/admin/templates/_date.html.erb +6 -0
  100. data/app/views/admin/templates/_datetime.html.erb +7 -0
  101. data/app/views/admin/templates/_dragonfly.html.erb +8 -0
  102. data/app/views/admin/templates/_dragonfly_form_preview.html.erb +23 -0
  103. data/app/views/admin/templates/_dragonfly_preview.html.erb +12 -0
  104. data/app/views/admin/templates/_has_and_belongs_to_many.html.erb +21 -0
  105. data/app/views/admin/templates/_has_many.html.erb +20 -0
  106. data/app/views/admin/templates/_has_one.html.erb +14 -0
  107. data/app/views/admin/templates/_paperclip.html.erb +7 -0
  108. data/app/views/admin/templates/_paperclip_preview.html.erb +3 -0
  109. data/app/views/admin/templates/_password.html.erb +6 -0
  110. data/app/views/admin/templates/_position.html.erb +6 -0
  111. data/app/views/admin/templates/_profile_sidebar.html.erb +4 -0
  112. data/app/views/admin/templates/_selector.html.erb +6 -0
  113. data/app/views/admin/templates/_string.html.erb +6 -0
  114. data/app/views/admin/templates/_string_with_preview.html.erb +11 -0
  115. data/app/views/admin/templates/_text.html.erb +11 -0
  116. data/app/views/admin/templates/_text_with_ckeditor.html.erb +24 -0
  117. data/app/views/admin/templates/_text_with_ckeditor_and_assets.html.erb +38 -0
  118. data/app/views/admin/templates/_time.html.erb +9 -0
  119. data/app/views/admin/templates/_tree.html.erb +6 -0
  120. data/app/views/admin/templates/modals/_belongs_to.html.erb +56 -0
  121. data/app/views/admin/templates/modals/_dragonfly.html.erb +9 -0
  122. data/app/views/admin/templates/modals/_has_and_belongs_to_many.html.erb +19 -0
  123. data/app/views/admin/templates/modals/_has_many.html.erb +53 -0
  124. data/app/views/helpers/admin/base/_apps.html.erb +38 -0
  125. data/app/views/helpers/admin/base/_breadcrumbs.html.erb +6 -0
  126. data/app/views/helpers/admin/base/_flash_message.html.erb +3 -0
  127. data/app/views/helpers/admin/base/_login_info.html.erb +37 -0
  128. data/app/views/helpers/admin/dashboard/_resources.html.erb +19 -0
  129. data/app/views/helpers/admin/resources/_actions.html.erb +18 -0
  130. data/app/views/helpers/admin/resources/_errors.html.erb +12 -0
  131. data/app/views/helpers/admin/resources/_filters.html.erb +14 -0
  132. data/app/views/helpers/admin/resources/_search.html.erb +14 -0
  133. data/app/views/helpers/admin/resources/_sidebar.html.erb +17 -0
  134. data/app/views/helpers/admin/resources/_table.html.erb +47 -0
  135. data/app/views/layouts/admin/base.html.erb +40 -0
  136. data/app/views/layouts/admin/headless.html.erb +1 -0
  137. data/app/views/layouts/admin/session.html.erb +44 -0
  138. data/config/locales/typus.ca.models.yml +17 -0
  139. data/config/locales/typus.ca.yml +78 -0
  140. data/config/locales/typus.de.models.yml +17 -0
  141. data/config/locales/typus.de.yml +98 -0
  142. data/config/locales/typus.el.models.yml +17 -0
  143. data/config/locales/typus.el.yml +79 -0
  144. data/config/locales/typus.es.models.yml +18 -0
  145. data/config/locales/typus.es.yml +91 -0
  146. data/config/locales/typus.fr.models.yml +18 -0
  147. data/config/locales/typus.fr.yml +83 -0
  148. data/config/locales/typus.hu.models.yml +17 -0
  149. data/config/locales/typus.hu.yml +77 -0
  150. data/config/locales/typus.it.models.yml +18 -0
  151. data/config/locales/typus.it.yml +86 -0
  152. data/config/locales/typus.locale.models.yml.template +17 -0
  153. data/config/locales/typus.locale.yml.template +78 -0
  154. data/config/locales/typus.pt-BR.models.yml +17 -0
  155. data/config/locales/typus.pt-BR.yml +77 -0
  156. data/config/locales/typus.pt-PT.models.yml +17 -0
  157. data/config/locales/typus.pt-PT.yml +85 -0
  158. data/config/locales/typus.ru.models.yml +17 -0
  159. data/config/locales/typus.ru.yml +77 -0
  160. data/config/locales/typus.zh-CN.models.yml +17 -0
  161. data/config/locales/typus.zh-CN.yml +76 -0
  162. data/config/routes.rb +46 -0
  163. data/lib/generators/templates/config/initializers/typus.rb +35 -0
  164. data/lib/generators/templates/config/initializers/typus_authentication.rb +18 -0
  165. data/lib/generators/templates/config/initializers/typus_resources.rb +24 -0
  166. data/lib/generators/templates/config/typus/README +58 -0
  167. data/lib/generators/templates/config/typus/application.yml +3 -0
  168. data/lib/generators/templates/config/typus/application_roles.yml +4 -0
  169. data/lib/generators/templates/config/typus/typus.yml +15 -0
  170. data/lib/generators/templates/config/typus/typus_roles.yml +4 -0
  171. data/lib/generators/templates/controller.erb +2 -0
  172. data/lib/generators/templates/migration.erb +22 -0
  173. data/lib/generators/templates/view.html.erb +13 -0
  174. data/lib/generators/typus/config_generator.rb +67 -0
  175. data/lib/generators/typus/controller_generator.rb +25 -0
  176. data/lib/generators/typus/initializers_generator.rb +20 -0
  177. data/lib/generators/typus/migration_generator.rb +94 -0
  178. data/lib/generators/typus/typus_generator.rb +52 -0
  179. data/lib/generators/typus/views_generator.rb +19 -0
  180. data/lib/support/active_record.rb +42 -0
  181. data/lib/support/fake_user.rb +47 -0
  182. data/lib/support/hash.rb +12 -0
  183. data/lib/support/object.rb +9 -0
  184. data/lib/support/string.rb +40 -0
  185. data/lib/tasks/typus.rake +11 -0
  186. data/lib/typus/authentication/base.rb +24 -0
  187. data/lib/typus/authentication/devise.rb +19 -0
  188. data/lib/typus/authentication/http_basic.rb +18 -0
  189. data/lib/typus/authentication/none.rb +15 -0
  190. data/lib/typus/authentication/none_with_role.rb +15 -0
  191. data/lib/typus/authentication/session.rb +123 -0
  192. data/lib/typus/configuration.rb +41 -0
  193. data/lib/typus/engine.rb +17 -0
  194. data/lib/typus/i18n.rb +48 -0
  195. data/lib/typus/orm/active_record/admin_user.rb +84 -0
  196. data/lib/typus/orm/active_record/class_methods.rb +104 -0
  197. data/lib/typus/orm/active_record/instance_methods.rb +76 -0
  198. data/lib/typus/orm/active_record/search.rb +44 -0
  199. data/lib/typus/orm/active_record.rb +10 -0
  200. data/lib/typus/orm/base/class_methods.rb +184 -0
  201. data/lib/typus/orm/base/search.rb +70 -0
  202. data/lib/typus/regex.rb +11 -0
  203. data/lib/typus/resources.rb +55 -0
  204. data/lib/typus/version.rb +10 -0
  205. data/lib/typus.rb +212 -0
  206. data/typus.gemspec +32 -0
  207. data/vendor/assets/adapt/css/1200.css +357 -0
  208. data/vendor/assets/adapt/css/1200.min.css +1 -0
  209. data/vendor/assets/adapt/css/1560.css +357 -0
  210. data/vendor/assets/adapt/css/1560.min.css +1 -0
  211. data/vendor/assets/adapt/css/720.css +357 -0
  212. data/vendor/assets/adapt/css/720.min.css +1 -0
  213. data/vendor/assets/adapt/css/960.css +357 -0
  214. data/vendor/assets/adapt/css/960.min.css +1 -0
  215. data/vendor/assets/adapt/css/fluid.css +345 -0
  216. data/vendor/assets/adapt/css/fluid.min.css +1 -0
  217. data/vendor/assets/adapt/css/master.css +120 -0
  218. data/vendor/assets/adapt/css/mobile.css +20 -0
  219. data/vendor/assets/adapt/css/mobile.min.css +1 -0
  220. data/vendor/assets/adapt/css/reset.css +202 -0
  221. data/vendor/assets/adapt/css/text.css +81 -0
  222. data/vendor/assets/adapt/images/h1.png +0 -0
  223. data/vendor/assets/adapt/js/adapt.js +135 -0
  224. data/vendor/assets/adapt/js/adapt.min.js +1 -0
  225. data/vendor/assets/bootstrap-2.3.2/css/bootstrap-responsive.css +1109 -0
  226. data/vendor/assets/bootstrap-2.3.2/css/bootstrap-responsive.min.css +9 -0
  227. data/vendor/assets/bootstrap-2.3.2/css/bootstrap.css +6167 -0
  228. data/vendor/assets/bootstrap-2.3.2/css/bootstrap.min.css +9 -0
  229. data/vendor/assets/bootstrap-2.3.2/img/glyphicons-halflings-white.png +0 -0
  230. data/vendor/assets/bootstrap-2.3.2/img/glyphicons-halflings.png +0 -0
  231. data/vendor/assets/bootstrap-2.3.2/js/bootstrap.js +2280 -0
  232. data/vendor/assets/bootstrap-2.3.2/js/bootstrap.min.js +6 -0
  233. data/vendor/assets/chosen/LICENSE.md +24 -0
  234. data/vendor/assets/chosen/chosen-sprite.png +0 -0
  235. data/vendor/assets/chosen/chosen.css +390 -0
  236. data/vendor/assets/chosen/chosen.jquery.js +902 -0
  237. data/vendor/assets/formalize/css/formalize.css +395 -0
  238. data/vendor/assets/formalize/images/button.png +0 -0
  239. data/vendor/assets/formalize/images/select_arrow.gif +0 -0
  240. data/vendor/assets/formalize/js/jquery.formalize.min.js +1 -0
  241. metadata +329 -0
@@ -0,0 +1,44 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html lang="<%= I18n.locale %>">
4
+
5
+ <head>
6
+ <%= render 'admin/shared/head' %>
7
+
8
+ <style type="text/css">
9
+ body.base {
10
+ padding-top: 120px;
11
+ padding-bottom: 40px;
12
+ background-color: #f5f5f5;
13
+ }
14
+
15
+ .well {
16
+ background-color: #FFF;
17
+ border: 1px solid #e5e5e5;
18
+ }
19
+ </style>
20
+ </head>
21
+
22
+ <body class="base">
23
+
24
+ <div class="container">
25
+ <div class="row">
26
+ <div class="span4 offset4 well">
27
+
28
+ <legend><%= Typus.admin_title %></legend>
29
+ <%= admin_display_flash_message %>
30
+ <%= yield :layout %>
31
+
32
+ <% if content_for?(:actions) %>
33
+ <div id="actions">
34
+ <%= yield :actions %>
35
+ </div>
36
+ <% end %>
37
+
38
+ </div>
39
+ </div>
40
+ </div>
41
+
42
+ </body>
43
+
44
+ </html>
@@ -0,0 +1,17 @@
1
+ # Catalan (ca) translations for Typus by:
2
+ # - Lleïr Borràs <http://github.com/lleirborras>
3
+
4
+ ca:
5
+ activerecord:
6
+ models:
7
+ admin_user: Usuari
8
+ attributes:
9
+ admin_user:
10
+ email: Correu electrònic
11
+ first_name: Nom
12
+ last_name: Cognoms
13
+ password: Contrasenya
14
+ password_confirmation: Confirmar contrasenya
15
+ status: Estat
16
+ role: Rol
17
+ locale: Idioma
@@ -0,0 +1,78 @@
1
+ # Catalan (ca) translations for Typus by:
2
+ # - Lleïr Borràs <http://github.com/lleirborras>
3
+
4
+ ca:
5
+
6
+ "Actions": "Accions"
7
+ "Active": "Actiu"
8
+ "Add": "Afegir"
9
+ "Add New": "Afegir nou"
10
+ "All": "Tots"
11
+ "Are you sure?": "Estàs segur?"
12
+
13
+ "Change %{attribute}?": "Canviar %{attribute}?"
14
+ "Create %{resource}": "Crear %{resource}"
15
+
16
+ "Dashboard": "Panell de control"
17
+ "Down": "Baixar"
18
+
19
+ "Edit": "Editar"
20
+ "Edit %{resource} %{id}": "Edit %{resource} %{id}"
21
+ "Enter your email below to create the first user": "Introdueix el teu email per crear el primer usuari."
22
+
23
+ "False": "Fals"
24
+ "Filter": "Filtrar"
25
+
26
+ "I remember my password": "Recordo la meva contrasenya"
27
+ "If you didn't request a password update, you can ignore this message": "Si no has demanat una actualització de la teva contrasenya, pots ignorar aquest missatge."
28
+ "If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Si has realitzat algun canvi en els camps sense premer el botó Guardar/Actualitzar, els teus canvis es perdran."
29
+ "Inactive": "Inactiu"
30
+
31
+ "Last few days": "Últims dies"
32
+ "Last 30 days": "Últims 30 dies"
33
+ "Last 7 days": "Últims 7 dies"
34
+ "Login": "Login"
35
+
36
+ "New": "Nou"
37
+ "New %{resource}": "Nou %{resource}"
38
+ "Next": "Següent"
39
+ "No %{resources} found": "No s'han trobat %{resources}."
40
+
41
+ "Password recovery link sent to your email": "L'enllaç de recuperació de contrasenya enviat al teu correu electrònic."
42
+ "Previous": "Anterior"
43
+
44
+ "Record moved %{to}": "Registre desplaçat %{to}."
45
+ "Recover password": "Recuperar contrasenya"
46
+ "Remove": "Eliminar"
47
+ "Remove %{resource}?": "Esborrar %{resource}?"
48
+ "Reset password": "Canviar contrasenya"
49
+ "Resources": "Recursos"
50
+
51
+ "Save %{resource}": "Guardar %{resource}"
52
+ "Search": "Cercar"
53
+ "Show": "Mostrar"
54
+ "Show all dates":
55
+ "Show by %{attribute}":
56
+ "Show %{resource}": "Mostrar %{resource}"
57
+ "Sign in": "Entrar"
58
+ "Sign out": "Sortir"
59
+ "Sign up": "Crear compte"
60
+ "System Users Administration": "Administrar usuaris del sistema"
61
+
62
+ "Today": "Avui"
63
+ "True": "Cert"
64
+
65
+ "Unrelate": "Deslligar"
66
+ "Up": "Pujar"
67
+
68
+ "You can update your password at": "Pots actualitzar la teva contrasenya a"
69
+ "You can't change your role": "No pots canviar-te tu mateix el rol."
70
+ "You can't toggle your status": "No pots canviar-te l'estat."
71
+
72
+ "View all %{attribute}":
73
+ "View site": "Veure la web"
74
+
75
+ "%{errors} prohibited this page from being saved:":
76
+ "%{model} successfully created": "%{model} satisfactòriament creat."
77
+ "%{model} successfully removed": "%{model} satisfactòriament eliminat."
78
+ "%{model} successfully updated": "%{model} satisfactòriament actualitzat."
@@ -0,0 +1,17 @@
1
+ # German (de) translations for Typus by:
2
+ # - Michael Grunewalder <http://michael.grunewalder.com>
3
+
4
+ de:
5
+ activerecord:
6
+ models:
7
+ admin_user:
8
+ attributes:
9
+ admin_user:
10
+ email:
11
+ first_name: "Vorname"
12
+ last_name: "Nachname"
13
+ password: "Passwort"
14
+ password_confirmation: "Passwort Best&auml;tigung"
15
+ status:
16
+ role:
17
+ locale:
@@ -0,0 +1,98 @@
1
+ # German (de) translations for Typus by:
2
+ # - Michael Grunewalder <http://michael.grunewalder.com>
3
+ # - Thomas von Deyen <http://thomas.vondeyen.com>
4
+
5
+ de:
6
+ "Actions": "Aktionen"
7
+ "Active": "Aktiv"
8
+ "List" : 'Liste'
9
+ "Add": "Hinzufügen"
10
+ "Add New": "Erstellen"
11
+ "Add %{resource}": "%{resource} hinzufügen"
12
+ "All" : 'Alle'
13
+ "Are you sure?": "Sind Sie sicher?"
14
+ "Assign": "Zuweisen"
15
+
16
+ "Change %{attribute}?": "%{attribute} ändern?"
17
+ "Create %{resource}": "%{resource} erstellen"
18
+
19
+ "Dashboard": "Dashboard"
20
+
21
+ "Edit": "Bearbeiten"
22
+ "Edit %{resource} %{id}": "%{resource} %{id} bearbeiten"
23
+ "Enter your email below to create the first user": "Geben Sie Ihre Email Adresse unten ein, um den ersten Benutzer zu erstellen"
24
+
25
+ "False": "Nein"
26
+ "Filter": "Filter"
27
+
28
+ "I remember my password": "Ich erinnere mein Passwort"
29
+ "If you didn't request a password update, you can ignore this message": "Falls Sie keine Passwort Änderung beantragt haben, können Sie diese Nachricht ignorieren"
30
+ "If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Wenn Sie Änderungen an Feldern vorgenommen haben, ohne den Speichern/Bearbeiten Knopf gedrückt zu haben, gehen diese Änderungen verloren"
31
+ "Inactive": "Inaktiv"
32
+
33
+ "Last few days": "Letzten Tage"
34
+ "Last 30 days": "Letzten 30 Tage"
35
+ "Last 7 days": "Letzten 7 Tage"
36
+ "List" : "zur Liste"
37
+ "Login": "Anmelden"
38
+
39
+ "New": "Neu"
40
+ "New %{resource}": "%{resource} erstellen"
41
+ "Next": "Nächste"
42
+ "No %{resources} found": "Keine %{resources} gefunden."
43
+ "No entries found": "Keine Einträge gefunden."
44
+
45
+ "Password recovery link sent to your email": "Der Link zur Wiederherstelllung Ihres Passworts wurde an Ihre Email Adresse geschickt"
46
+ "Previous": "Vorheriger"
47
+
48
+ "Record moved %{to}": "Datensatz wurde verschoben nach %{to}"
49
+ "Recover password": "Passwort vergessen?"
50
+ "Remove": "Löschen"
51
+ "Remove %{resource}?": "%{resource} entfernen?"
52
+ "Reset password": "Passwort zurücksetzen"
53
+ "Resources": "Resourcen"
54
+
55
+ "Save": "Speichern"
56
+ "Save and add another": "Speichern und weitere anlegen"
57
+ "Save and continue editing": "Speichern und weiter bearbeiten"
58
+
59
+ "Save %{resource}": "%{resource} speichern"
60
+ "Search": "Suchen"
61
+ "Show": "Anzeigen"
62
+ "Show all dates": "Alle anzeigen"
63
+ "Show by %{attribute}": "An Hand von %{attribute} anzeigen"
64
+ "Show %{resource}": "%{resource} anzeigen"
65
+ "Sign in": "Anmelden"
66
+ "Sign out": "Abmelden"
67
+ "Sign up": "Konto erstellen"
68
+ "System Users Administration": "Admin Benutzer Verwaltung"
69
+
70
+ "Today": "Heute"
71
+ "Trash": "Löschen"
72
+ "Destroy": "Löschen"
73
+ "True": "Ja"
74
+
75
+ "Unrelate": "Trennen"
76
+
77
+ "Up": "Hoch"
78
+ "Down": "Runter"
79
+ "Top": "An den Anfang"
80
+ "Bottom": "Ans Ende"
81
+
82
+ "View all %{attribute}": "Alle %{attribute} anzeigen"
83
+ "View site": "Webseite anzeigen"
84
+
85
+ "You can update your password at": "Sie können Ihr Passwort ändern unter"
86
+ "You can't change your role": "Sie können Ihre Rolle nicht ändern"
87
+ "You can't toggle your status": "Sie können Ihren Status nicht umschalten"
88
+
89
+ "This week": "Diese Woche"
90
+ "This month": "Diesen Monat"
91
+ "This year": "Dieses Jahr"
92
+
93
+ "Errors prohibited this page from being saved:":
94
+ one: "Die Seite konnte wegen eines Fehlers nicht gespeichert werden:"
95
+ other: "Die Seite konnte wegen %{count} Fehlern nicht gespeichert werden:"
96
+ "%{model} successfully created": "%{model} wurde erfolgreich erstellt."
97
+ "%{model} successfully removed": "%{model} wurde erfolgreich gelöscht."
98
+ "%{model} successfully updated": "%{model} wurde erfolgreich geändert."
@@ -0,0 +1,17 @@
1
+ # Greek (el) translation for Typus
2
+ # - Spyros Livathinos <livathinos.spyros@gmail.com>
3
+
4
+ el:
5
+ activerecord:
6
+ models:
7
+ admin_user:
8
+ attributes:
9
+ admin_user:
10
+ email:
11
+ first_name: "Όνομα"
12
+ last_name: "Επώνυμο"
13
+ password: "Κωδικός"
14
+ password_confirmation: "Επιβεβαίωση κωδικού"
15
+ status: "Κατάσταση"
16
+ role: "Ρόλος"
17
+ locale:
@@ -0,0 +1,79 @@
1
+ # Greek (el) translation for Typus
2
+ # - Spyros Livathinos <livathinos.spyros@gmail.com>
3
+
4
+ el:
5
+
6
+ "Actions": "Ενέργειες"
7
+ "Active": "Ενεργό"
8
+ "Add": "Προσθήκη"
9
+ "Add New": "Προσθήκη νέου"
10
+ "Are you sure?": "Είσαστε βέβαιοι;"
11
+
12
+ "Change %{attribute}?": "Τροποποίηση του χαρακτηριστικού %{attribute};"
13
+ "Create %{resource}": "Δημιουργία %{resource}"
14
+ "Create one now": "Δημιουργία τώρα"
15
+
16
+ "Dashboard": "Πανόπτης"
17
+ "Do you want to cancel it?": "Επιθυμείτε να ακυρώσετε την ενέργεια;"
18
+ "Down": "Κάτω"
19
+
20
+ "Edit": "Επεξεργασία"
21
+ "Enter your email below to create the first user": "Εισάγετε το email σας παρακάτω για να δημιουργηθεί ο πρώτος χρήστης"
22
+
23
+ "False": "Σφάλμα"
24
+ "Filter": "Φίλτρο"
25
+
26
+ "I remember my password": "Θυμάμαι τον κωδικό μου"
27
+ "If you didn't request a password update, you can ignore this message": "Στην περίπτωση που δεν έχετε ζητήσει ανανέωση του κωδικού σας μπορείτε να αγνοήσετε αυτό το μήνυμα"
28
+ "If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Εάν έχετε κάνει αλλαγές στα πεδία χωρίς να έχετε επιλέξει το πλήκτρο Αποθήκευσης/Ενημέρωσης οι αλλαγές σας πρόκειται ωα χαθούν"
29
+ "Inactive": "Ανενεργός"
30
+
31
+ "Last few days": "Τελευταίες ημέρες"
32
+ "Last 30 days": "Τελευταίες 30 ημέρες"
33
+ "Last 7 days": "Τελευταίες 7 ημέρες"
34
+ "Login": "Σύνδεση"
35
+
36
+ "New": "Νέο"
37
+ "Next": "Επόμενο"
38
+
39
+ "Password recovery link sent to your email": "Ο σύνδεσμος ανάκτησης κωδικού έχει αποσταλεί στο email σας"
40
+ "Previous": "Προηγούμενο"
41
+
42
+ "Record moved %{to}": "Η εγγραφή μεταφέρθηκε στο σημείο %{to}"
43
+ "Recover password": "Ανάκτηση κωδικού"
44
+ "Remove": "Απομάκρυνση"
45
+ "Remove %{resource}?": "Απομάκρυνση %{resource}"
46
+ "Reset password": "Επαναφορά κωδικού"
47
+ "Resources": "Πόροι"
48
+
49
+ "Save %{resource}": "Αποθήκευση %{resource}"
50
+ "Search": "Αναζήτηση"
51
+ "Show": "Εμφάνιση"
52
+ "Show all dates":
53
+ "Show by %{attribute}":
54
+ "Show %{resource}": "Εμφάνιση %{resource}"
55
+ "Sign in": "Είσοδος"
56
+ "Sign out": "Έξοδος"
57
+ "Sign up": "Εγγραφή"
58
+ "System Users Administration": "Διαχείριση χρηστών συστήματος"
59
+
60
+ "There are no %{records}": "Δεν υπάρχουν %{records}"
61
+ "There are no %{records} under this filter": "Δεν υπάρχουν εγγραφές %{records} υπό το παρόν φίλτρο"
62
+ "Today": "Σήμερα"
63
+ "True": "Σωστό"
64
+
65
+ "Unrelate":
66
+ "Up": "Επάνω"
67
+
68
+ "View all %{attribute}": "Εμφάνιση όλων των χαρακτηριστικών τύπου %{attribute}"
69
+ "View site": "Εμφάνιση ιστοσελίδας"
70
+
71
+ "You can update your password at": "Μπορείτε να ανανεώσετε τον κωδικό σας παρακάτω"
72
+ "You can't change your role": "Δεν έχετε την δυνατότητα να αλλάξετε τον ρόλο σας"
73
+ "You can't toggle your status": "Δεν επιτρέπεται η αλλαγή της κατάστασής σας"
74
+
75
+ "%{errors} prohibited this page from being saved:":
76
+ "%{model} successfully created": "Το μοντέλο %{model} δημιουργήθηκε επιτυχώς"
77
+ "%{model} successfully removed": "Το μοντέλο %{model} απομακρύνθηκε επιτυχώς"
78
+ "%{model} successfully updated": "Το μοντέλο %{model} ανανεώθηκε επιτυχώς"
79
+ "%{model} %{attribute} changed": "Το χαρακτηριστικό μοντέλου %{model} %{attribute} άλλαξε"
@@ -0,0 +1,18 @@
1
+ # Spanish (es) translations for Typus by:
2
+ # - Felipe Talavera <http://github.com/flype>
3
+
4
+ es:
5
+ activerecord:
6
+ models:
7
+ admin_user: "Usuario Admin"
8
+ attributes:
9
+ admin_user:
10
+ email: "Correo electrónico"
11
+ first_name: "Nombre"
12
+ locale: "Idioma"
13
+ last_name: "Apellidos"
14
+ password: "Contraseña"
15
+ password_confirmation: "Confirmar contraseña"
16
+ role: "Rol"
17
+ status: "Estado"
18
+ locale:
@@ -0,0 +1,91 @@
1
+ # Spanish (es) translations for Typus by:
2
+ # - Felipe Talavera <http://github.com/flype>
3
+
4
+ es:
5
+
6
+ "Actions": "Acciones"
7
+ "Active": "Activo"
8
+ "Add": "Añadir"
9
+ "Add New": "Añadir nuevo"
10
+ "Add %{resource}": "Añadir %{resource}"
11
+ "All": "Todos"
12
+ "Applications": "Applicaciones"
13
+ "Are you sure?": "¿Estás seguro?"
14
+
15
+ "Back to list": "Volver al listado"
16
+
17
+ "Change %{attribute}?": "Cambiar %{attribute}?"
18
+ "Create %{resource}": "Crear %{resource}"
19
+
20
+ "Dashboard": "Panel de control"
21
+ "Down": "Bajar"
22
+ "Delete Permanently": "Eliminar de la papelera"
23
+ "Destroy": "Eliminar"
24
+ "Destroy": "Eliminar"
25
+
26
+ "Edit": "Editar"
27
+ "Edit %{resource} %{id}": "Editar %{resource} %{id}"
28
+ "Enter your email below to create the first user": "Introduce tu email para crear el primer usuario."
29
+
30
+ "False": "Falso"
31
+ "Filter": "Filtrar"
32
+
33
+ "I remember my password": "Recuerdo mi contraseña"
34
+ "If you didn't request a password update, you can ignore this message": "Si no pediste una actualización de tu contraseña, puedes ignorar este mensaje."
35
+ "If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Si has relizado algún cambio en los campos sin pulsar en el botón de Guardar/Actualizar, tus cambios se perderán."
36
+ "Inactive": "Inactivo"
37
+
38
+ "Last few days": "Últimos dias"
39
+ "Last 30 days": "Últimos 30 dias"
40
+ "Last 7 days": "Últimos 7 dias"
41
+ "Login": "Login"
42
+
43
+ "New": "Nuevo"
44
+ "New %{resource}": "Nuevo %{resource}"
45
+ "Next": "Siguiente"
46
+ "No %{resources} found": "No se han encontrado %{resources}."
47
+ "No entries found": "No se han encontrado entradas."
48
+
49
+ "Password recovery link sent to your email": "Enlace de recuperación de contraseña enviado a tu correo electrónico."
50
+ "Previous": "Anterior"
51
+
52
+ "Record moved %{to}": "Record moved %{to}."
53
+ "Recover password": "Recuperar contraseña"
54
+ "Remove": "Eliminar"
55
+ "Remove %{resource}?": "¿Borrar %{resource}?"
56
+ "Reset password": "Cambiar contraseña"
57
+ "Resources": "Recursos"
58
+ "Restore": "Restaurar"
59
+
60
+ "Save": "Guardar"
61
+ "Save and add another": "Guardar y añadir nuevo"
62
+ "Save and continue editing": "Guardar y seguir editando"
63
+ "Save %{resource}": "Guardar %{resource}"
64
+ "Search": "Buscar"
65
+ "Show": "Mostrar"
66
+ "Show all dates": "Mostrar todas las fechas"
67
+ "Show by %{attribute}": "Mostrar por %{attribute}"
68
+ "Show %{resource}": "Mostrar %{resource}"
69
+ "Sign in": "Entrar"
70
+ "Sign out": "Salir"
71
+ "Sign up": "Crear cuenta"
72
+ "System Users Administration": "Administrar usuarios del sistema"
73
+
74
+ "Today": "Hoy"
75
+ "Trash": "Papelera"
76
+ "True": "Verdadero"
77
+
78
+ "Unrelate": "Desvincular"
79
+ "Up": "Subir"
80
+
81
+ "You can update your password at": "Puedes actualizar tu contraseña en"
82
+ "You can't change your role": "No puedes cambiar tu propio rol."
83
+ "You can't toggle your status": "No puedes cambiar tu estado."
84
+
85
+ "View all %{attribute}":
86
+ "View site": "Ver web"
87
+
88
+ "%{errors} prohibited this page from being saved:":
89
+ "%{model} successfully created": "%{model} satisfactoriamente creado."
90
+ "%{model} successfully removed": "%{model} satisfactoriamente eliminado."
91
+ "%{model} successfully updated": "%{model} satisfactoriamente actualizado."
@@ -0,0 +1,18 @@
1
+ # French (fr) translations for Typus by:
2
+ # - Ned Baldessin <http://github.com/nedbaldessin>
3
+ # - Jonathan Meiss <http://github.com/jmeiss>
4
+
5
+ fr:
6
+ activerecord:
7
+ models:
8
+ admin_user: "Utilisateur admin"
9
+ attributes:
10
+ admin_user:
11
+ email:
12
+ first_name: "Prénom"
13
+ last_name: "Nom de famille"
14
+ password: "Mot de passe"
15
+ password_confirmation: "Confirmation du mot de passe"
16
+ status: "État"
17
+ role: "Rôle"
18
+ locale:
@@ -0,0 +1,83 @@
1
+ # French (fr) translations for Typus by:
2
+ # - Ned Baldessin <http://github.com/nedbaldessin>
3
+ # - Jonathan Meiss <http://github.com/jmeiss>
4
+
5
+ fr:
6
+
7
+ "Actions": "Actions"
8
+ "Active": "Actif"
9
+ "Add": "Ajouter"
10
+ "Add New": "Ajouter nouveau"
11
+ "Are you sure?": "Êtes-vous sûre ?"
12
+
13
+ "Bottom": "À la fin"
14
+
15
+ "Change %{attribute}?": "Changer %{attribute} ?"
16
+ "Create %{resource}": "Créer %{resource}"
17
+
18
+ "Dashboard": "Tableau de bord"
19
+ "Down": "Descendre"
20
+
21
+ "Edit": "Éditer"
22
+ "Edit %{resource} %{id}": "Éditer %{resource} %{id}"
23
+ "Enter your email below to create the first user": "Entrez votre adresse email pour créer le premier utilisateur"
24
+
25
+ "False": "Faux"
26
+ "Filter": "Filtrer"
27
+
28
+ "I remember my password": "Je me souviens du mot de passe"
29
+ "If you didn't request a password update, you can ignore this message": "Si vous n'avez pas demandé à mettre à jour votre mot de passe, vous pouvez ignorer ce message"
30
+ "If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Si vous avez effectué des modifications sans cliquer sur le bouton Enregistrer ou Mettre à jour, ces modifications seront perdues."
31
+ "Inactive": "Inactif"
32
+
33
+ "Last few days": "Ces derniers jours"
34
+ "Last 30 days": "30 derniers jours"
35
+ "Last 7 days": "7 derniers jours"
36
+ "Login": "Identification"
37
+
38
+ "New": "Nouveau"
39
+ "New %{resource}": "Nouveau %{resource}"
40
+ "Next": "Suivant"
41
+ "No %{resources} found": "Aucun(e) %{resources} trouvé(e)"
42
+
43
+ "Password recovery link sent to your email": "Le lien pour retrouver votre mot de passe vous a été envoyé par email"
44
+ "Previous": "Précédent"
45
+
46
+ "Record moved %{to}": "Entrées réordonnées"
47
+ "Recover password": "Retrouver mon mot de passe"
48
+ "Remove": "Supprimer"
49
+ "Remove %{resource}?": "Supprimer %{resource}?"
50
+ "Reset password": "Renouveler le mot de passe"
51
+ "Resources": "Ressources"
52
+
53
+ "Save %{resource}": "Sauvegarder %{resource}"
54
+ "Search": "Recherche"
55
+ "Show": "Voir"
56
+ "Show all dates":
57
+ "Show by %{attribute}":
58
+ "Show %{resource}": "Voir %{resource}"
59
+ "Show by %{attribute}": "Afficher par %{attribute}"
60
+ "Sign in": "Entrer"
61
+ "Sign out": "Déconnexion"
62
+ "Sign up": "Ouvrir un compte"
63
+ "System Users Administration": "Modifier les utilisateurs de l'admin"
64
+
65
+ "Today": "Aujourd'hui"
66
+ "Top": "Au début"
67
+ "Trash": "Supprimer"
68
+ "True": "Vrai"
69
+
70
+ "Unrelate": "Dissocier"
71
+ "Up": "Monter"
72
+
73
+ "View all %{attribute}": "Voir tou(s/tes) %{attribute}"
74
+ "View site": "Voir le site"
75
+
76
+ "You can update your password at": "Vous pouvez modifier votre mot de passe ici"
77
+ "You can't change your role": "Vous ne pouvez pas changer votre propre rôle."
78
+ "You can't toggle your status": "Vous ne pouvez pas basculer votre statut"
79
+
80
+ "%{errors} prohibited this page from being saved:":
81
+ "%{model} successfully created": "%{model} correctement créé(e)."
82
+ "%{model} successfully removed": "%{model} correctement supprimé(e)."
83
+ "%{model} successfully updated": "%{model} correctement mis(e)-à-jour."
@@ -0,0 +1,17 @@
1
+ # Hungarian (hu) translations for Typus by:
2
+ # - Tompa Gábor <http://github.com/tompagabor>
3
+
4
+ hu:
5
+ activerecord:
6
+ models:
7
+ admin_user:
8
+ attributes:
9
+ admin_user:
10
+ email:
11
+ first_name: "Vezetéknév"
12
+ last_name: "Keresznév"
13
+ password: "Jelszó"
14
+ password_confirmation: "Jelszó megerősítés"
15
+ status: "Státusz"
16
+ role: "Jogosultsági szint"
17
+ locale:
@@ -0,0 +1,77 @@
1
+ # Hungarian (hu) translations for Typus by:
2
+ # - Tompa Gábor <http://github.com/tompagabor>
3
+
4
+ hu:
5
+
6
+ "Actions": "Akciók"
7
+ "Active": "Aktív"
8
+ "Add": "Hozzáad"
9
+ "Add New": "Új hozzáadása"
10
+ "Are you sure?": "Biztos vagy benne?"
11
+
12
+ "Change %{attribute}?": "Megváltoztatod ezt: %{attribute}?"
13
+ "Create %{resource}": "%{resource} létrehozása"
14
+
15
+ "Dashboard": "Admin nyitólap"
16
+ "Down": "Le"
17
+
18
+ "Edit": "Szerkesztés"
19
+ "Edit %{resource} %{id}": "Szerkesztés %{resource} %{id}"
20
+ "Enter your email below to create the first user": "Írd be az e-mail címed az első felhasználó létrehozásához"
21
+
22
+ "False": "Hamis"
23
+ "Filter":
24
+
25
+ "I remember my password": "Emlékszem a jelszavamra"
26
+ "If you didn't request a password update, you can ignore this message": "Hogyha nem kértél jelszó emlékesztetőt, nyugodtan töröld ki ezt a levelet."
27
+ "If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Ha a módosítások után nem kattintassz a Mentés/Firssítés gombra, el fognak veszni a változtatások."
28
+ "Inactive": "Inaktív"
29
+
30
+ "Last few days": "Utóbbi néhány nap"
31
+ "Last 30 days": "Az elmúlt 30 nap"
32
+ "Last 7 days": "Az elmúlt 7 nap"
33
+ "Login": "Belépés"
34
+
35
+ "New": "Új"
36
+ "New %{resource}": "Új %{resource}"
37
+ "Next": "Következő"
38
+ "No %{resources} found":
39
+
40
+ "Password recovery link sent to your email": "A jelszó helyreállító linket elküldtük az email címedre."
41
+ "Previous": "Előző"
42
+
43
+ "Record moved %{to}": "A bejegyzés áthelyezve: %{to}"
44
+ "Recover password": "Jelszó helyreállítás"
45
+ "Remove": "Eltávolítás"
46
+ "Remove %{resource}?": "Eltávolítod %{resource}?"
47
+ "Reset password": "Jelszó módosítása"
48
+ "Resources": "Források"
49
+
50
+ "Save %{resource}": "%{resource} mentése"
51
+ "Search": "Keresés"
52
+ "Show": "Mutatás"
53
+ "Show all dates":
54
+ "Show by %{attribute}":
55
+ "Show %{resource}": "%{resource} mutatása"
56
+ "Sign in": "Bejelentkezés"
57
+ "Sign out": "Kijelentkezés"
58
+ "Sign up": "Regisztráció"
59
+ "System Users Administration": "Rendszeradminisztrátorok kezelése"
60
+
61
+ "Today": "Ma"
62
+ "True": "Igaz"
63
+
64
+ "Unrelate":
65
+ "Up": "Fel"
66
+
67
+ "View all %{attribute}":
68
+ "View site": "A weboldal megtekintése"
69
+
70
+ "You can update your password at": "Frissítheted a jelszavad"
71
+ "You can't change your role": "Nincsen jogod megváltoztatni a jogosultsági szintedet"
72
+ "You can't toggle your status": "Nincs jogod változtatni a státuszodat"
73
+
74
+ "%{errors} prohibited this page from being saved:":
75
+ "%{model} successfully created": "%{model} sikeresen létrehozva"
76
+ "%{model} successfully removed": "%{model} sikeresen törölve"
77
+ "%{model} successfully updated": "%{model} sikereseb frissítve"