Skip to content

Commit

Permalink
Remove minutes_read to avoid awkward reading time wording
Browse files Browse the repository at this point in the history
- Issue #356
  • Loading branch information
mmistakes committed Jun 13, 2016
1 parent f95f725 commit cd019f4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions _data/ui-text.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ en: &DEFAULT_EN
ext_link_label : "Direct Link"
less_than : "less than"
minute_read : "minute read"
minutes_read : "minutes read"
share_on_label : "Share on"
meta_label :
tags_label : "Tags:"
Expand Down Expand Up @@ -45,7 +44,6 @@ es: &DEFAULT_ES
ext_link_label : "Enlace"
less_than : "menos de"
minute_read : "minuto de lectura"
minutes_read : "minutos de lectura"
share_on_label : "Compartir"
meta_label :
tags_label : "Etiquetas:"
Expand Down Expand Up @@ -78,7 +76,6 @@ fr: &DEFAULT_FR
ext_link_label : "Lien direct"
less_than : "plus petit que"
minute_read : "minute de lecture"
minutes_read : "minutes de lecture"
share_on_label : "Partager sur"
meta_label :
tags_label : "Tags :"
Expand Down
2 changes: 1 addition & 1 deletion _includes/read-time.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% elsif words < 360 %}
1 {{ site.data.ui-text[site.locale].minute_read }}
{% else %}
{{ words | divided_by:site.words_per_minute }} {{ site.data.ui-text[site.locale].minutes_read }}
{{ words | divided_by:site.words_per_minute }} {{ site.data.ui-text[site.locale].minute_read }}
{% endif %}
{% else %}
{{ site.data.ui-text[site.locale].undefined_wpm }}
Expand Down

0 comments on commit cd019f4

Please sign in to comment.