Skip to content

Commit

Permalink
translations
Browse files Browse the repository at this point in the history
  • Loading branch information
michelson committed Aug 13, 2023
1 parent 5994811 commit 7384612
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/tracks/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@
<div class="flex-col space-y-3">
<div class="flex space-x-2 items-center">
<%= form.radio_button :private, false, label: "Acceso público", hint: "Todo el mundo con el enlace verá este artículo." %>
<%= form.radio_button :private, false, label: t("tracks.private_label"), hint: t("tracks.private_hint") %>
</div>
<div class="flex space-x-2 items-center">
<%= form.radio_button :private, true, label: "Miembros privados al artículo", hint: "Sólo los miembros de este artículo podrían acceder." %>
<%= form.radio_button :private, true, label: t("tracks.public_label"), hint: t("tracks.public_hint") %>
</div>
</div>
Expand Down
6 changes: 6 additions & 0 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ en:
or_more: or more
supporters: Supporters

private_label: Private
private_hint: Private access. Hidden to the world

public_label: Public
public_hint: Public access to everyone

home:
artists: Artists you should know

Expand Down

0 comments on commit 7384612

Please sign in to comment.