<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://uat.community.rws.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>1. General - Recent Threads</title><link>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general</link><description>Topics concerning Passolo and software localization in general.</description><dc:language>en-US</dc:language><generator>Telligent Community 13 Non-Production</generator><lastBuildDate>Mon, 03 Aug 2026 10:44:59 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general" /><item><title>Source/target language used in the fuzzy search (bug ?)</title><link>https://uat.community.rws.com/thread/25555?ContentTypeID=0</link><pubDate>Sat, 18 May 2019 17:19:45 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:74f5be84-4546-4a3f-9b78-31b77b42e1f3</guid><dc:creator>Philippe Noth</dc:creator><slash:comments>2</slash:comments><comments>https://uat.community.rws.com/thread/25555?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/25555/source-target-language-used-in-the-fuzzy-search-bug/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi everyone,&lt;br /&gt;&lt;br /&gt;I notice a strange behaviour in Passolo 2016, which is really annoying since it slows me down.&lt;/p&gt;
&lt;p&gt;Here the fuzzy search for a string works OK,&amp;nbsp;using the source language as expected:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://uat.community.rws.com/resized-image/__size/1411x422/__key/communityserver-discussions-components-files/142/6177.sdl_2D00_passolo_2D00_fuzzy1.jpg"&gt;/resized-image/__size/1411x422/__key/communityserver-discussions-components-files/142/6177.sdl_2D00_passolo_2D00_fuzzy1.jpg&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Then, as soon as I hit Ctrl-Down to go to the next segment, the fuzzy search changes to the target language&amp;nbsp;and becomes useless (it searches using the pre-translated French text):&lt;/p&gt;
&lt;p&gt;&lt;a href="https://uat.community.rws.com/resized-image/__size/1418x240/__key/communityserver-discussions-components-files/142/4530.sdl_2D00_passolo_2D00_fuzzy2.jpg"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://uat.community.rws.com/resized-image/__size/1418x426/__key/communityserver-discussions-components-files/142/5810.sdl_2D00_passolo_2D00_fuzzy2.jpg"&gt;/resized-image/__size/1418x426/__key/communityserver-discussions-components-files/142/5810.sdl_2D00_passolo_2D00_fuzzy2.jpg&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://uat.community.rws.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/142/sdl_2D00_passolo_2D00_fuzzy2.jpg"&gt;&lt;/a&gt;Is that a bug ? I can avoid that by&amp;nbsp;grabbing the mouse to select the segments, but is there a solution or a better workaround?&lt;/p&gt;
&lt;p&gt;Of course, I cannot &amp;quot;upgrade&amp;quot; to Passolo 2018 since the package is a&amp;nbsp;tbulic16 file.&lt;/p&gt;
&lt;p&gt;Philippe&lt;/p&gt;</description></item><item><title>RE: Source/target language used in the fuzzy search (bug ?)</title><link>https://uat.community.rws.com/thread/195000?ContentTypeID=1</link><pubDate>Mon, 03 Aug 2026 10:44:59 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:92147c8d-8859-431f-975c-a4e5c934a127</guid><dc:creator>Emil Meinhardt</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/195000?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/25555/source-target-language-used-in-the-fuzzy-search-bug/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;This faulty behavior is still present in Passolo 2022. If the caret/focus is in the Target section of the Translation Window when moving to the next segment via Ctrl + Down, Passolo erroneously uses the target section&amp;#39;s content to perform a fuzzy match. This is fine when translating untranslated (red) strings, since the target for those is populated with the source text anyway. But it makes translating fuzzy matches a chore.&lt;/p&gt;
&lt;p&gt;For Ctrl + Down, the workaround I&amp;#39;m using is an AutoHotKey script that changes focus to the source before moving to the next segment, and then changes it back to the target afterward:&lt;/p&gt;
&lt;p&gt;; Make Ctrl + Down use the Source text for fuzzy matching when going to next segment.&lt;br /&gt;#IfWinActive, ahk_exe psl.exe&lt;br /&gt;^Down::&lt;br /&gt;#IfWinActive, ahk_exe psl16.exe&lt;br /&gt;^Down::&lt;br /&gt;Send, {Tab 2}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; Changes focus to Source section&lt;br /&gt;Sleep, 75&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; Increase this if Passolo&amp;#39;s UI can&amp;#39;t keep up with the keystrokes&lt;br /&gt;Send, ^{Down}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; Goes to next segment&lt;br /&gt;Sleep, 75&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; Increase this if Passolo&amp;#39;s UI can&amp;#39;t keep up with the keystrokes&lt;br /&gt;Send, {Tab}{Left}&amp;nbsp; &amp;nbsp; ; Changes focus back to Target section and moves caret to start of string&lt;br /&gt;#IfWinActive&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;br /&gt;return&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hungarian ignores 'one' pluralisation when exporting to android - but it shouldn't</title><link>https://uat.community.rws.com/thread/194994?ContentTypeID=1</link><pubDate>Mon, 03 Aug 2026 06:58:58 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:a926bb97-5ff5-40bf-9bf2-ddacc21d22d5</guid><dc:creator>Adrian Maniu</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/194994?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/61605/hungarian-ignores-one-pluralisation-when-exporting-to-android---but-it-shouldn-t/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="https://uat.community.rws.com/members/andreasebbert_2d00_karroum"&gt;Andreas Ebbert-Karroum&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We had a similar issue for&amp;nbsp;Warning - Ignored pluralisation form &amp;#39;zero&amp;#39; which was caused by using the digit 0 instead of the word zero in the file.&lt;/p&gt;
&lt;p&gt;Can you check if this is also the case on your side? This might fix the issue.&lt;/p&gt;
&lt;p&gt;Or let me know what is the source string in the source file?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Hungarian ignores 'one' pluralisation when exporting to android - but it shouldn't</title><link>https://uat.community.rws.com/thread/61605?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 10:21:38 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bee8306b-6fab-45cb-bb15-311e596527a3</guid><dc:creator>Andreas Ebbert-Karroum</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/61605?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/61605/hungarian-ignores-one-pluralisation-when-exporting-to-android---but-it-shouldn-t/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;We&amp;#39;re using Passolo Team Edition 2022 to translate an Android app. When exporting the new hungarian language, there are warnings:&lt;/p&gt;
&lt;p&gt;Generating &amp;quot;strings:Hungarian&amp;quot;&lt;br /&gt;Warning - Ignored pluralisation form &amp;#39;one&amp;#39; (line 0) because it is not supported by target language.&lt;br /&gt;Warning - Ignored pluralisation form &amp;#39;one&amp;#39; (line 0) because it is not supported by target language.&lt;br /&gt;Warning - Ignored pluralisation form &amp;#39;one&amp;#39; (line 0) because it is not supported by target language.&lt;/p&gt;
&lt;p&gt;This is an issue, since Android supports &amp;#39;one&amp;#39; plurals, and so should Passolo (or the android plugin), too. Also unicode itself, which passolo claims to be based upon, says that &amp;#39;one&amp;#39; plural form should exist:&lt;br /&gt;&lt;a href="https://www.unicode.org/cldr/charts/48/supplemental/language_plural_rules.html#hu"&gt;www.unicode.org/.../language_plural_rules.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Any idea, how to handle that?&lt;/p&gt;</description></item><item><title>Unable to re-import translated .txt / .csv file in Passolo</title><link>https://uat.community.rws.com/thread/61304?ContentTypeID=0</link><pubDate>Fri, 19 Jun 2026 12:03:42 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:14de05e9-303a-414f-95c0-ed08fc09c4dd</guid><dc:creator>Gregory Desomer</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/61304?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/61304/unable-to-re-import-translated-txt-csv-file-in-passolo/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black" data-olk-copy-source="MessageBody"&gt;Good morning,&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;We seem to be having an issue with Passolo 2022:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&lt;br /&gt;We have added Arabic as one of&lt;span&gt;&amp;nbsp;&lt;/span&gt;​our application&amp;#39;s&amp;nbsp;supported languages. I have exported the source strings (from .dll files) using the export manager in Passolo. I used the &amp;#39;Customizable text export&amp;#39; to produce a .csv file.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&amp;nbsp;&lt;img alt="Export Formats window in Passolo showing options: Passolo translation bundle, SDLXLIFF ExportImport, and Customizable Text Export selected." src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/pastedimage1757062717140v4.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&lt;span&gt;The file was&amp;nbsp;then fully translated and Arabic translations are visible when opening in Excel or text editor.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:600px;max-width:900px;" src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/pastedimage1781870477933v1.png" alt="Screenshot of a CSV file showing error codes and messages in English and Arabic, including '249: Microprocessor error' and its Arabic translation." /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&lt;span&gt;However, when re-importing the file back to Passolo, the import succeeds, but the translated strings are not displayed in the Translation column, it&amp;#39;s still in English.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&lt;span&gt;I have tried converting the file to different formats UTF-8, UTF-16, ... , even used concatenate to produce the exact same format as the exported file, but nothing seems to solve it. &lt;br /&gt;Even replacing just 1 string in the original final, doesn&amp;#39;t make it display when re-importing&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;Also tried the suggestions &lt;a href="https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/58934/imported-arabic-translations-not-displaying-in-passolo"&gt;here&lt;/a&gt;, but no luck.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en-US" data-ogsc="black"&gt;&lt;span&gt;Anyone who can provide some further insights or assistance?&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to re-import translated .txt / .csv file in Passolo</title><link>https://uat.community.rws.com/thread/194255?ContentTypeID=1</link><pubDate>Tue, 23 Jun 2026 10:08:56 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:0c8b78d4-9c38-40eb-babc-b923fc681587</guid><dc:creator>Achim Herrmann</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/194255?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/61304/unable-to-re-import-translated-txt-csv-file-in-passolo/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;The &lt;strong&gt;Customizable Text Export&lt;/strong&gt; feature can be used for many use cases; while it is suitable for communicating with translators, the export settings must be configured correctly for the import to work properly. Before exporting, you need to open the &lt;strong&gt;Export&lt;/strong&gt; settings and preferably use these settings. The most important setting is that the &lt;strong&gt;File will be reimported in PASSOLO&lt;/strong&gt; setting is activated. This creates a header line in the export file with information that controls the import.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:600px;max-width:900px;" src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/pastedimage1782209120840v1.png" alt="Screenshot of the Export Formats window in PASSOLO, showing options for exporting string lists. The Customize Text Format dialog is open, with 'File will be reimported in PASSOLO' checked." /&gt;&lt;/p&gt;
&lt;p&gt;Try to re-export with the recommended settings, then manually insert the translations from the existing translation file.&lt;/p&gt;
&lt;p&gt;For future translation workflows, try to use the &lt;strong&gt;SDXLIFF Export/Import&lt;/strong&gt; and ask your supply chain translators whether they are able to handle this file format.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ODBC Parser after update not available</title><link>https://uat.community.rws.com/thread/194055?ContentTypeID=1</link><pubDate>Tue, 09 Jun 2026 13:14:37 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:06ae39eb-a7f7-4eb1-aca5-c658d3ee59e1</guid><dc:creator>Paul Tudoran</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/194055?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60191/odbc-parser-after-update-not-available/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;!-- x-tinymce/html --&gt;&lt;/p&gt;
&lt;p&gt;Via a remote session we found that the&amp;nbsp;issue was that Passolo was licensed but not with the correct Passolo 2022 Network license.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We managed to solve the issue by resetting the license information from the server, done a reset on those licenses from our end and then activate online the Network Passolo licenses. We then checked and the ODBC Parser was working fine.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>ODBC Parser after update not available</title><link>https://uat.community.rws.com/thread/60191?ContentTypeID=0</link><pubDate>Sun, 25 Jan 2026 20:40:23 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:593a606c-9e49-4752-ba3c-c67784edde89</guid><dc:creator>Michael S&amp;#246;hn</dc:creator><slash:comments>6</slash:comments><comments>https://uat.community.rws.com/thread/60191?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60191/odbc-parser-after-update-not-available/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I just updated from Passolo 2018 to Passolo 2022. We&amp;#39;re translating projects using the odbc database parser. After converting a project to 2022, The odbc Parser.has an&amp;nbsp;error status.&amp;quot;Function not available&amp;quot;&lt;br /&gt;In Passolo 2018 it is still available. Anyone an idea how to activate the odbc parser?&lt;/p&gt;</description></item><item><title>Passolo changed values in .NET files that should not have been changed during file generation</title><link>https://uat.community.rws.com/thread/60276?ContentTypeID=0</link><pubDate>Thu, 05 Feb 2026 08:01:29 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:2f87df14-2ee4-4e1b-940a-59c00be1c6d0</guid><dc:creator>Tina Han</dc:creator><slash:comments>3</slash:comments><comments>https://uat.community.rws.com/thread/60276?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60276/passolo-changed-values-in-net-files-that-should-not-have-been-changed-during-file-generation/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;source file--InvAIRLookContent.dll&lt;/p&gt;
&lt;p&gt;target file--InvAIRLookContent.resources.dll&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;This file includes a value named `&lt;span style="color:#ff0000;"&gt;IsSynchronizedWithCurrentItem&lt;/span&gt;`, defined as `true` in the source file. We did not process this value in Passolo, only translating the strings within the file. However, during file generation, this value changed to `false`, causing an issue in our product:&lt;a href="https://jira.autodesk.com/browse/INVGEN-81390"&gt;[INVGEN-81390] WWL:GLOB: Update button doesn&amp;#39;t work in Chinese simply build - Autodesk, Inc. JIRA&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;We processed files in 12 localized languages using Passolo, and only the CHS files&amp;nbsp;have this issue&amp;mdash;all others worked fine.&lt;/li&gt;
&lt;li&gt;This problem has existed for several years. I&amp;#39;m currently using Passolo version is 22.0.248.0.&lt;/li&gt;
&lt;li&gt;I&amp;#39;ve attached the complete source files, LPU, the CHS file(have issue), and the JPN file(no issue) here:&amp;nbsp;[View:/cfs-file/__key/communityserver-discussions-components-files/142/Passolo-issue.zip:900:600]&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Please help&amp;nbsp;check this issue.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p style="padding-left:60px;"&gt;&lt;em&gt;English Source (Correct):&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;lt;inv:InvFlowRibbonSplitButton&amp;nbsp;x:Uid=&amp;quot;inv:InvFlowRibbonSplitButton_2&amp;quot;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;Id=&amp;quot;AppUpdateCmd&amp;quot; Text=&amp;quot;Update&amp;quot; IsSplit=&amp;quot;True&amp;quot;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;b&gt;IsSynchronizedWithCurrentItem=&amp;quot;True&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;!-- CORRECT&amp;nbsp;--&amp;gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;ShowText=&amp;quot;False&amp;quot;&amp;nbsp;Size=&amp;quot;Standard&amp;quot;&amp;nbsp;IsVisible=&amp;quot;True&amp;quot;&amp;nbsp;ToolTip=&amp;quot;Update&amp;quot;&amp;gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;Chinese Localized DLL (Incorrect):&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;lt;inv:InvFlowRibbonSplitButton&amp;nbsp;x:Uid=&amp;quot;inv:InvFlowRibbonSplitButton_2&amp;quot;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;adw:RibbonItem.Id=&amp;quot;AppUpdateCmd&amp;quot;&amp;nbsp;adw:RibbonItem.Text=&amp;quot;更新&amp;quot;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;adw:RibbonListButton.IsSplit=&amp;quot;True&amp;quot;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;b&gt;adw:RibbonListButton.IsSynchronizedWithCurrent&lt;/b&gt;&lt;b&gt;Item=&amp;quot;False&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt; !&lt;del&gt;{&lt;/del&gt;}(WRONG){&lt;del&gt;} &amp;nbsp;&lt;/del&gt;&amp;gt;&lt;/b&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;adw:RibbonItem.ShowText=&amp;quot;False&amp;quot;&amp;nbsp;adw:RibbonItem.Size=&amp;quot;Standard&amp;quot;&amp;nbsp;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;adw:RibbonItem.IsVisible=&amp;quot;True&amp;quot;&amp;nbsp;adw:RibbonItem.ToolTip=&amp;quot;更新&amp;quot;&amp;gt;&lt;/em&gt;&lt;/p&gt;</description></item><item><title>RE: Passolo changed values in .NET files that should not have been changed during file generation</title><link>https://uat.community.rws.com/thread/193946?ContentTypeID=1</link><pubDate>Wed, 03 Jun 2026 06:14:16 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:235973d3-1f46-461c-b21e-174e62c29d38</guid><dc:creator>Tina Han</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/193946?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60276/passolo-changed-values-in-net-files-that-should-not-have-been-changed-during-file-generation/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"&gt;Manually updated the value of &lt;span class="code" data-prosemirror-content-type="mark" data-prosemirror-mark-name="code"&gt;IsSynchronizedWithCurrentItem, the bug fixed now.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ODBC Parser after update not available</title><link>https://uat.community.rws.com/thread/193815?ContentTypeID=1</link><pubDate>Mon, 25 May 2026 06:32:26 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bd95c96a-6046-415c-8569-04864538650f</guid><dc:creator>Anca Stoian</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/193815?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60191/odbc-parser-after-update-not-available/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="https://uat.community.rws.com/members/michaels_f600_hn"&gt;Michael Söhn&lt;/a&gt;  If an issue is not solved, you need to inform the technical team via email immediately, the won&amp;#39;t keep the case open indefinitely. We will be pleased to help you with this problem so have logged a support case on your behalf. We do prioritise customers who have a support contract so please keep in mind it could take up to 48 hours, especially over a weekend, but rest assured we will contact you as soon as we can. You will be contacted at the email address used for this Community. Support Case Id :  CS0049776. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ODBC Parser after update not available</title><link>https://uat.community.rws.com/thread/193809?ContentTypeID=1</link><pubDate>Sun, 24 May 2026 19:34:25 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:7ac3db03-c4dc-47fa-ae39-1607546af86a</guid><dc:creator>Michael S&amp;#246;hn</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/193809?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60191/odbc-parser-after-update-not-available/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi, we&amp;#39;re still not able to work with the&amp;nbsp;Passolo 2022 . the pronlem is not solved and now a new service pack needsto be delivered,&amp;nbsp; please don&amp;#39;t close the ticket again unless it&amp;#39;s solved.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Checkbox: "Don't overwrite existing values when leveraging empty values" not working</title><link>https://uat.community.rws.com/thread/193535?ContentTypeID=1</link><pubDate>Mon, 11 May 2026 11:44:38 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:98379749-03fb-4f6e-aec2-b221c18497f2</guid><dc:creator>Adrian Maniu</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/193535?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/57296/checkbox-don-t-overwrite-existing-values-when-leveraging-empty-values-not-working/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;The issue CRQ-41953 is still with the development team, but we&amp;#39;ve escalated it, and we hope to have it fixed in the near future.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Checkbox: "Don't overwrite existing values when leveraging empty values" not working</title><link>https://uat.community.rws.com/thread/57296?ContentTypeID=0</link><pubDate>Thu, 03 Apr 2025 15:15:14 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:a7a625a2-0c2d-4f10-a413-4ae5402f1842</guid><dc:creator>Software Entwicklung</dc:creator><slash:comments>7</slash:comments><comments>https://uat.community.rws.com/thread/57296?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/57296/checkbox-don-t-overwrite-existing-values-when-leveraging-empty-values-not-working/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Version:&amp;nbsp;&lt;span id="OOS_Content_rptPackages_ctl00_lblPriceModel"&gt;Passolo 2022 Team Unlimited Edition (Network SN)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;We got 2 branches of the same software with one lpu project&amp;nbsp;each&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;branch #1 version1.lpu&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;branch #2 version2.lpu&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;version2.lpu has all current translations, alle new features, bugfixes etc.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;versio1.lpu has missing translation&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;e.g. : version1.lpu:&lt;/span&gt;&lt;/p&gt;
&lt;table width="154" height="59"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ID1&lt;/td&gt;
&lt;td&gt;de.text1new&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID2&lt;/td&gt;
&lt;td&gt;de.text2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID3&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;ID3 is not yet present in this version1.lpu&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;version2.lpu&lt;/span&gt;&lt;/p&gt;
&lt;table width="152" height="60"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ID1&lt;/td&gt;
&lt;td&gt;de.text1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID2&lt;/td&gt;
&lt;td&gt;de.text2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID3&lt;/td&gt;
&lt;td&gt;de.text3&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Workflow:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;open version2.lpu&amp;nbsp;&lt;/li&gt;
&lt;li&gt;leverage from version1 with checked checkbox:&amp;nbsp;&amp;quot;Don&amp;#39;t overwrite existing values when leveraging empty values&amp;quot;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;expected result:&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ID1&lt;/td&gt;
&lt;td&gt;de.text1new&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID2&lt;/td&gt;
&lt;td&gt;de.text2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID3&lt;/td&gt;
&lt;td&gt;de.text3&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;quot;real&amp;quot; result:&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ID1&lt;/td&gt;
&lt;td&gt;de.text1new&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID2&lt;/td&gt;
&lt;td&gt;de.text2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ID3&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Is this the right workflow for working with multiple lpu files in branches?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Screenshots:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:600px;max-width:900px;" src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/leverage_5F00_002.png" alt="Screenshot of Passolo 2022 options dialog showing Leverage settings with 'Don't overwrite existing values when leveraging empty values' checkbox highlighted." /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Checkbox: "Don't overwrite existing values when leveraging empty values" not working</title><link>https://uat.community.rws.com/thread/193501?ContentTypeID=1</link><pubDate>Fri, 08 May 2026 06:51:41 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:6a2b30eb-cc06-4cc4-9d87-8c3f73499bf7</guid><dc:creator>Software Entwicklung</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/193501?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/57296/checkbox-don-t-overwrite-existing-values-when-leveraging-empty-values-not-working/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Are there any plans to solve this issue? We have a lot of trouble because of this!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to make Passolo create 64 bit resources (satellite assemblies)</title><link>https://uat.community.rws.com/thread/192725?ContentTypeID=1</link><pubDate>Wed, 08 Apr 2026 10:09:42 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:b52eadc5-fdfe-4647-baac-4113e056a01a</guid><dc:creator>Markus Kau&amp;#223;en</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/192725?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/55922/how-to-make-passolo-create-64-bit-resources-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Thank you &lt;a href="https://uat.community.rws.com/members/amaniu"&gt;Adrian Maniu&lt;/a&gt;&amp;nbsp;. We are able to create 64 bit DLLs with the provided DLL.&lt;/p&gt;
&lt;p&gt;For our automation system, it would be create if the path to the base dll can be set via CLI or per project. Just as a suggestion.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to make Passolo create 64 bit resources (satellite assemblies)</title><link>https://uat.community.rws.com/thread/55922?ContentTypeID=0</link><pubDate>Mon, 16 Dec 2024 14:14:05 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:87a037d0-52bc-4daf-981f-8a36daa19299</guid><dc:creator>Carmen Vollmuth</dc:creator><slash:comments>5</slash:comments><comments>https://uat.community.rws.com/thread/55922?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/55922/how-to-make-passolo-create-64-bit-resources-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Dear all,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I need to output target resources&amp;nbsp;that are&amp;nbsp;64-bit compatible. A test run did not go too well. Apparently, putting 64 bit in does not make Passolo put 64 bit out.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;After some digging, I unearthed this thread:&amp;nbsp;&lt;a href="https://gateway.rws.com/csm?id=kb_article_view&amp;sysparm_article=KB0037750"&gt;Creating 64 bit resource DLLs with Passolo&lt;/a&gt;&amp;nbsp;dating a few years back. Maybe this why there is no file attachement&amp;nbsp;and the Passolo HMI does not offer the given options.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Maybe somebody can help?&lt;/p&gt;
&lt;p&gt;Many thanks to the everybody dedicating their time and knowledge.&lt;/p&gt;
&lt;p&gt;Carmen&lt;/p&gt;</description></item><item><title>RE: How to make Passolo create 64 bit resources (satellite assemblies)</title><link>https://uat.community.rws.com/thread/192676?ContentTypeID=1</link><pubDate>Fri, 03 Apr 2026 19:04:38 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bf8caae7-e467-4c21-9552-115acfe65394</guid><dc:creator>Adrian Maniu</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/192676?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/55922/how-to-make-passolo-create-64-bit-resources-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="https://uat.community.rws.com/members/markuskau_df00_en"&gt;Markus Kaußen&lt;/a&gt;&amp;nbsp;, I&amp;#39;ve re-attached the DLL on the KB.&lt;/p&gt;
&lt;p&gt;There is no option to create both versions at the same time. Maybe you could use different machines, one for 32 bit and one for 64 bit.&lt;/p&gt;
&lt;p&gt;I hope this helps.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to make Passolo create 64 bit resources (satellite assemblies)</title><link>https://uat.community.rws.com/thread/192617?ContentTypeID=1</link><pubDate>Wed, 01 Apr 2026 14:19:26 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:2fba9c0c-3475-4455-b4b9-026ec8c8bc43</guid><dc:creator>Markus Kau&amp;#223;en</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/192617?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/55922/how-to-make-passolo-create-64-bit-resources-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="https://uat.community.rws.com/members/amaniu"&gt;Adrian Maniu&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We have the same issue (but could test with a&amp;nbsp;EmptyRsc64.dll cause I do not see any attachment here and at the mentioned KB).&lt;/p&gt;
&lt;p&gt;And we do have the same issue as &lt;a href="https://uat.community.rws.com/members/carmenvollmuth72159"&gt;Carmen Vollmuth&lt;/a&gt;&amp;nbsp;: We need to provide 32 and 64 Bit dlls with a Passolo installation and cannot switch this setting constantly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any way to solve this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Properti related to .NET forms class is unexpectedly being included in the satellite assemblies.</title><link>https://uat.community.rws.com/thread/192479?ContentTypeID=1</link><pubDate>Fri, 27 Mar 2026 15:24:30 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:6d662a65-4334-45de-9894-5349bf42c8de</guid><dc:creator>Adrian Maniu</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/192479?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60685/properti-related-to-net-forms-class-is-unexpectedly-being-included-in-the-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="https://uat.community.rws.com/members/kanmatsuda"&gt;Kan Matsuda&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not sure if you use the option to Write only changed information but this one could help in your case:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://gateway.rws.com/csm?id=kb_article_view&amp;amp;sysparm_article=KB0034416"&gt;https://gateway.rws.com/csm?id=kb_article_view&amp;amp;sysparm_article=KB0034416&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Enabling this option writes only strings or properties that have been changed into the target file. If you do not change the property mentioned it will not be included in the target file.&lt;/p&gt;
&lt;p&gt;If this does not help&amp;nbsp;then further investigation is needed, which can be done if you raise a support case and provide sample files/Passolo project (if you have a support contract).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Properti related to .NET forms class is unexpectedly being included in the satellite assemblies.</title><link>https://uat.community.rws.com/thread/60685?ContentTypeID=0</link><pubDate>Tue, 24 Mar 2026 06:33:03 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:294225d4-fc4f-4fa7-bfdf-7bf67f8907e4</guid><dc:creator>Kan Matsuda</dc:creator><slash:comments>2</slash:comments><comments>https://uat.community.rws.com/thread/60685?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60685/properti-related-to-net-forms-class-is-unexpectedly-being-included-in-the-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;
&lt;p&gt;We are implementing our code using C# and the .NET Framework.&lt;br /&gt;&lt;a href="https://learn.microsoft.com/ja-jp/dotnet/api/system.windows.forms.containercontrol.autoscaledimensions?view=windowsdesktop-9.0"&gt;This property&lt;/a&gt;&amp;nbsp;has been implemented within the .resx files for a long time, and our forms have been created based on that.&lt;/p&gt;
&lt;p&gt;After generating satellite assemblies using &lt;strong&gt;Passolo 2022 Update 7&lt;/strong&gt;, layout issues began to appear in certain language environments&amp;mdash;issues that did not occur previously.&lt;/p&gt;
&lt;p&gt;During our investigation, we found that satellite assemblies created with an earlier version of Passolo 2022 (unfortunately, we no longer remember the exact version) &lt;strong&gt;did not include any information related to the property mentioned above&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;However, starting from Passolo 2022 Update 7, &lt;strong&gt;the satellite assemblies began to include information related to this property&lt;/strong&gt;, and this appears to be the direct cause of the layout issues.&lt;/p&gt;
&lt;p&gt;We would like to prevent this property from being included in the satellite assemblies.&lt;br /&gt; Is there any solution for this?&lt;/p&gt;
&lt;p&gt;We have already tried the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Checked &lt;strong&gt;Tools &amp;rarr; Add‑ins &amp;rarr; .NET Parser settings&lt;/strong&gt; and added the property to &lt;em&gt;Excluded Properties&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;Checked &lt;strong&gt;File &amp;rarr; Options &amp;rarr; Leverage&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If there are any other methods, we would appreciate your advice.&lt;/p&gt;
&lt;p&gt;Additionally, in the Passolo Update 8 fix list, we found the following item:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Fixed an issue where a .NET target dialog was too large in an earlier beta build.&lt;br /&gt; Dialog sizes now better match the source file, preventing inconsistencies. (CRQ‑42672)&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Could this issue be related to our problem?&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>RE: Properti related to .NET forms class is unexpectedly being included in the satellite assemblies.</title><link>https://uat.community.rws.com/thread/192256?ContentTypeID=1</link><pubDate>Tue, 24 Mar 2026 06:44:13 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:3de8bc67-3c3c-4a98-b8c2-38e88f50fcee</guid><dc:creator>Kan Matsuda</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/192256?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60685/properti-related-to-net-forms-class-is-unexpectedly-being-included-in-the-satellite-assemblies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;The link I referred to earlier was incorrect. The correct one should have been the link related to &lt;a href="https://learn.microsoft.com/ja-jp/dotnet/api/system.windows.forms.containercontrol.autoscaledimensions?view=netframework-4.8.1"&gt;AutoScaleDimensions property&lt;/a&gt;.&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;I also checked&amp;nbsp;&lt;a href="https://github.com/RWS/Passolo/releases"&gt;this link&lt;/a&gt; in the Update 8 fix list.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Indentation in json files decreases when generating target file in Passolo 2022, making the build fail</title><link>https://uat.community.rws.com/thread/192077?ContentTypeID=1</link><pubDate>Wed, 18 Mar 2026 15:56:56 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:f5c513d5-db13-493a-980c-32d6207db045</guid><dc:creator>Adrian Maniu</dc:creator><slash:comments>0</slash:comments><comments>https://uat.community.rws.com/thread/192077?ContentTypeID=1</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60575/indentation-in-json-files-decreases-when-generating-target-file-in-passolo-2022-making-the-build-fail/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="https://uat.community.rws.com/members/bernadettehaury"&gt;Bernadette Haury&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The JSON format does not specify a standard number of whitespaces to be used. Any number used it is a valid JSON file, usually two or four.&lt;/p&gt;
&lt;p&gt;Passolo uses the two space format but any tool which processed JSON files further should identify the file as a correct one.&lt;/p&gt;
&lt;p&gt;I&amp;#39;d recommend checking with your development team to support such files.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Please note that there is a request to preserve such spaces at:&amp;nbsp;&amp;nbsp;&lt;a href="https://uat.community.rws.com/ideas/trados-portfolio-ideas/i/passolo-ideas/json-parser---conserving-spaces-as-source"&gt;JSON parser - Conserving spaces as source&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You&amp;#39;re welcome to vote for this to be implemented.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Indentation in json files decreases when generating target file in Passolo 2022, making the build fail</title><link>https://uat.community.rws.com/thread/60575?ContentTypeID=0</link><pubDate>Fri, 13 Mar 2026 09:19:50 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:8dc834b3-be4e-426e-b2d9-1d45f2f10771</guid><dc:creator>Bernadette Haury</dc:creator><slash:comments>1</slash:comments><comments>https://uat.community.rws.com/thread/60575?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60575/indentation-in-json-files-decreases-when-generating-target-file-in-passolo-2022-making-the-build-fail/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;When generating the target files for .json files translated in Passolo, the tool seems to decrease the indentation in the file. Development has strict rules about file formatting, and this indentation change made by Passolo makes the build fail, and development needs to manually reformat the files to match their format.&lt;/p&gt;
&lt;p&gt;They expect 4 spaces indentation, and the tool is putting 2. Each time we retranslate the same file, it looks as if the entire file was translated for the first time, and the entire file changes in formatting.&lt;/p&gt;
&lt;p&gt;Why does Passolo change the indentation in the target file, where normally, the target file should be generated with the exact formatting as the source file?&lt;/p&gt;
&lt;p&gt;For the project management and target file creation, we are using the Passolo 2022 Team Edition Version 22.0.246.0&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:600px;max-width:900px;" src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/pastedimage1773393066024v1.png" alt="Screenshot showing a JSON file comparison with changes in indentation and translation strings. Highlighted lines indicate differences in formatting and content." /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:600px;max-width:900px;" src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/pastedimage1773393088512v2.png" alt="Screenshot of an error log with 12 errors and 2 warnings. Errors include 'Expected indentation of 12 spaces but found 6' and file path references." /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:600px;max-width:900px;" src="https://uat.community.rws.com/resized-image/__size/1800x1200/__key/communityserver-discussions-components-files/142/pastedimage1773393172976v3.png" alt="Screenshot showing a JSON file with errors related to indentation. Multiple 'Check failure on line R2' messages indicate 'Expected indentation of 4 spaces but found 2'." /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Creating json target file with utf8 and bom</title><link>https://uat.community.rws.com/thread/60544?ContentTypeID=0</link><pubDate>Mon, 09 Mar 2026 13:41:09 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:cb46837d-2b46-4742-aba8-014d602dd286</guid><dc:creator>Rex Turnbull</dc:creator><slash:comments>2</slash:comments><comments>https://uat.community.rws.com/thread/60544?ContentTypeID=0</comments><wfw:commentRss>https://uat.community.rws.com/product-groups/trados-portfolio/passolo/f/passolo-general/60544/creating-json-target-file-with-utf8-and-bom/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;In a Passolo 2018 project we have some new json files, encoded in utf8 with bom (byte order mark). We are looking for a setting to get this encoding in the translated target files. They currently appear as json in utf8 without a bom.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It must be possible, because we have a different json file (in the project for a few years) for which the target is written as json utf8 with bom. Perhaps there is a way to copy these settings? Have checked the help for project settings, target rules, configuring JSON add-in...&lt;br /&gt;&lt;br /&gt;Thankful for any tips.&lt;/p&gt;</description></item></channel></rss>