Hi,
the code uses the string Showing revisions of, looks up the translation for the configured language, and appends some label to the translation. See
|
<a ng-if="storedCredential.credential_id">{{ 'showing.revisions' | translate}} "{{storedCredential.label}}"</a> |
However, this leads to issues when translating the string to a language where the position of the "label" is not at the end of the string but somewhere else. In this case, the string cannot be translated correctly.
The translation string should be Showing revisions of {labelPlaceholder} or something similar.
Hi,
the code uses the string
Showing revisions of, looks up the translation for the configured language, and appends some label to the translation. Seepassman/templates/views/credential_revisions.html
Line 13 in 6fe7ff4
However, this leads to issues when translating the string to a language where the position of the "label" is not at the end of the string but somewhere else. In this case, the string cannot be translated correctly.
The translation string should be
Showing revisions of {labelPlaceholder}or something similar.