Merge pull request #5084 from consul/check-translations-keys

Remove duplicate keys
This commit is contained in:
Sebastia
2023-02-22 16:38:36 +01:00
committed by GitHub
5 changed files with 3 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
<table> <table>
<thead> <thead>
<th class="text-center"><%= t("admin.debates.index.id") %></th> <th class="text-center"><%= t("admin.debates.index.id") %></th>
<th><%= t("admin.debates.index.title") %></th> <th><%= Debate.human_attribute_name(:title) %></th>
<th><%= t("admin.debates.index.author") %></th> <th><%= t("admin.debates.index.author") %></th>
</thead> </thead>
<tbody> <tbody>

View File

@@ -7,7 +7,7 @@
<thead> <thead>
<tr> <tr>
<th class="text-center"><%= t("admin.legislation.proposals.index.id") %></th> <th class="text-center"><%= t("admin.legislation.proposals.index.id") %></th>
<th><%= t("admin.legislation.proposals.index.title") %></th> <th><%= Legislation::Proposal.human_attribute_name(:title) %></th>
<th class="text-center"><%= t("admin.legislation.proposals.index.supports") %></th> <th class="text-center"><%= t("admin.legislation.proposals.index.supports") %></th>
<th><%= t("admin.proposals.index.selected") %></th> <th><%= t("admin.proposals.index.selected") %></th>
</tr> </tr>

View File

@@ -13,7 +13,7 @@
<thead> <thead>
<tr> <tr>
<th class="text-center"><%= t("admin.proposals.index.id") %></th> <th class="text-center"><%= t("admin.proposals.index.id") %></th>
<th><%= t("admin.proposals.index.title") %></th> <th><%= Proposal.human_attribute_name(:title) %></th>
<th><%= t("admin.proposals.index.author") %></th> <th><%= t("admin.proposals.index.author") %></th>
<th><%= t("admin.proposals.index.milestones") %></th> <th><%= t("admin.proposals.index.milestones") %></th>
<th><%= t("admin.proposals.index.selected") %></th> <th><%= t("admin.proposals.index.selected") %></th>

View File

@@ -619,7 +619,6 @@ en:
title: Proposals title: Proposals
back: Back back: Back
id: Id id: Id
title: Title
supports: Total supports supports: Total supports
form: form:
custom_categories: Categories custom_categories: Categories

View File

@@ -7,7 +7,6 @@ en:
delete_button: Remove image delete_button: Remove image
note: "You can upload one image of following content types: %{accepted_content_types}, up to %{max_file_size} MB." note: "You can upload one image of following content types: %{accepted_content_types}, up to %{max_file_size} MB."
add_new_image: Add image add_new_image: Add image
title_placeholder: Add a descriptive title for the image
actions: actions:
destroy: destroy:
notice: Image was deleted successfully. notice: Image was deleted successfully.