Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing translation on first login on Decidim v0.27 #9

Merged
merged 5 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Following Semantic Versioning 2.

## next version:

## Version 0.0.6.1 (PATCH)
- Fix missing translation on first login

## Version 0.0.6 (MINOR)
- Increase minimum Decidim version to 0.27.6
- Downgrade Ruby version to 3.0.7
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ group :development, :test do
gem "bootsnap", require: true
gem "byebug"
gem "social-share-button"
gem "uri", "0.13.1"
end

group :development do
Expand Down
5 changes: 3 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
decidim-verifications-members_picker (0.0.6)
decidim-verifications-members_picker (0.0.6.1)
decidim-core (>= 0.27.5)
decidim-verifications (>= 0.27.5)
psych (< 4)
Expand Down Expand Up @@ -752,7 +752,7 @@ GEM
concurrent-ruby (~> 1.0)
uber (0.1.0)
unicode-display_width (2.5.0)
uri (0.13.0)
uri (0.13.1)
valid_email2 (2.3.1)
activemodel (>= 3.2)
mail (~> 2.5)
Expand Down Expand Up @@ -815,6 +815,7 @@ DEPENDENCIES
social-share-button
spring (~> 2.0)
spring-watcher-listen (~> 2.0)
uri (= 0.13.1)
web-console (~> 3.5)

RUBY VERSION
Expand Down
1 change: 1 addition & 0 deletions config/i18n-tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ locales: [en, ca, es]

ignore_unused:
- "decidim.authorization_handlers.members_picker_authorization_handler.*"
- "decidim.verifications.authorizations.first_login.*"
- "decidim.verifications.members_picker_authorization.extra_explanation"
4 changes: 4 additions & 0 deletions config/locales/ca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ ca:
members_picker_help: "(separats per comes)"
name: Tria quins correus electrònics poden participar al component
verifications:
authorizations:
first_login:
actions:
members_picker_authorization_handler: Elecció de membres
members_picker_authorization:
extra_explanation: La participació està restringida a només uns participants
amb permís.
4 changes: 4 additions & 0 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ en:
name: Pick the emails of the users that will be able to participate in the
current component
verifications:
authorizations:
first_login:
actions:
members_picker_authorization_handler: Members picker
members_picker_authorization:
extra_explanation: Participation is restricted to participants with the permitted
email.
4 changes: 4 additions & 0 deletions config/locales/es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ es:
members_picker_help: "(separado por comas)"
name: Elige qué correos electrónicos pueden participar en el componente
verifications:
authorizations:
first_login:
actions:
members_picker_authorization_handler: Elección de miembros
members_picker_authorization:
extra_explanation: La participación está restringida a sólo unos participantes
con permiso
2 changes: 1 addition & 1 deletion lib/decidim/verifications/members_picker/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Decidim
module Verifications
module MembersPicker
def self.version
"0.0.6"
"0.0.6.1"
end
end
end
Expand Down
Loading