Skip to content

Commit

Permalink
Updated for release 5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Aug 23, 2024
1 parent bbde1e8 commit 51a97c9
Show file tree
Hide file tree
Showing 95 changed files with 1,209 additions and 779 deletions.
5 changes: 5 additions & 0 deletions css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -788,4 +788,9 @@ svg.stats {
display: inline-block;
vertical-align: text-bottom;
margin-left: 4px;
}

.dialogBody {
padding: 8px 0px 16px 8px;
overflow-y: hidden;
}
5 changes: 5 additions & 0 deletions css/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -784,4 +784,9 @@ svg.stats {
display: inline-block;
vertical-align: text-bottom;
margin-left: 4px;
}

.dialogBody {
padding: 8px 0px 16px 8px;
overflow-y: hidden;
}
3 changes: 1 addition & 2 deletions html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new About();">
<body class="dialogBody" onload="new About();">
<h2 class="center">Swordfish</h2>
<div class="fill_width center">
<img src="../icons/icon.png" alt="about box">
Expand All @@ -17,7 +17,6 @@ <h2 class="center">Swordfish</h2>
<button id="system">System Information</button>
<button id="licensesButton">Licenses</button>
</div>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/about.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/addFile.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddFile();">
<body class="dialogBody" onload="new AddFile();">

<table class="fill_width">
<tr>
Expand Down Expand Up @@ -118,7 +118,6 @@
<button id="addProjectButton">Translate File</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/addFile.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/addGlossary.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddGlossary();">
<body class="dialogBody" onload="new AddGlossary();">
<table class="fill_width">
<tr>
<td class="middle">
Expand Down Expand Up @@ -55,7 +55,6 @@
<button id="addGlossaryButton">Add Glossary</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/addGlossary.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/addMemory.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddMemory();">
<body class="dialogBody" onload="new AddMemory();">
<table class="fill_width">
<tr>
<td class="middle">
Expand Down Expand Up @@ -55,7 +55,6 @@
<button id="addMemoryButton">Add Memory</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/addMemory.js"></script>
</body>

Expand Down
4 changes: 2 additions & 2 deletions html/addNote.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddNote();">
<body class="dialogBody" onload="new AddNote();">
<div style="padding: 8px;">
<textarea id="area" class="fill_width" style="height: 80px;"></textarea>
</div>
<div class="buttonArea">
<button id="addButton">Add Note</button>
</div>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/"></script>
<script src="../js/addNote.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/addProject.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddProject();">
<body class="dialogBody" onload="new AddProject();">
<table class="fill_width">
<tr>
<td class="middle">
Expand Down Expand Up @@ -120,7 +120,6 @@
<button id="addProjectButton">Create Project</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/addProject.js"></script>
</body>

Expand Down
71 changes: 28 additions & 43 deletions html/addTerm.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,53 +7,39 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddTerm();">
<body class="dialogBody" onload="new AddTerm();">

<table style="margin:0;">
<table class="fill_width">
<tr>
<td style="width:45%; padding:0px;">
<table>
<tr>
<td class="middle noWrap">
<label for="source">Source Term</label>
</td>
<td class="fill_width middle">
<input id="source" class="fill_width" />
</td>
</tr>
<tr>
<td class="middle noWrap">
<label for="target">Target Term</label>
</td>
<td class="fill_width middle">
<input id="target" class="fill_width" />
</td>
</tr>
</table>
<td class="middle noWrap" >
<label for="source">Source Term</label>
</td>
<td style="width:55%; padding:0px;">
<table>
<tr>
<td class="middle noWrap">
<label for="srcLangSelect">Source Language</label>
</td>
<td class="fill_width middle">
<select id="srcLangSelect" class="fill_width">
<td class="middle" style="width: 40%;">
<input id="source" class="table_input" />
</td>
<td class="middle noWrap">
<label for="srcLangSelect">Source Language</label>
</td>
<td class="middle" style="width: 40%;">
<select id="srcLangSelect" class="table_select">

</select>
</td>
</tr>
<tr>
<td class="middle noWrap">
<label for="tgtLangSelect">Target Language</label>
</td>
<td class="fill_width middle">
<select id="tgtLangSelect" class="fill_width">
</select>
</td>
</tr>
<tr>
<td class="middle noWrap">
<label for="target">Target Term</label>
</td>
<td class="middle" style="width: 40%;">
<input id="target" class="table_input" />
</td>
<td class="middle noWrap">
<label for="tgtLangSelect">Target Language</label>
</td>
<td class="middle" style="width: 40%;">
<select id="tgtLangSelect" class="table_select">

</select>
</td>
</tr>
</table>
</select>
</td>
</tr>
</table>
Expand All @@ -62,7 +48,6 @@
<button id="addTermButton">Add Term</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/addTerm.js"></script>
</body>

Expand Down
8 changes: 3 additions & 5 deletions html/addXmlConfiguration.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new AddXmlFilterConfiguration();">

<table style="width:calc(100% - 8px);">
<body class="dialogBody" onload="new AddXmlFilterConfiguration();">
<table class="fill_width">
<tr>
<td class="middle"><label for="rootName" class="noWrap">Root Element Name:</label></td>
<td class="middle fill_width"><input id="rootName" class="fill_width"></td>
<td class="middle fill_width"><input id="rootName" class="table_input"></td>
</tr>
</table>
<div class="buttonArea">
<button id="add">Add XML Filter Configuration</button>
</div>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/addXmlConfiguration.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/applyTm.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new ApplyTM();">
<body class="dialogBody" onload="new ApplyTM();">

<table class="fill_width">
<tr>
Expand Down Expand Up @@ -37,7 +37,6 @@
<button id="applyTmButton">Apply Translation Memory</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/applyTm.js"></script>
</body>

Expand Down
19 changes: 8 additions & 11 deletions html/browseDatabases.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,27 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body style="margin:0; padding:0;" onload="new BrowseDatabases();">
<div class="divContainer" id="container">
<body class="dialogBody" onload="new BrowseDatabases();">
<div class="divContainer bordered" id="container">
<table class="fill_width stripes">
<thead>
<tr>
<th>&nbsp;</th>
<th>Name</th>
<th>Project</th>
<th>Subject</th>
<th>Client</th>
<th class="left">Name</th>
<th class="left">Project</th>
<th class="left">Subject</th>
<th class="left">Client</th>
</tr>
</thead>
<tbody id="tbody">

</tbody>
</table>
</div>
<div style="padding:0px 8px;">
<div class="buttonArea">
<button id="addButton">Add Selected</button>
</div>
<div class="buttonArea">
<button id="addButton">Add Selected</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/browseDatabases.js"></script>
</body>

Expand Down
4 changes: 1 addition & 3 deletions html/changeCase.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new ChangeCase();">

<body class="dialogBody" onload="new ChangeCase();">
<table class="fill_width">
<tr>
<td class="middle">
Expand Down Expand Up @@ -55,7 +54,6 @@
<div class="buttonArea">
<button id="changeCase">Change Case</button>
</div>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/changeCase.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/concordanceSearch.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new ConcordanceSearch();">
<body class="dialogBody" onload="new ConcordanceSearch();">
<table class="fill_width">
<tr>
<td class="middle noWrap">
Expand Down Expand Up @@ -55,7 +55,6 @@
<button id="searchButton">Search Text</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/concordanceSearch.js"></script>
</body>

Expand Down
6 changes: 3 additions & 3 deletions html/defaultLangs.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new DefaultLanguages();">
<body class="dialogBody" onload="new DefaultLanguages();">
<table class="fill_width">
<tr>
<td class="noWrap middle"><label for="srcLangSelect">Default Source Language</label></td>
<td class="fill_width middle"><select id="srcLangSelect" class="fill_width"></select></td>
<td class="fill_width middle"><select id="srcLangSelect" class="table_select"></select></td>
</tr>
<tr>
<td class="noWrap middle"><label for="tgtLangSelect">Default Target Language</label></td>
<td class="fill_width middle"><select id="tgtLangSelect" class="fill_width"></select></td>
<td class="fill_width middle"><select id="tgtLangSelect" class="table_select"></select></td>
</tr>
</table>
<div class="buttonArea">
Expand Down
3 changes: 1 addition & 2 deletions html/elementConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new ElementConfig();">
<body class="dialogBody" onload="new ElementConfig();">
<table>
<tr>
<td class="middle noWrap">
Expand Down Expand Up @@ -65,7 +65,6 @@
<div class="buttonArea">
<button id="save">Save Element Configuration</button>
</div>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/elementConfig.js"></script>
</body>

Expand Down
5 changes: 2 additions & 3 deletions html/filterConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</heade>

<body onload="new FilterConfig();">
<div style="height: 300px; margin:8px; width: calc(100% - 18px);" class="divContainer bordered">
<body class="dialogBody" onload="new FilterConfig();">
<div style="height: 300px;" class="divContainer bordered">
<table id="table" class="stripes discover">
<thead>
<tr>
Expand All @@ -30,7 +30,6 @@
<button id="edit">Edit Element</button>
<button id="remove">Remove Selected Elements</button>
</div>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/filterConfig.js"></script>
</body>

Expand Down
3 changes: 1 addition & 2 deletions html/filterSegments.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body onload="new FilterSegments();">
<body class="dialogBody" onload="new FilterSegments();">

<table>
<tr>
Expand Down Expand Up @@ -51,7 +51,6 @@
<button id="filterSegments">Filter Segments</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/filterSegments.js"></script>
</body>

Expand Down
Loading

0 comments on commit 51a97c9

Please sign in to comment.