Skip to content

Commit

Permalink
fix: add missing translation keys
Browse files Browse the repository at this point in the history
  • Loading branch information
BarbaraOliveira13 committed Apr 23, 2024
1 parent f065179 commit b1e353e
Show file tree
Hide file tree
Showing 316 changed files with 142,567 additions and 8,689 deletions.
10 changes: 10 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"configurations": [
{
"type": "node-terminal",
"name": "Terminal de débogage de JavaScript",
"request": "launch",
"cwd": "${workspaceFolder}"
}
]
}
5 changes: 5 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ GEM
mime-types-data (3.2022.0105)
mini_magick (4.11.0)
mini_mime (1.1.2)
mini_portile2 (2.8.6)
minitest (5.16.3)
mixlib-cli (2.1.8)
mixlib-config (3.0.27)
Expand All @@ -595,6 +596,9 @@ GEM
multi_xml (0.6.0)
mustache (1.1.1)
nio4r (2.5.8)
nokogiri (1.13.4)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nokogiri (1.13.4-arm64-darwin)
racc (~> 1.4)
nokogiri (1.13.4-x86_64-darwin)
Expand Down Expand Up @@ -945,6 +949,7 @@ GEM
PLATFORMS
arm64-darwin-21
arm64-darwin-22
ruby
x86_64-darwin-21
x86_64-linux

Expand Down
1 change: 1 addition & 0 deletions config/i18n-tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,4 @@ ignore_unused:
- decidim.system.organizations.omniauth_settings.*
- decidim.newsletter_templates.*
- decidim.proposals.proposals.form_view.cancel
- decidim.proposals.admin.exports.private_proposals
3 changes: 3 additions & 0 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ en:
forgot_password:
ok_text: Warning, this password is the one of your local account and in no case the one of the account you use through FranceConnect. It will only be used when you log in with your email address rather than via FranceConnect.
proposals:
admin:
exports:
private_proposals: Proposals with private data
proposals:
edit:
add_documents: Add documents
Expand Down
3 changes: 3 additions & 0 deletions config/locales/fr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ fr:
forgot_password:
ok_text: Attention, ce mot de passe est celui de votre compte local et en aucun cas celui du compte que vous utilisez au travers de FranceConnect. Il vous servira uniquement lorsque vous vous connecterez avec votre adresse mail plutôt que via FranceConnect.
proposals:
admin:
exports:
private_proposals: Propositions avec donnée privée
proposals:
edit:
add_documents: Ajouter des documents
Expand Down
11 changes: 10 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2023_11_02_215036) do
ActiveRecord::Schema.define(version: 2024_03_14_092535) do

# These are extensions that must be enabled in order to support this database
enable_extension "ltree"
Expand Down Expand Up @@ -315,6 +315,14 @@
t.index ["decidim_organization_id"], name: "decidim_awesome_editor_images_constraint_organization"
end

create_table "decidim_awesome_private_proposal_fields", force: :cascade do |t|
t.text "private_body", default: "<xml></xml>"
t.bigint "proposal_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["proposal_id"], name: "decidim_awesome_private_proposal_fields_idx"
end

create_table "decidim_blogs_posts", id: :serial, force: :cascade do |t|
t.jsonb "title"
t.jsonb "body"
Expand Down Expand Up @@ -1720,6 +1728,7 @@
add_foreign_key "decidim_awesome_config_constraints", "decidim_awesome_config"
add_foreign_key "decidim_awesome_editor_images", "decidim_organizations"
add_foreign_key "decidim_awesome_editor_images", "decidim_users", column: "decidim_author_id"
add_foreign_key "decidim_awesome_private_proposal_fields", "decidim_proposals_proposals", column: "proposal_id"
add_foreign_key "decidim_budgets_budgets", "decidim_scopes"
add_foreign_key "decidim_budgets_orders", "decidim_budgets_budgets"
add_foreign_key "decidim_budgets_projects", "decidim_budgets_budgets"
Expand Down
Loading

0 comments on commit b1e353e

Please sign in to comment.