NEW - bug 220370: long English string spilled over the "String Translation" pane
https://bugs.eclipse.org/bugs/show_bug.cgi?id=220370
diff --git a/html/callback/getCurrentStringTranslation.php b/html/callback/getCurrentStringTranslation.php
index a60ca54..372461a 100644
--- a/html/callback/getCurrentStringTranslation.php
+++ b/html/callback/getCurrentStringTranslation.php
@@ -135,11 +135,11 @@
 
 	<div id="english-area" class="side-component">
 		<h4>English String</h4>
-		<div style='margin-bottom: .5em;'>
+		<div style='overflow: auto; height: 80px;'>
 			<b><?= htmlspecialchars(nl2br($line['string_value']));?></b>
 		</div>
 		<h4>Externalized Token</h4>
-		<div>
+		<div style='overflow-x: hidden; overflow-y: auto; height: 80px;'>
 		<?= htmlspecialchars_decode(nl2br($line['token']));?>
 		</div>		
 	</div>