decidim-dev 0.27.10 → 0.28.0.rc4

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.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/app/commands/decidim/dummy_resources/create_dummy_resource.rb +0 -1
  3. data/app/events/decidim/dummy_resources/dummy_resource_event.rb +10 -0
  4. data/app/jobs/decidim/dummy_resources/hide_all_created_by_author_job.rb +13 -0
  5. data/app/models/decidim/dummy_resources/application_record.rb +9 -0
  6. data/app/models/decidim/dummy_resources/coauthorable_dummy_resource.rb +10 -0
  7. data/app/models/decidim/dummy_resources/dummy_resource.rb +93 -0
  8. data/app/models/decidim/dummy_resources/nested_dummy_resource.rb +10 -0
  9. data/app/packs/src/decidim/dev/accessibility.js +3 -3
  10. data/app/packs/src/decidim/dev/test/custom_map_factory.js +1 -1
  11. data/app/packs/stylesheets/decidim/dev/_accessibility.scss +24 -24
  12. data/app/packs/stylesheets/decidim/dev/_map.scss +10 -0
  13. data/app/packs/stylesheets/decidim/dev.scss +1 -0
  14. data/app/presenters/decidim/dummy_resources/official_author_presenter.rb +33 -0
  15. data/app/serializers/decidim/dummy_resources/dummy_serializer.rb +21 -0
  16. data/app/views/decidim/dummy_resources/dummy_resources/show.html.erb +22 -12
  17. data/config/locales/ar.yml +0 -1
  18. data/config/locales/bg.yml +0 -9
  19. data/config/locales/de.yml +1 -1
  20. data/config/locales/el.yml +0 -1
  21. data/config/locales/en.yml +1 -1
  22. data/config/locales/es-MX.yml +1 -1
  23. data/config/locales/es-PY.yml +1 -1
  24. data/config/locales/eu.yml +3 -3
  25. data/config/locales/gl.yml +0 -1
  26. data/config/locales/hu.yml +2 -3
  27. data/config/locales/id-ID.yml +0 -1
  28. data/config/locales/it.yml +0 -1
  29. data/config/locales/lv.yml +0 -1
  30. data/config/locales/nl.yml +0 -1
  31. data/config/locales/no.yml +0 -1
  32. data/config/locales/pl.yml +0 -9
  33. data/config/locales/pt-BR.yml +0 -9
  34. data/config/locales/pt.yml +0 -1
  35. data/config/locales/ru.yml +0 -1
  36. data/config/locales/sk.yml +0 -1
  37. data/config/locales/sv.yml +1 -2
  38. data/config/locales/tr-TR.yml +0 -1
  39. data/config/locales/zh-CN.yml +0 -1
  40. data/config/rubocop/disabled.yml +11 -0
  41. data/config/rubocop/faker.yml +480 -0
  42. data/config/rubocop/rails.yml +105 -0
  43. data/config/rubocop/rspec.yml +69 -0
  44. data/config/rubocop/ruby.yml +1207 -0
  45. data/lib/decidim/dev/assets/import_participatory_space_private_users.csv +2 -2
  46. data/lib/decidim/dev/assets/import_participatory_space_private_users_invalid_col_sep.csv +2 -0
  47. data/lib/decidim/dev/assets/import_participatory_space_private_users_nok.csv +2 -2
  48. data/lib/decidim/dev/assets/import_participatory_space_private_users_with_bom.csv +1 -1
  49. data/lib/decidim/dev/assets/iso-8859-15.md +1 -1
  50. data/lib/decidim/dev/assets/participatory_text.md +4 -2
  51. data/lib/decidim/dev/assets/verify_user_groups.csv +22 -22
  52. data/lib/decidim/dev/engine.rb +4 -3
  53. data/lib/decidim/dev/test/factories.rb +3 -5
  54. data/lib/decidim/dev/test/form_to_param_shared_examples.rb +1 -1
  55. data/lib/decidim/dev/test/promoted_participatory_processes_shared_examples.rb +9 -9
  56. data/lib/decidim/dev/test/rspec_support/accessibility_examples.rb +119 -1
  57. data/lib/decidim/dev/test/rspec_support/attachment_helpers.rb +2 -2
  58. data/lib/decidim/dev/test/rspec_support/bullet.rb +32 -0
  59. data/lib/decidim/dev/test/rspec_support/capybara.rb +26 -25
  60. data/lib/decidim/dev/test/rspec_support/cell_matchers.rb +1 -1
  61. data/lib/decidim/dev/test/rspec_support/component.rb +1 -311
  62. data/lib/decidim/dev/test/rspec_support/component_context.rb +10 -10
  63. data/lib/decidim/dev/test/rspec_support/confirmation_helpers.rb +18 -14
  64. data/lib/decidim/dev/test/rspec_support/data_consent.rb +2 -2
  65. data/lib/decidim/dev/test/rspec_support/dynamic_attach.rb +19 -4
  66. data/lib/decidim/dev/test/rspec_support/editor_context.rb +35 -0
  67. data/lib/decidim/dev/test/rspec_support/engine_examples.rb +15 -0
  68. data/lib/decidim/dev/test/rspec_support/filters.rb +11 -0
  69. data/lib/decidim/dev/test/rspec_support/forms_validations.rb +20 -0
  70. data/lib/decidim/dev/test/rspec_support/geocoder.rb +3 -3
  71. data/lib/decidim/dev/test/rspec_support/helpers.rb +187 -34
  72. data/lib/decidim/dev/test/rspec_support/imports_controller_shared_examples.rb +11 -11
  73. data/lib/decidim/dev/test/rspec_support/tom_select.rb +26 -0
  74. data/lib/decidim/dev/test/rspec_support/translation_helpers.rb +8 -8
  75. data/lib/decidim/dev/test/rspec_support/warden.rb +1 -1
  76. data/lib/decidim/dev/test/rspec_support/webmock.rb +1 -1
  77. data/lib/decidim/dev/test/rspec_support/webpacker.rb +4 -22
  78. data/lib/decidim/dev/test/spec_helper.rb +14 -3
  79. data/lib/decidim/dev/test/w3c_rspec_validators_overrides.rb +1 -5
  80. data/lib/decidim/dev/version.rb +1 -1
  81. data/lib/decidim/dev.rb +9 -0
  82. data/lib/decidim/dummy_resources/admin.rb +8 -0
  83. data/lib/decidim/dummy_resources/admin_engine.rb +43 -0
  84. data/lib/decidim/dummy_resources/component.rb +94 -0
  85. data/lib/decidim/dummy_resources/engine.rb +28 -0
  86. data/lib/decidim/dummy_resources.rb +20 -0
  87. data/lib/tasks/lighthouse_report.rake +29 -7
  88. data/rubocop-decidim.yml +13 -0
  89. metadata +117 -93
  90. data/config/locales/he-IL.yml +0 -1
  91. data/decidim-dev.gemspec +0 -58
  92. data/lib/decidim/dev/test/rspec_support/capybara_data_picker.rb +0 -36
  93. data/lib/decidim/dev/test/rspec_support/capybara_scopes_picker.rb +0 -92
  94. data/lib/decidim/dev/test/rspec_support/concurrency.rb +0 -23
  95. data/lib/decidim/dev/test/rspec_support/decidim_sanitization.rb +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ca47352df70d1610c23f90027f2c7d7654d9edf07917a5c45669a65bded1903
4
- data.tar.gz: 01b8a4806a4ba4fd9b105a089168d479547d3dabd083ae10e7ecb640882ba93b
3
+ metadata.gz: d8379d20879d176117cd8afea29f86ddd11a521a3722cc800925ac3fbc6bb644
4
+ data.tar.gz: dbf6086c3e69f6059b9e85f7b34528180891ac11174a6be3ed925faf0b5fafb1
5
5
  SHA512:
6
- metadata.gz: 30143af22aaf39ee1b9ce019e90cce2bd7edfe5783ce1d379826da8afcd753a31b43564ece67a6b278c8ec13beb610cf9cedd2d413c0e8e8a33a8b02259b9b45
7
- data.tar.gz: ac2310eab415bfa10b2b89667c629bd69b5f4501c94e5e136e989880e6507e815436b6e315a10b01b86b69438f19f23180c932b427ea371c2baec6f090d82f3c
6
+ metadata.gz: 062c93b817bdc2b1fe1552ad8e0816a6e37354ceace504353d8fe6ac01bf037ae1aa295845e7087bb5f162d1f4ad693e41b6c8601bce6b3122a3130152b8c1a3
7
+ data.tar.gz: 66e41feff57495c3f3f6f5a7144cb2a442f2c304c048abd6af9fae23151b065730a282f29becbb4ec9e1acf9b532d5598c87650d87ffa292d064329a24672cf6
@@ -3,7 +3,6 @@
3
3
  module Decidim
4
4
  module DummyResources
5
5
  class CreateDummyResource < Decidim::Command
6
- include Decidim::AttachmentMethods
7
6
  include Decidim::GalleryMethods
8
7
 
9
8
  def initialize(form)
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class DummyResourceEvent < Decidim::Events::BaseEvent
6
+ include Decidim::Events::EmailEvent
7
+ include Decidim::Events::NotificationEvent
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class HideAllCreatedByAuthorJob < Decidim::HideAllCreatedByAuthorJob
6
+ protected
7
+
8
+ def base_query
9
+ Decidim::DummyResources::DummyResource.not_hidden.where(author:)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class ApplicationRecord < ActiveRecord::Base
6
+ self.abstract_class = true
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class CoauthorableDummyResource < ApplicationRecord
6
+ include ::Decidim::Coauthorable
7
+ include HasComponent
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,93 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class DummyResource < ApplicationRecord
6
+ include HasComponent
7
+ include HasReference
8
+ include Resourceable
9
+ include Reportable
10
+ include Authorable
11
+ include HasCategory
12
+ include ScopableResource
13
+ include Decidim::Comments::Commentable
14
+ include Followable
15
+ include Traceable
16
+ include Publicable
17
+ include Decidim::DownloadYourData
18
+ include Searchable
19
+ include Paddable
20
+ include Amendable
21
+ include Decidim::NewsletterParticipant
22
+ include ::Decidim::Endorsable
23
+ include Decidim::HasAttachments
24
+ include Decidim::ShareableWithToken
25
+ include Decidim::TranslatableResource
26
+
27
+ translatable_fields :title
28
+ searchable_fields(
29
+ scope_id: { scope: :id },
30
+ participatory_space: { component: :participatory_space },
31
+ A: [:title],
32
+ D: [:address],
33
+ datetime: :published_at
34
+ )
35
+
36
+ amendable(
37
+ fields: [:title],
38
+ form: "Decidim::DummyResources::DummyResourceForm"
39
+ )
40
+
41
+ component_manifest_name "dummy"
42
+
43
+ def reported_content_url
44
+ ResourceLocatorPresenter.new(self).url
45
+ end
46
+
47
+ def reported_attributes
48
+ [:title]
49
+ end
50
+
51
+ def reported_searchable_content_extras
52
+ [normalized_author.name]
53
+ end
54
+
55
+ def allow_resource_permissions?
56
+ component.settings.resources_permissions_enabled
57
+ end
58
+
59
+ # Public: Overrides the `commentable?` Commentable concern method.
60
+ def commentable?
61
+ component.settings.comments_enabled?
62
+ end
63
+
64
+ # Public: Whether the object can have new comments or not.
65
+ def user_allowed_to_comment?(user)
66
+ component.can_participate_in_space?(user)
67
+ end
68
+
69
+ # Public: Whether the object can have new comment votes or not.
70
+ def user_allowed_to_vote_comment?(user)
71
+ component.can_participate_in_space?(user)
72
+ end
73
+
74
+ def self.user_collection(user)
75
+ where(decidim_author_id: user.id, decidim_author_type: "Decidim::User")
76
+ end
77
+
78
+ def self.export_serializer
79
+ DummySerializer
80
+ end
81
+
82
+ def self.newsletter_participant_ids(component)
83
+ authors_ids = Decidim::DummyResources::DummyResource.where(component:)
84
+ .where(decidim_author_type: Decidim::UserBaseEntity.name)
85
+ .where.not(author: nil)
86
+ .group(:decidim_author_id)
87
+ .pluck(:decidim_author_id)
88
+ commentators_ids = Decidim::Comments::Comment.user_commentators_ids_in(Decidim::DummyResources::DummyResource.where(component:))
89
+ (authors_ids + commentators_ids).flatten.compact.uniq
90
+ end
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class NestedDummyResource < ApplicationRecord
6
+ include Decidim::Resourceable
7
+ belongs_to :dummy_resource
8
+ end
9
+ end
10
+ end
@@ -66,7 +66,7 @@ $(() => {
66
66
 
67
67
  if (results.violations.length < 1) {
68
68
  $badge.addClass("decidim-accessibility-success");
69
- $(".decidim-accessibility-info", $badge).append(icon("check"));
69
+ $(".decidim-accessibility-info", $badge).append(icon("check-fill", { class: "w-4 h-4 fill-current" }));
70
70
  $report.append(`
71
71
  <div class="decidim-accessibility-report-item">
72
72
  <div class="decidim-accessibility-report-item-title">
@@ -78,7 +78,7 @@ $(() => {
78
78
  }
79
79
 
80
80
  $badge.addClass("decidim-accessibility-violation");
81
- $(".decidim-accessibility-info", $badge).append(icon("warning")).append(`
81
+ $(".decidim-accessibility-info", $badge).append(icon("error-warning-fill", { class: "w-4 h-4 mr-1 fill-current" })).append(`
82
82
  <span class="decidim-accessibility-info-amount">
83
83
  ${results.violations.length}
84
84
  </span>
@@ -113,7 +113,7 @@ $(() => {
113
113
  const selector = target.replace(/#\\3([0-9]) /g, "#$1")
114
114
  const $target = $(selector);
115
115
  const $indicator = $(`
116
- <div class="decidim-accessibility-indicator" aria-hidden="true">${icon("warning")}</div>
116
+ <div class="decidim-accessibility-indicator" aria-hidden="true">${icon("error-warning-fill", { class: "w-4 h-4 fill-current" })}</div>
117
117
  `);
118
118
  $indicator.data("accessibility-target", $target);
119
119
  $target.data("accessibility-indicator", $indicator);
@@ -4,7 +4,7 @@
4
4
  * following snippet to any view:
5
5
  *
6
6
  * <%= dynamic_map_for type: "custom", markers: [{ title: "Test 1", latitude: 41.385063, longitude: 2.173404 }], popup_template_id: "custom-popup" do %>
7
- * <% javascript_pack_tag("decidim_dev_test_custom_map") %>
7
+ * <% append_javascript_pack_tag("decidim_dev_test_custom_map") %>
8
8
  * <template id="custom-popup">
9
9
  * <div>
10
10
  * <h3>${title}</h3>
@@ -1,4 +1,4 @@
1
- .decidim-accessibility-badge{
1
+ .decidim-accessibility-badge {
2
2
  position: fixed;
3
3
  display: flex;
4
4
  z-index: 9999;
@@ -10,35 +10,35 @@
10
10
  user-select: none;
11
11
  cursor: pointer;
12
12
 
13
- &.decidim-accessibility-success{
14
- .decidim-accessibility-info{
13
+ &.decidim-accessibility-success {
14
+ .decidim-accessibility-info {
15
15
  color: #339833;
16
16
  }
17
17
  }
18
18
 
19
- &.decidim-accessibility-violation{
20
- .decidim-accessibility-info{
19
+ &.decidim-accessibility-violation {
20
+ .decidim-accessibility-info {
21
21
  color: #f00;
22
22
  }
23
23
  }
24
24
 
25
- > *{
25
+ > * {
26
26
  border-left: 1px solid #888;
27
27
  padding: 2px 10px;
28
28
 
29
- &:first-child{
29
+ &:first-child {
30
30
  border-left: 0;
31
31
  }
32
32
  }
33
33
 
34
- .decidim-accessibility-info{
34
+ .decidim-accessibility-info {
35
35
  display: flex;
36
36
  text-align: center;
37
37
  align-items: center;
38
38
  }
39
39
  }
40
40
 
41
- .decidim-accessibility-report{
41
+ .decidim-accessibility-report {
42
42
  position: fixed;
43
43
  z-index: 99999;
44
44
  display: none;
@@ -47,31 +47,31 @@
47
47
  background-color: #fff;
48
48
  border-right: 1px solid #888;
49
49
 
50
- .decidim-accessibility-report-item{
50
+ .decidim-accessibility-report-item {
51
51
  background-color: #fff;
52
52
  border-top: 1px solid #888;
53
53
  padding: 10px 20px;
54
54
  transition: background-color 1s;
55
55
 
56
- &:first-child{
56
+ &:first-child {
57
57
  border-top: 0;
58
58
  }
59
59
 
60
- &.decidim-accessibility-report-item-blink{
60
+ &.decidim-accessibility-report-item-blink {
61
61
  background-color: #fff9d5;
62
62
  }
63
63
 
64
- .decidim-accessibility-report-item-title{
64
+ .decidim-accessibility-report-item-title {
65
65
  font-size: 18px;
66
66
  font-weight: bold;
67
67
  }
68
68
 
69
- .decidim-accessibility-report-item-nodes{
70
- a{
69
+ .decidim-accessibility-report-item-nodes {
70
+ a {
71
71
  background-color: rgba(255, 255, 255, 0);
72
72
  transition: background-color 1s;
73
73
 
74
- &.decidim-accessibility-report-item-nodes-item-blink{
74
+ &.decidim-accessibility-report-item-nodes-item-blink {
75
75
  background-color: #ffbdad;
76
76
  }
77
77
  }
@@ -79,7 +79,7 @@
79
79
  }
80
80
  }
81
81
 
82
- .decidim-accessibility-indicator{
82
+ .decidim-accessibility-indicator {
83
83
  position: absolute;
84
84
  z-index: 9999;
85
85
  display: none;
@@ -96,15 +96,15 @@
96
96
  user-select: none;
97
97
  cursor: pointer;
98
98
 
99
- &.decidim-accessibility-indicator-blink{
99
+ &.decidim-accessibility-indicator-blink {
100
100
  border-color: #f19d00;
101
101
  background-color: #f19d00;
102
102
  color: #fff;
103
103
  }
104
104
  }
105
105
 
106
- body.decidim-accessibility-report-open{
107
- .decidim-accessibility-report{
106
+ body.decidim-accessibility-report-open {
107
+ .decidim-accessibility-report {
108
108
  display: block;
109
109
  width: 240px;
110
110
  height: 100%;
@@ -112,21 +112,21 @@ body.decidim-accessibility-report-open{
112
112
 
113
113
  .decidim-accessibility-badge,
114
114
  .off-canvas-wrapper,
115
- .profiler-results.profiler-top.profiler-left{
115
+ .profiler-results.profiler-top.profiler-left {
116
116
  left: 240px;
117
117
  }
118
118
 
119
- .decidim-accessibility-indicator{
119
+ .decidim-accessibility-indicator {
120
120
  display: flex;
121
121
  opacity: 1;
122
122
  }
123
123
 
124
- [data-accessibility-violation]{
124
+ [data-accessibility-violation] {
125
125
  outline: 5px dashed #f00 !important;
126
126
  outline-offset: 3px !important;
127
127
  transition: outline-color 1s;
128
128
 
129
- &[data-accessibility-violation="blink"]{
129
+ &[data-accessibility-violation="blink"] {
130
130
  outline-color: #f19d00 !important;
131
131
  }
132
132
  }
@@ -0,0 +1,10 @@
1
+ .dev {
2
+ &__map {
3
+ /* negative main padding values */
4
+ @apply md:-ml-16 -mt-6 md:-mt-12 aspect-square md:aspect-[21/9] [&>*]:h-full [&+*]:mt-6 md:[&+*]:mt-12;
5
+
6
+ .leaflet-container {
7
+ height: 100%;
8
+ }
9
+ }
10
+ }
@@ -1 +1,2 @@
1
1
  @import "stylesheets/decidim/dev/accessibility";
2
+ @import "stylesheets/decidim/dev/map";
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class OfficialAuthorPresenter
6
+ def name
7
+ self.class.name
8
+ end
9
+
10
+ def nickname
11
+ Decidim::UserBaseEntity.nicknamize(name)
12
+ end
13
+
14
+ def deleted?
15
+ false
16
+ end
17
+
18
+ def respond_to_missing?(*)
19
+ true
20
+ end
21
+
22
+ def method_missing(method, *args)
23
+ if method.to_s.ends_with?("?")
24
+ false
25
+ elsif [:avatar_url, :profile_path, :badge, :followers_count, :cache_key_with_version].include?(method)
26
+ ""
27
+ else
28
+ super
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class DummySerializer
6
+ def initialize(id)
7
+ @id = id
8
+ end
9
+
10
+ def run
11
+ serialize
12
+ end
13
+
14
+ def serialize
15
+ {
16
+ id: @id
17
+ }
18
+ end
19
+ end
20
+ end
21
+ end
@@ -1,15 +1,25 @@
1
- <div id="resource" class="row">
2
- <h2><%= translated_attribute(@commentable.title) %></h2>
3
- </div>
1
+ <% add_decidim_meta_tags({
2
+ description: translated_attribute(@commentable.body),
3
+ title: translated_attribute(@commentable.title),
4
+ url: dummy_resource_url(@commentable)
5
+ }) %>
4
6
 
5
- <div class="row">
6
- <%= action_authorized_link_to :foo, foo_dummy_resource_path(@commentable) do %>
7
- Foo
8
- <% end %>
9
- </div>
7
+ <%= render layout: "layouts/decidim/shared/layout_item", locals: { commentable: @commentable } do %>
8
+ <h2 class="h2 decorator mb-8">
9
+ <%= translated_attribute(@commentable.title) %>
10
+ </h2>
10
11
 
11
- <div class="row">
12
- <%= render partial: "decidim/shared/share_modal" %>
13
- </div>
12
+ <% content_for :aside do %>
13
+ <%= action_authorized_link_to :foo, foo_dummy_resource_path(@commentable) do %>
14
+ Foo
15
+ <% end %>
14
16
 
15
- <%= inline_comments_for(@commentable) %>
17
+ <section class="layout-main__section layout-main__buttons" data-buttons>
18
+ <%= cell "decidim/comments_button", nil %>
19
+ <div class="ml-auto">
20
+ <%= cell "decidim/share_button", nil %>
21
+ </div>
22
+ </section>
23
+ <% end %>
24
+ <%= comments_for(@commentable) %>
25
+ <% end %>
@@ -53,7 +53,6 @@ ar:
53
53
  description_own: لقد أنشأت %{score} اختبارات.
54
54
  name: الاختبارات
55
55
  next_level_in: إنشاء %{score} اختبارات أخرى للوصول إلى المستوى التالي!
56
- unearned_another: لم ينشئ هذا المشارك أي اختبارات حتى الآن.
57
56
  unearned_own: لم تنشئ أية اختبارات بعد.
58
57
  resource_links:
59
58
  test_link:
@@ -15,12 +15,6 @@ bg:
15
15
  dummy:
16
16
  settings:
17
17
  global:
18
- guided: Насочвано въвеждане
19
- guided_help: Помощен текст
20
- guided_readonly: Дезактивирано въвеждане
21
- guided_rich: Насочвано широко въвеждане
22
- guided_rich_help_html: HTML <strong>помощен</strong> текст
23
- guided_rich_readonly_html: HTML <strong>помощен</strong> текст за дезакривирано въвеждане
24
18
  readonly_attribute: Само за четене атрибут
25
19
  test: А тест
26
20
  test_choices:
@@ -29,7 +23,6 @@ bg:
29
23
  c: В избор
30
24
  test_options:
31
25
  bar: Нещо1
32
- baz: Baz
33
26
  foo: Нещо2
34
27
  step:
35
28
  endorsements_blocked: Одобряване забранено
@@ -37,7 +30,6 @@ bg:
37
30
  readonly_step_attribute: Само за четене стъпков атрибут
38
31
  test_options:
39
32
  bar: Нещо1
40
- baz: Baz
41
33
  foo: Нещо2
42
34
  dummy:
43
35
  admin:
@@ -53,7 +45,6 @@ bg:
53
45
  description_own: Вие създадохте %{score} теста.
54
46
  name: Тестове
55
47
  next_level_in: Създайте още %{score} теста за да достигнете следващо ниво!
56
- unearned_another: Този участник все още не е създал тест.
57
48
  unearned_own: Вие все още не сте създали тест.
58
49
  resource_links:
59
50
  test_link:
@@ -53,7 +53,7 @@ de:
53
53
  description_own: Sie haben %{score} Tests erstellt.
54
54
  name: Tests
55
55
  next_level_in: Erstellen Sie %{score} weitere Tests, um das nächste Level zu erreichen!
56
- unearned_another: Dieser Benutzer hat noch keine Tests erstellt.
56
+ unearned_another: Dieser Teilnehmer hat noch keine Tests erstellt.
57
57
  unearned_own: Sie haben noch keine Tests erstellt.
58
58
  resource_links:
59
59
  test_link:
@@ -45,7 +45,6 @@ el:
45
45
  description_own: Έχετε δημιουργήσει %{score} δοκιμές.
46
46
  name: Δοκιμές
47
47
  next_level_in: Δημιουργήστε %{score} ακόμη δοκιμές για να φτάσετε στο επόμενο επίπεδο!
48
- unearned_another: Αυτός ο συμμετέχων δεν έχει δημιουργήσει ακόμη καμία δοκιμή.
49
48
  unearned_own: Δεν έχετε δημιουργήσει ακόμη δοκιμές.
50
49
  resource_links:
51
50
  test_link:
@@ -53,7 +53,7 @@ en:
53
53
  description_own: You have created %{score} tests.
54
54
  name: Tests
55
55
  next_level_in: Create %{score} more tests to reach the next level!
56
- unearned_another: This participant hasn't created any tests yet.
56
+ unearned_another: This participant has not created any tests yet.
57
57
  unearned_own: You have created no tests yet.
58
58
  resource_links:
59
59
  test_link:
@@ -53,7 +53,7 @@ es-MX:
53
53
  description_own: Has creado %{score} pruebas.
54
54
  name: Pruebas
55
55
  next_level_in: '¡Crea %{score} pruebas más para alcanzar el siguiente nivel!'
56
- unearned_another: Este usuario aún no ha creado ninguna prueba.
56
+ unearned_another: Esta participante aún no ha creado ninguna prueba.
57
57
  unearned_own: No has creado ninguna prueba todavía.
58
58
  resource_links:
59
59
  test_link:
@@ -53,7 +53,7 @@ es-PY:
53
53
  description_own: Has creado %{score} pruebas.
54
54
  name: Pruebas
55
55
  next_level_in: '¡Crea %{score} pruebas más para alcanzar el siguiente nivel!'
56
- unearned_another: Este usuario aún no ha creado ninguna prueba.
56
+ unearned_another: Esta participante aún no ha creado ninguna prueba.
57
57
  unearned_own: No has creado ninguna prueba todavía.
58
58
  resource_links:
59
59
  test_link:
@@ -53,11 +53,11 @@ eu:
53
53
  description_own: '%{score} proba sortu dituzu.'
54
54
  name: Probak
55
55
  next_level_in: Sortu %{score} proba gehiago hurrengo mailara iristeko!
56
- unearned_another: Erabiltzaile honek ez du probarik sortu oraindik.
57
- unearned_own: Oraindik ez duzu probarik sortu.
56
+ unearned_another: Parte-hartzaile honek oraindik ez du inkestarik sortu.
57
+ unearned_own: Oraindik ez duzu probak sortu.
58
58
  resource_links:
59
59
  test_link:
60
- dummy_resource_dummy: ' Honi lotutakoa'
60
+ dummy_resource_dummy: ' Honekin lotutako proba'
61
61
  statistics:
62
62
  bar: Bar
63
63
  dummies_count_high: Dummies altua
@@ -47,7 +47,6 @@ gl:
47
47
  description_own: Creaches %{score} probas.
48
48
  name: Probas
49
49
  next_level_in: Crea %{score} probas máis para chegar ao seguinte nivel!
50
- unearned_another: Este usuario aínda non creou ningunha proba.
51
50
  unearned_own: Non creaches probas aínda.
52
51
  resource_links:
53
52
  test_link:
@@ -20,8 +20,8 @@ hu:
20
20
  bar: Oszlop
21
21
  foo: foo
22
22
  step:
23
- endorsements_blocked: Támogatások letiltva
24
- endorsements_enabled: Támogatások engedélyezve
23
+ endorsements_blocked: Jóváhagyások letiltva
24
+ endorsements_enabled: Jóváhagyások engedélyezve
25
25
  test_options:
26
26
  bar: Oszlop
27
27
  foo: foo
@@ -39,7 +39,6 @@ hu:
39
39
  description_own: Létrehoztad a(z) %{score} teszteket.
40
40
  name: Tesztek
41
41
  next_level_in: Hozz létre még %{score} tesztet a következő szint eléréséhez!
42
- unearned_another: Ez a felhasználó még nem hozott létre teszteket.
43
42
  unearned_own: Még nem hoztál létre teszteket.
44
43
  resource_links:
45
44
  test_link:
@@ -34,7 +34,6 @@ id:
34
34
  description_own: Anda telah membuat %{score} tes.
35
35
  name: Tes
36
36
  next_level_in: Buat %{score} tes lagi untuk mencapai level selanjutnya!
37
- unearned_another: Peserta ini belum membuat tes apa pun.
38
37
  unearned_own: Anda belum membuat tes.
39
38
  resource_links:
40
39
  test_link:
@@ -47,7 +47,6 @@ it:
47
47
  description_own: Hai creato %{score} test.
48
48
  name: Test
49
49
  next_level_in: Crea altri %{score} test per raggiungere il livello successivo!
50
- unearned_another: Questo utente non ha ancora creato alcun test.
51
50
  unearned_own: Non hai ancora creato alcun test.
52
51
  resource_links:
53
52
  test_link:
@@ -39,7 +39,6 @@ lv:
39
39
  description_own: Jūs esat izveidojis %{score} testus.
40
40
  name: Testi
41
41
  next_level_in: Izveidojiet vēl dažus %{score} testus, lai sasniegtu nākamo līmeni!
42
- unearned_another: Šis dalībnieks vēl nav izveidojis nevienu testu.
43
42
  unearned_own: Jūs vēl neesat izveidojis nevienu testu.
44
43
  resource_links:
45
44
  test_link:
@@ -47,7 +47,6 @@ nl:
47
47
  description_own: U hebt %{score} tests gemaakt.
48
48
  name: Tests
49
49
  next_level_in: Maak %{score} extra tests om het volgende niveau te bereiken!
50
- unearned_another: Deze gebruiker heeft nog geen tests gemaakt.
51
50
  unearned_own: U hebt nog geen tests gemaakt.
52
51
  resource_links:
53
52
  test_link:
@@ -47,7 +47,6 @@
47
47
  description_own: Du har opprettet %{score} tester.
48
48
  name: Tester
49
49
  next_level_in: Opprett %{score} flere tester for å nå neste nivå!
50
- unearned_another: Denne deltakeren har ikke opprettet en test ennå.
51
50
  unearned_own: Du har ikke laget noen tester ennå.
52
51
  resource_links:
53
52
  test_link: