diff --git a/config/locales/en.yml b/config/locales/en.yml
index 8fa1cf13f..0e1a2c829 100755
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -256,12 +256,8 @@ en:
past: Past
phase_not_open:
not_open: This phase is not open yet
- phase_draft_publication:
- empty: There are no drafts published
- phase_allegations:
- empty: There are no drafts published
- phase_final_version_publication:
- empty: Results have not been published yet
+ phase_empty:
+ empty: Nothing published yet
process:
see_latest_comments: See latest comments
see_latest_comments_title: Comment on this process
diff --git a/config/locales/es.yml b/config/locales/es.yml
index a93d44d2e..3459f3494 100755
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -256,12 +256,8 @@ es:
past: Terminados
phase_not_open:
not_open: Esta fase del proceso todavía no está abierta
- phase_draft_publication:
- empty: No se ha publicado ningún borrador
- phase_allegations:
- empty: No se ha publicado ningún borrador
- phase_final_version_publication:
- empty: No se ha publicado el resultado todavía
+ phase_empty:
+ empty: No hay nada publicado todavía
process:
see_latest_comments: Ver últimas aportaciones
see_latest_comments_title: Aportar a este proceso
diff --git a/spec/features/legislation/processes_spec.rb b/spec/features/legislation/processes_spec.rb
index 818717757..8ae51c559 100644
--- a/spec/features/legislation/processes_spec.rb
+++ b/spec/features/legislation/processes_spec.rb
@@ -69,7 +69,7 @@ feature 'Legislation' do
visit legislation_process_draft_publication_path(process)
- expect(page).to have_content("There are no drafts published")
+ expect(page).to have_content("Nothing published yet")
end
end
@@ -87,7 +87,7 @@ feature 'Legislation' do
visit legislation_process_allegations_path(process)
- expect(page).to have_content("There are no drafts published")
+ expect(page).to have_content("Nothing published yet")
end
end
@@ -105,7 +105,7 @@ feature 'Legislation' do
visit legislation_process_final_version_publication_path(process)
- expect(page).to have_content("Results have not been published yet")
+ expect(page).to have_content("Nothing published yet")
end
end
end