diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-26 07:49:52 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-26 07:49:52 +0100 |
| commit | 4f646f8e77b2c657ead6299e06eab64f94cf223b (patch) | |
| tree | 7a575f0b4fadfeafc8c526513ebfeebde02900c7 | |
| parent | 2e58400ba9f0d760886335434d7030ad6e2b2f03 (diff) | |
| download | operum-4f646f8e77b2c657ead6299e06eab64f94cf223b.tar.gz operum-4f646f8e77b2c657ead6299e06eab64f94cf223b.zip | |
Add missing translation for plain text
The exporter view was missing the "Plain text" translation.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
| -rw-r--r-- | app/views/exports/new.html.erb | 2 | ||||
| -rw-r--r-- | config/locales/ca.yml | 1 | ||||
| -rw-r--r-- | config/locales/en.yml | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/app/views/exports/new.html.erb b/app/views/exports/new.html.erb index fa52360..aeb978d 100644 --- a/app/views/exports/new.html.erb +++ b/app/views/exports/new.html.erb @@ -11,7 +11,7 @@ <select id="export-select-format" data-action="export#change"> <option selected="selected" value="csv">CSV</option> <option value="uoc">UOC</option> - <option value="txt">Plain text</option> + <option value="txt"><%= I18n.t('searches.export.plain') %></option> </select> <a id="export-format-button" class="button" href="#"><%= I18n.t('searches.export.action').capitalize %></a> diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 4ebcd79..200e650 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -106,6 +106,7 @@ ca: action: exporta note: ATENCIÓ note-msg: només s'inclourà informació que pugui ser utilitzada per a escriure una secció de bibliografia + plain: Text pla chapter: Bibliografia tags: diff --git a/config/locales/en.yml b/config/locales/en.yml index c4fb38e..6975586 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -106,6 +106,7 @@ en: action: export note: 'NOTE' note-msg: only information that can be used for building up a bibliography section will be included + plain: Plain text chapter: Bibliography tags: |
