Skip to content

Commit

Permalink
Updated for release 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Oct 12, 2022
1 parent d23c01d commit 3221678
Show file tree
Hide file tree
Showing 77 changed files with 335 additions and 137 deletions.
4 changes: 2 additions & 2 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
</natures>
<filteredResources>
<filter>
<id>1614684023772</id>
<id>1665611701216</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TMXEditor is an open source desktop application designed for editing TMX (Transl

TMX is a standard XML-based format used for exchanging Translation Memories used by CAT (Computer Assisted Translation) tools. TMXEditor allows editing the content of multilingual TMX files.

#### Convert Excel to TMX with TMXEditor
## Convert Excel to TMX with TMXEditor

<a href="https://www.maxprograms.com/tutorials/CSVtoTMX.mp4"><img src="https://www.maxprograms.com/images/CSVtoTMX.png"></a>

Expand All @@ -32,6 +32,7 @@ The version of TMXEditor included in the official installers from [TMXEditor's H
Subscription version includes unlimited email support at [email protected]

### Differences sumary

Differences | Source Code | Subscription Based
-|----------- | -------------
Ready To Use Installers| No | Yes
Expand Down
1 change: 1 addition & 0 deletions css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ th svg {
visibility: hidden;
padding: 4px;
border-radius: 2px;
box-shadow: 0px 2px 4px var(--gray160);
white-space: nowrap;
/* Position the tooltip */
position: absolute;
Expand Down
1 change: 1 addition & 0 deletions css/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ th svg {
visibility: hidden;
padding: 4px;
border-radius: 2px;
box-shadow: 0px 2px 4px var(--gray160);
white-space: nowrap;
/* Position the tooltip */
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion 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 id="body">
<body id="body" onload="new About();">
<div class="fill_width center">
<img src="../images/about.png" alt="about box">
</div>
Expand Down
2 changes: 1 addition & 1 deletion html/addLanguage.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 id="body">
<body id="body" onload="new AddLanguage();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="language">Language</label></td>
Expand Down
2 changes: 1 addition & 1 deletion html/addNote.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 id="body">
<body id="body" onload="new AddNote();">

<table class="fill_width">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion html/addProperty.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 id="body">
<body id="body" onload="new AddProperty();">

<table id="propsTable" class="fill_width">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion html/attributes.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 id="body">
<body id="body" onload="new Attributes();">

<div style="padding: 8px;">
<table class="fill_width">
Expand Down
2 changes: 1 addition & 1 deletion html/changeLanguage.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 id="body">
<body id="body" onload="new ChangeLanguages();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="currentLanguage">Current Language</label></td>
Expand Down
2 changes: 1 addition & 1 deletion html/consolidateUnits.html → html/consolidate.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 id="body">
<body id="body" onload="new Consolidate();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="sourceLanguage">Source Language</label></td>
Expand Down
17 changes: 9 additions & 8 deletions html/convertCSV.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 id="body">
<body id="body" onload="new ConvertCSV();">

<table class="fill_width">
<tr>
Expand Down Expand Up @@ -51,10 +51,8 @@
</tr>
<tr>
<td>&nbsp;</td>
<td class="middle">Custom Separator: <input id="customSep" type='text'
style="width: 30px;"></td>
<td class="middle">Custom Delimiter: <input id="customDel" type='text'
style="width: 30px;"></td>
<td class="middle">Custom Separator: <input id="customSep" type='text' style="width: 30px;"></td>
<td class="middle">Custom Delimiter: <input id="customDel" type='text' style="width: 30px;"></td>
</tr>
</table>

Expand All @@ -67,10 +65,13 @@
</div>
<div class="right" style="padding: 4px; margin:4px 8px;">Detected Columns: <span id="columns">0</span></div>
<div style="padding: 4px; margin:4px 8px;">
<input type="checkbox" style="padding-top:4px;" id="fixQuotes"> <label for="fixQuotes" class="noWrap">Fix Excel Double Quotes</label><br>
<input type="checkbox" style="padding-top:4px;" id="optionalDelims"> <label for="optionalDelims" class="noWrap">Optional Text
<input type="checkbox" style="padding-top:4px;" id="fixQuotes"> <label for="fixQuotes" class="noWrap">Fix Excel
Double Quotes</label><br>
<input type="checkbox" style="padding-top:4px;" id="optionalDelims"> <label for="optionalDelims"
class="noWrap">Optional Text
Delimiters</label><br>
<input type="checkbox" style="padding-top:4px;" id="openTMX" checked> <label for="openTMX">Open Generated TMX File</label>
<input type="checkbox" style="padding-top:4px;" id="openTMX" checked> <label for="openTMX">Open Generated TMX
File</label>
</div>
<div class="buttonArea">
<button id="refreshPreview">Refresh Preview</button>
Expand Down
4 changes: 2 additions & 2 deletions html/convertExcel.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 id="body">
<body id="body" onload="new ConvertExcel();">

<table class="fill_width">
<tr>
Expand Down Expand Up @@ -37,7 +37,7 @@
</pre>
</div>
</div>
<div style="padding: 4px; margin:4px 8px;" >
<div style="padding: 4px; margin:4px 8px;">
<input type="checkbox" id="openTMX" checked> <label for="openTMX">Open Generated
TMX
File</label>
Expand Down
36 changes: 36 additions & 0 deletions html/convertSDLTM.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>

<head>
<title>Convert SDLTM File to TMX</title>
<link id="theme" rel="stylesheet" type="text/css" href="../css/light.css">
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body id="body" onload="new ConvertSDLTM();">

<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="sdltmFile">SDLTM File</label></td>
<td class="middle fill_width"><input type="text" id="sdltmFile" class="fill_width"></td>
<td><button id="browseSdltmFiles">Browse...</button></td>
</tr>
<tr>
<td class="middle noWrap"><label for="tmxFile">TMX File</label></td>
<td class="middle fill_width"> <input type="text" id="tmxFile" class="fill_width"></td>
<td class="middle"><button id="browseTmxFiles">Browse...</button></td>
</tr>
</table>
<div style="padding: 4px; margin:4px 8px;">
<input type="checkbox" style="padding-top:4px;" id="openTMX" checked> <label for="openTMX">Open Generated TMX
File</label>
</div>
<div class="buttonArea">
<button id="convert">Convert SDLTM File to TMX</button>
</div>

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

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

<body id="body" style="padding: 10px 10px 0px 10px;">
<body id="body" style="padding: 10px 10px 0px 10px;" onload="new CsvLanguages();">

<div class="bordered fill_width" style="width: 480px; height: 200px; padding: 4px; margin-top:10px; margin-left:4px;">
<div class="bordered fill_width"
style="width: 480px; height: 200px; padding: 4px; margin-top:10px; margin-left:4px;">
<div class="divContainer fill_width">
<table id="langsTable" class="fill_width">

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

<body id="body" style="padding: 10px 10px 0px 10px;">
<body id="body" style="padding: 10px 10px 0px 10px;" onload="new ExcelLanguages();">

<div class="bordered fill_width" style="width: 480px; height: 200px; padding: 4px; margin-top:10px; margin-left:4px;">
<div class="bordered fill_width"
style="width: 480px; height: 200px; padding: 4px; margin-top:10px; margin-left:4px;">
<div class="divContainer fill_width">
<table id="langsTable" class="fill_width">

Expand Down
2 changes: 1 addition & 1 deletion html/fileInfo.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 id="body" class="lighter">
<body id="body" class="lighter" onload="new FileInfo();">

<div class="tabHolder">
<div class="tab selectedTab" id="atributesTab">
Expand Down
4 changes: 2 additions & 2 deletions html/filters.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 id="body">
<body id="body" onload="new Filters();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="filterText">Text to Search</label></td>
Expand Down Expand Up @@ -52,7 +52,7 @@ <h4 style="padding-left: 4px; margin: 4px;">Filter Options</h4>
<button id="applyFilters">Apply Filters</button>
<button id="clearFilters">Clear Filters</button>
</div>

<script src="../js/keyboardHandler.js"></script>
<script src="../js/filters.js"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion html/licenses.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 id="body">
<body id="body" onload="new Licenses();">
<table class="fill_width " style="height: 28em;">
<tr>
<td>TMXEditor</td>
Expand Down
6 changes: 3 additions & 3 deletions html/maintenance.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 id="body">
<body id="body" onload="new Maintenance();">

<table class="fill_width">
<tr>
Expand All @@ -20,7 +20,7 @@
</tr>
<tr>
<td class="middle">
<input id="duplicates" type="checkbox" checked>
<input id="duplicates" type="checkbox" checked>
</td>
<td class="middle fill_width">
<label for="duplicates">Remove Duplicates</label>
Expand Down Expand Up @@ -59,7 +59,7 @@
</td>
<td class="middle fill_width">
<select id="sourceLanguage" class="table_select">

</select>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion html/mergeFiles.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 id="body">
<body id="body" onload="new MergeFiles();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="file">Merged TMX File</label></td>
Expand Down
2 changes: 1 addition & 1 deletion html/messages.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 id="body">
<body id="body" onload="new Messages();">
<table class="fill_width">
<tr>
<td id="icon" style="padding: 20px;">
Expand Down
4 changes: 2 additions & 2 deletions html/newFile.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 id="body">
<body id="body" onload="new NewFile();">
<table class="fill_width">
<tr>
<td class="middle noWrap">
Expand All @@ -23,7 +23,7 @@
<label for="tgtLanguage">Target Language</label>
</td>
<td class="middle">
<select id="tgtLanguage" class="table_select">
<select id="tgtLanguage" class="table_select">
</select>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion html/notes.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 id="body">
<body id="body" onload="new Notes();">

<div class="paddedPanel" style="height: 200px;">
<table id="notesTable" class="stripes" class="fill_width">
Expand Down
4 changes: 2 additions & 2 deletions html/preferences.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 id="body">
<body id="body" onload="new Preferences();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="themeColor">Theme</label></td>
Expand All @@ -22,7 +22,7 @@
<tr>
<td class="middle noWrap"><label for="threshold">Max File size for<br>&nbsp;Memory Storage</label></td>
<td class="middle fill_width noWrap">
<select id="threshold" >
<select id="threshold">
<option value="100">100</option>
<option value="200">200</option>
<option value="500">500</option>
Expand Down
10 changes: 5 additions & 5 deletions html/properties.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>

<body id="body">
<body id="body" onload="new Properties();">

<div class="paddedPanel" style="height: 200px;">
<table id="propsTable" class="stripes fill_width">
<div class="paddedPanel" style="height: 200px;">
<table id="propsTable" class="stripes fill_width">

</table>
</div>
</table>
</div>
<div class="buttonArea">
<button id="addProperty">Add Property</button>
<button id="deleteProperties">Delete Selected</button>
Expand Down
2 changes: 1 addition & 1 deletion html/removeLanguage.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 id="body">
<body id="body" onload="new RemoveLanguage();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="language">Language</label></td>
Expand Down
2 changes: 1 addition & 1 deletion html/removeSameAsSource.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 id="body">
<body id="body" onload="new removeSameAsSource();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="sourceLanguage">Source Language</label></td>
Expand Down
Loading

0 comments on commit 3221678

Please sign in to comment.