@@ -, +, @@ should return a string - define a translation for an item type (Administration -> Item types -> Edit -> Translate into other languages) - go on the item search form, the item type should be displayed correctly. --- Koha/ItemType.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/Koha/ItemType.pm +++ a/Koha/ItemType.pm @@ -57,7 +57,9 @@ sub translated_description { entity => 'itemtypes', lang => $lang })->next; - return $translated_description || $self->description; + return $translated_description + ? $translated_description->translation + : $self->description; } =head3 translated_descriptions --