The following UI script adds a new item to the Help menu (a second User Guide link for a different language):
name: Add a new item to the Help menu
description: Adds a new item to the Help menu
author: Gurock Software
version: 1.0
includes:
excludes:
js:
$(document).ready(
function() {
$('#helpDropdown').css('width', 225);
$('#helpDropdown ul li:eq(0)').removeClass('withBorder').after('<li class="withBorder"><a target="_blank" href="http://www.google.com/"><span>TestRail User Guide (Japanese)</span></a></li>');
}
);
Regards,
Tobias