@@ -, +, @@ - Apply patch - Go to Home > Circulation > Holds queue - Verify that description in Item type column displays as before - Create a translation for an item type: Home > Administration > Item types > Modify item type 'BK' There you have a link 'Translate into other languages' to create translations To test, you can even 'translate' for English to overwrite the original description. - Verify that the translated descriptions displays when changing the language as appropriate - For an explanation how translation of item types descriptions work and why it is not done with Pootle see comment #7 --- circ/view_holdsqueue.pl | 1 - 1 file changed, 1 deletion(-) --- a/circ/view_holdsqueue.pl +++ a/circ/view_holdsqueue.pl @@ -68,7 +68,6 @@ my @itemtypesloop; while ( my $itemtype = $itemtypes->next ) { push @itemtypesloop, { value => $itemtype->itemtype, - description => $itemtype->description, # FIXME Don't we want the translated_description here? }; } --