diff --git a/app/views/layouts/dashboard/_proposal_totals.html.erb b/app/views/layouts/dashboard/_proposal_totals.html.erb
index 3e63021e2..835afaa52 100644
--- a/app/views/layouts/dashboard/_proposal_totals.html.erb
+++ b/app/views/layouts/dashboard/_proposal_totals.html.erb
@@ -40,7 +40,11 @@
- <%= link_to t('.show_proposal'), proposal_path(proposal), class: 'button success expanded' %>
+ <% if proposal.draft? %>
+ <%= link_to t('.preview_proposal'), proposal_path(proposal), class: 'button success expanded', target: '_blank' %>
+ <% else %>
+ <%= link_to t('.show_proposal'), proposal_path(proposal), class: 'button success expanded', target: '_blank' %>
+ <% end %>
diff --git a/config/locales/en/general.yml b/config/locales/en/general.yml
index 9dd5f2a80..caaf3b5e9 100644
--- a/config/locales/en/general.yml
+++ b/config/locales/en/general.yml
@@ -212,6 +212,7 @@ en:
active_resources: Active resources
community: Community
show_proposal: Show proposal
+ preview_proposal: Preview proposal
current_goal: Current goal
support_count:
one: "%{count} support"
diff --git a/config/locales/es/general.yml b/config/locales/es/general.yml
index 0e97961b9..1e4c2e7a2 100644
--- a/config/locales/es/general.yml
+++ b/config/locales/es/general.yml
@@ -212,6 +212,7 @@ es:
active_resources: Recursos activos
community: Comunidad
show_proposal: Ver propuesta
+ preview_proposal: Previsualizar propuesta
current_goal: Meta actual
support_count:
one: "%{count} apoyo"