Bug 37008: Make "Help" link in vue modules translatable

The "Help" link in the upper right corner was not translatable
in the newer vue modules like ERM and Preservation.

To test in koha-testing-docker:

* Install any language:
  sudo koha-translate --install de-DE --dev kohadev
* Activate the language in the language system preference
* Activate the ERMModule system preference
* Go to the ERM module, verify translation works in general, but Help
  remains in English
* Apply patch
* Run: yarn build
* Run: gulp po:update
* Verify the string "Help" now appears in
  misc/translator/po/de-DE-messages-js.po
* Translate it
* Run:
  sudo koha-translate --update de-DE --dev kohadev
* Verify "Help" is now translated

Signed-off-by: Jake Deery <jake.deery@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Katrin Fischer 2024-06-27 16:41:46 +00:00
parent 2af6bbbe5d
commit e76a5ec5cc
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -5,7 +5,8 @@
class="toplinks"
id="helper"
target="_blank"
><i class="fa fa-question-circle"></i> <span>Help</span></a
><i class="fa fa-question-circle"></i>
<span>{{ $__("Help") }}</span></a
>
</nav>
</template>