<%- labels.translationTo %> <%- langs[ lang ].label %>
<% if ( original_term_meta.length ) { %>
<% _.each(original_term_meta, function(meta_data){
/* `var` is function-scoped, so declaring this inside the Array branch left it undefined for a non-array meta_value - value.includes() below threw on the first such row, and on later rows silently reused the PREVIOUS row's value. Compute it for every row. */
var value = Array.isArray(meta_data.meta_value) ? meta_data.meta_value.join("") : String(meta_data.meta_value == null ? "" : meta_data.meta_value);
%>
<% if ( value.includes('\r\n') || value.includes('\n') ) { %>
<% } else { %>
<% } %>
<% }); %>