<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>ZetaResourceEditor Forum Rss Feed</title><link>http://www.codeplex.com/ZetaResourceEditor/Thread/List.aspx</link><description>ZetaResourceEditor Forum Rss Description</description><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;Just &lt;a href="https://github.com/UweKeim/ZetaResourceEditor" rel="nofollow"&gt;pushed the source code to GitHub&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>UweKeim</author><pubDate>Fri, 07 Jun 2013 06:51:01 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130607065101A</guid></item><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;Absolutely! The community that has built up around Zeta-Resource-Editor would be more engaged in the project development and extremely grateful,&lt;br /&gt;
&lt;/div&gt;</description><author>japerr</author><pubDate>Thu, 06 Jun 2013 13:30:11 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130606013011P</guid></item><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;Would it help if I update the sources to be really compilable?&lt;br /&gt;
&lt;/div&gt;</description><author>UweKeim</author><pubDate>Thu, 06 Jun 2013 05:32:58 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130606053258A</guid></item><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;The source code from codeplex does not compile. Also a DevExpress and a Aspose licenses are required, along with missing app.config files and resource file errors. I would have gladly built from source if it was possible.&lt;br /&gt;
&lt;br /&gt;
Thank you for this project, it has saved me tons of time and frustration. This was the first issue I've come across.&lt;br /&gt;
&lt;/div&gt;</description><author>japerr</author><pubDate>Wed, 05 Jun 2013 18:20:41 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130605062041P</guid></item><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;Any reason why you disassemble the app instead of simply downloading the sources and recompiling them?&lt;br /&gt;
&lt;/div&gt;</description><author>UweKeim</author><pubDate>Wed, 05 Jun 2013 17:45:59 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130605054559P</guid></item><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;Doing more digging yesterday, and came up with a solution.&lt;br /&gt;
&lt;br /&gt;
Looking at AutoTranslateForm.cs in method translateArray @line 800, just under the &amp;quot;foreach (DataRow row in table.Rows)&amp;quot;, adding items.Clear() solves the multiple translations completely. I was unable to compile the source so ended up using a disassembler to patch the IL.&lt;br /&gt;
&lt;br /&gt;
Using a dissassembler, open ZetaResourceEditor.exe(&lt;em&gt;version 2.2.0.27&lt;/em&gt;) and drill down to ZetaResourceEditor.UI.Translation.AutoTranslateForm.translateArray method. &lt;br /&gt;
At offset 45 &amp;amp; 46 you should see&lt;br /&gt;
&lt;strong&gt;45: stloc.1&lt;br /&gt;
46: ldloc.1&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Insert 3 new instructions between offset 45 &amp;amp; 46, the IL should end up like&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;45: stloc.1&lt;/strong&gt;&lt;br /&gt;
46: ldloc.0&lt;br /&gt;
47: castclass -&amp;gt; System.Collections.IList&lt;br /&gt;
52: callvirt -&amp;gt; System.Void System.Collections.IList::Clear()&lt;br /&gt;
&lt;strong&gt;57: ldloc.1&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
This pushes the local variable(&lt;em&gt;items&lt;/em&gt;) on to the evaluation stack, casts the variable as a generic IList then calls the Clear() method. &lt;br /&gt;
The C# code would look like ((IList)items).Clear();&lt;br /&gt;
&lt;/div&gt;</description><author>japerr</author><pubDate>Wed, 05 Jun 2013 14:12:22 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130605021222P</guid></item><item><title>New Post: High translated character count using Google Translate</title><link>http://zetaresourceeditor.codeplex.com/discussions/445891</link><description>&lt;div style="line-height: normal;"&gt;When running Google Auto Translate, the previous requests is not being cleared. Which is causing already translated text to be re-translated. The issue seems to be in AutoTranslateForm.cs when the text is packed into blocks in method translateArray @ line 773.&lt;br /&gt;
This bug has a compounding effect in which are project containing 36,072 characters is able to hit the 2 million character daily limit in about 15 minutes.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;strong&gt;Request 1&lt;/strong&gt; &lt;br /&gt;
source=en&amp;amp;target=it&amp;amp;q=Old+MacDonald&amp;amp;key=*****&lt;br /&gt;
&lt;strong&gt;Response&lt;/strong&gt;&lt;br /&gt;
{ &amp;quot;data&amp;quot;: { &amp;quot;translations&amp;quot;: [ { &amp;quot;translatedText&amp;quot;: &amp;quot;Old MacDonald&amp;quot; } ] } } &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Request 2&lt;/strong&gt;&lt;br /&gt;
source=en&amp;amp;target=it&amp;amp;q=Old+MacDonald&amp;amp;q=had+a+farm&amp;amp;key=*****&lt;br /&gt;
&lt;strong&gt;Response&lt;/strong&gt;&lt;br /&gt;
{ &amp;quot;data&amp;quot;: { &amp;quot;translations&amp;quot;: [ { &amp;quot;translatedText&amp;quot;: &amp;quot;Old MacDonald&amp;quot; }, { &amp;quot;translatedText&amp;quot;: &amp;quot;aveva una fattoria&amp;quot; } ] } }&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Request 3&lt;/strong&gt;&lt;br /&gt;
source=en&amp;amp;target=it&amp;amp;q=Old+MacDonald&amp;amp;q=had+a+farm&amp;amp;q=EE+I+EE+I+O&amp;amp;key=*****&lt;br /&gt;
&lt;strong&gt;Response&lt;/strong&gt;&lt;br /&gt;
{ &amp;quot;data&amp;quot;: { &amp;quot;translations&amp;quot;: [ { &amp;quot;translatedText&amp;quot;: &amp;quot;Old MacDonald&amp;quot; }, { &amp;quot;translatedText&amp;quot;: &amp;quot;aveva una fattoria&amp;quot; }, { &amp;quot;translatedText&amp;quot;: &amp;quot;EE I EE I O&amp;quot; } ] } }&lt;br /&gt;
&lt;br /&gt;
The source does not compile, as is. Otherwise I would have a more detailed explanation of the bug.&lt;br /&gt;
&lt;/div&gt;</description><author>japerr</author><pubDate>Tue, 04 Jun 2013 02:14:19 GMT</pubDate><guid isPermaLink="false">New Post: High translated character count using Google Translate 20130604021419A</guid></item><item><title>New Post: IS project DEAD?</title><link>http://zetaresourceeditor.codeplex.com/discussions/437078</link><description>&lt;div style="line-height: normal;"&gt;What do you mean by &amp;quot;DEAD&amp;quot;?&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;I work with the tool at least twice a week.&lt;/li&gt;
&lt;li&gt;You can download the binaries.&lt;/li&gt;
&lt;li&gt;You can download the source code.&lt;/li&gt;
&lt;li&gt;
You can, of course, enhance the source code.&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
So what does &amp;quot;DEAD&amp;quot; mean to you?&lt;br /&gt;
&lt;/div&gt;</description><author>UweKeim</author><pubDate>Mon, 18 Mar 2013 16:11:30 GMT</pubDate><guid isPermaLink="false">New Post: IS project DEAD? 20130318041130P</guid></item><item><title>New Post: IS project DEAD?</title><link>http://zetaresourceeditor.codeplex.com/discussions/437078</link><description>&lt;div style="line-height: normal;"&gt;It's pretty nice tool. I wonder is project DEAD or not?&lt;br /&gt;
&lt;/div&gt;</description><author>miksh</author><pubDate>Mon, 18 Mar 2013 16:02:32 GMT</pubDate><guid isPermaLink="false">New Post: IS project DEAD? 20130318040232P</guid></item><item><title>New Post: Excel Export Bug -- Wrong language in columns</title><link>http://zetaresourceeditor.codeplex.com/discussions/399609</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I'm having the same issue. My AU column has Dutch in it. I believe JP also made it into another language.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;At first I thought I just set something wrong, or were using resx the wrong way. Our AU column is empty given that our default language is EN-US. I believe we have a total of two resources that are different for Australia. So I felt the export may have been
 trying to fill it in with a default?&lt;/p&gt;
&lt;/div&gt;</description><author>paul_wade</author><pubDate>Fri, 30 Nov 2012 21:27:48 GMT</pubDate><guid isPermaLink="false">New Post: Excel Export Bug -- Wrong language in columns 20121130092748P</guid></item><item><title>New Post: Excel Export Bug -- Wrong language in columns</title><link>http://zetaresourceeditor.codeplex.com/discussions/399609</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;div style="overflow:hidden"&gt;Has anyone had an issue with exporting to Excel? We have resource files for English, French, and Japanese. I noticed that when I exported to Excel, there was Japanese in the English column. When I looked in that resource file, the
 data was correct. There was English in the English file and the Japanese was in the Japanese file...&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>alioop200</author><pubDate>Tue, 16 Oct 2012 15:08:10 GMT</pubDate><guid isPermaLink="false">New Post: Excel Export Bug -- Wrong language in columns 20121016030810P</guid></item><item><title>New Post: Spell checking - .oxt?</title><link>http://zetaresourceeditor.codeplex.com/discussions/353317</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Excellent! Thanks for that.&lt;/p&gt;
&lt;p&gt;But still after putting the .dic and .aff files inside ZRE's Dictionaries folder, spell checking only works for en-US.&lt;/p&gt;
&lt;p&gt;Some extra info:&lt;/p&gt;
&lt;p&gt;This is the file I downloaded (as suggested from ZRE's "Edit project settings" window) is:&amp;nbsp;http://extensions.services.openoffice.org/en/project/es_UY-dicts&lt;/p&gt;
&lt;p&gt;The URL provided by DevExpress (http://wiki.services.openoffice.org/wiki/Dictionaries#Spanish_.28Spain.2C_....29)&amp;nbsp;seems to have all of its Spanish dictionaries links broken.&lt;/p&gt;
&lt;p&gt;Any ideas of what could be causing ZRE to only spell check en-US?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Gabriel&lt;/p&gt;&lt;/div&gt;</description><author>gabrielmaldi</author><pubDate>Tue, 24 Apr 2012 16:03:23 GMT</pubDate><guid isPermaLink="false">New Post: Spell checking - .oxt? 20120424040323P</guid></item><item><title>New Post: Please visit our offical discussion forum</title><link>http://zetaresourceeditor.codeplex.com/discussions/353328</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="http://groups.google.com/group/zeta-resource-editor"&gt;Go to the official discussion forum&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;</description><author>UweKeim</author><pubDate>Tue, 24 Apr 2012 07:38:08 GMT</pubDate><guid isPermaLink="false">New Post: Please visit our offical discussion forum 20120424073808A</guid></item><item><title>New Post: Spell checking - .oxt?</title><link>http://zetaresourceeditor.codeplex.com/discussions/353317</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Internally, we use the DevExpress spell checker&lt;/p&gt;
&lt;p&gt;They describe here how to use OXT files:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.devexpress.com/Support/Center/KB/p/K18404.aspx"&gt;http://www.devexpress.com/Support/Center/KB/p/K18404.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;To quote:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span&gt;You can use dictionaries from the&lt;/span&gt;&lt;strong&gt;&amp;nbsp;OpenOffice.org&lt;/strong&gt;&lt;span&gt;&amp;nbsp;project, available for download at the&amp;nbsp;&lt;/span&gt;&lt;a href="http://wiki.services.openoffice.org/wiki/Dictionaries"&gt;&lt;span style="text-decoration: underline;"&gt;Dictionaries&lt;/span&gt;&lt;/a&gt;&lt;span&gt;&amp;nbsp;page.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Change extension from .oxt to .zip and extract files from the dictionary archive.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;After unpacking, you'll find in the&amp;nbsp;&lt;/span&gt;&lt;strong&gt;dictionaries&amp;nbsp;&lt;/strong&gt;&lt;span&gt;folder a file with the .dic extension, containing a list of words, and a file with the .aff extension, containing grammar rules.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>UweKeim</author><pubDate>Tue, 24 Apr 2012 05:49:55 GMT</pubDate><guid isPermaLink="false">New Post: Spell checking - .oxt? 20120424054955A</guid></item><item><title>New Post: Versioning .zreproj (e.g. with TFS) and absoluteFilePath attribute</title><link>http://zetaresourceeditor.codeplex.com/discussions/353312</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thanks for your fast reply, and for this great tool.&lt;/p&gt;
&lt;p&gt;So, you are saying that I shouldn't care about ZRE adding the attribute? I like my source-controlled files as clean as possible, without local machines' paths, but I guess I can live with it.&lt;/p&gt;
&lt;p&gt;But, I still have one concern though. Every developer will have the .zreproj file set as read-only (because they will just download it, and not check-out it because they will not need to modify it), and they will get errors when ZRE tries to delete and or modify the file (I say delete because I read the stack trace of one exception, perhaps I'm wrong) because it is read-only (and they shouldn't need to check-out the file or remove the read-only flag from it from outside of the solution just to be able to use ZRE - moreover, in a solution which uses exclusive check-out (instead of shared), the "everyone checks-out the file" workaround wouldn't do).&lt;/p&gt;
&lt;p&gt;I'm starting to think that it would be nice to have an option like "this project will be source-controlled" that hinted ZRE to not include the&amp;nbsp;&lt;span&gt;absoluteFilePath attribute and to not modify the .zreproj unless explicitly told so (or if it is read-only or something like that - of course it still needs a lot of thinking and designing).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;What are your thoughts?&lt;/p&gt;
&lt;p&gt;Thanks a lot,&lt;/p&gt;
&lt;p&gt;Gabriel&lt;/p&gt;&lt;/div&gt;</description><author>gabrielmaldi</author><pubDate>Tue, 24 Apr 2012 05:41:03 GMT</pubDate><guid isPermaLink="false">New Post: Versioning .zreproj (e.g. with TFS) and absoluteFilePath attribute 20120424054103A</guid></item><item><title>New Post: Spell checking - .oxt?</title><link>http://zetaresourceeditor.codeplex.com/discussions/353317</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;It seems as if the types of files ZRE is expecting in its Dictionary folder in order to spell check are obsolete (.dic &amp;amp; .aff) because all the Spanish downloads (and most probably all other downloads too) in http://extensions.services.openoffice.org/dictionary
 link to .oxt files, which ZRE does not read and of course don't use to spell check.&lt;/p&gt;
&lt;p&gt;Is this so? If it is, could we expect a version which supports .oxt files? If not, where can I get the .dic &amp;amp; .aff files for es_UY (Spanish_Uruguay), or at least for International Spanish?&lt;/p&gt;
&lt;p&gt;Thanks for this great tool,&lt;/p&gt;
&lt;p&gt;Gabriel&lt;/p&gt;
&lt;/div&gt;</description><author>gabrielmaldi</author><pubDate>Tue, 24 Apr 2012 05:25:07 GMT</pubDate><guid isPermaLink="false">New Post: Spell checking - .oxt? 20120424052507A</guid></item><item><title>New Post: Versioning .zreproj (e.g. with TFS) and absoluteFilePath attribute</title><link>http://zetaresourceeditor.codeplex.com/discussions/353312</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Gabriel&lt;/p&gt;
&lt;p&gt;Usually, if the attribute is missing, ZRE still should worke quite well. So basically if you ignore the attribute, you should check-in/-out whereever you want.&lt;/p&gt;
&lt;p&gt;Cheers&lt;br /&gt;Uwe&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>UweKeim</author><pubDate>Tue, 24 Apr 2012 05:04:37 GMT</pubDate><guid isPermaLink="false">New Post: Versioning .zreproj (e.g. with TFS) and absoluteFilePath attribute 20120424050437A</guid></item><item><title>New Post: Versioning .zreproj (e.g. with TFS) and absoluteFilePath attribute</title><link>http://zetaresourceeditor.codeplex.com/discussions/353312</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to add the .zreproj to a solution which is bound to TFS. The problem is that for every &amp;lt;file&amp;gt; tag, ZRE adds an attribute named absoluteFilePath, which I obviously don't want or need there (the solution has a policy of &amp;quot;download anywhere and
 it will run&amp;quot; because it uses only relative file paths).&lt;/p&gt;
&lt;p&gt;I removed this attribute from each of my &amp;lt;file&amp;gt; tags and set the read-only flag on my .zreproj, so that it can't add it again. The problem with this is that the UI shows many errors when working.&lt;/p&gt;
&lt;p&gt;Is there another way around this? Does absoluteFilePath really need to be there? Is it possible for an option to be added to the project as to control this?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Gabriel&lt;/p&gt;
&lt;/div&gt;</description><author>gabrielmaldi</author><pubDate>Tue, 24 Apr 2012 04:54:51 GMT</pubDate><guid isPermaLink="false">New Post: Versioning .zreproj (e.g. with TFS) and absoluteFilePath attribute 20120424045451A</guid></item><item><title>New Post: Create a project to use translation service</title><link>http://zetaresourceeditor.codeplex.com/discussions/284937</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm using the latest version but I dont' seem to be able to use the bing service for translations.&lt;/p&gt;
&lt;p&gt;I always get the (400) Bad Request error.&lt;/p&gt;
&lt;p&gt;System.Net.WebException&lt;/p&gt;
&lt;p&gt;-----------------&lt;/p&gt;
&lt;p&gt;The remote server returned an error: (400) Bad Request.&lt;/p&gt;
&lt;p&gt;-----------------&lt;/p&gt;
&lt;p&gt;at System.Net.HttpWebRequest.GetResponse()&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingTranslationHelper.makeTranslateRestCallPost(String url, IEnumerable`1 parameters, ICollection`1 headers) in C:\P\Zeta Resource Editor\Source\RuntimeBusinessLogic\Translation\BingTranslationHelper.cs:line 145&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingTranslationHelper.GetAccessToken(String clientID, String clientSecret) in C:\P\Zeta Resource Editor\Source\RuntimeBusinessLogic\Translation\BingTranslationHelper.cs:line 49&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingSoapTranslationEngine.&amp;lt;&amp;gt;c__DisplayClass3.&amp;lt;GetSourceLanguages&amp;gt;b__1() in C:\P\Zeta Resource Editor\Source\RuntimeBusinessLogic\Translation\BingSoapTranslationEngine.cs:line 77&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingSoapTranslationEngine.protectWSCall(ActionToProtect action) in C:\P\Zeta Resource Editor\Source\RuntimeBusinessLogic\Translation\BingSoapTranslationEngine.cs:line 244&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingSoapTranslationEngine.GetSourceLanguages(String appID, String appID2) in C:\P\Zeta Resource Editor\Source\RuntimeBusinessLogic\Translation\BingSoapTranslationEngine.cs:line 74&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.UI.Translation.QuickTranslationForm.InitiallyFillLists() in C:\P\Zeta Resource Editor\Source\Main\UI\Translation\QuickTranslationForm.cs:line 94&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.UI.Translation.QuickTranslationForm.QuickTranslationForm_Load(Object sender, EventArgs e) in C:\P\Zeta Resource Editor\Source\Main\UI\Translation\QuickTranslationForm.cs:line 217&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.OnLoad(EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at DevExpress.XtraEditors.XtraForm.OnLoad(EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.UI.Helper.Base.FormBase.OnLoad(EventArgs e) in C:\P\Zeta Resource Editor\Source\Main\UI\Helper\Base\FormBase.cs:line 57&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.OnCreateControl()&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.CreateControl()&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.WmShowWindow(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.WndProc(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.ScrollableControl.WndProc(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.ContainerControl.WndProc(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.WmShowWindow(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.WndProc(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at DevExpress.XtraEditors.XtraForm.WndProc(Message&amp;amp; msg)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp;amp; m)&lt;br /&gt;&amp;nbsp;&amp;nbsp; at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)&lt;/p&gt;
&lt;p&gt;WebException&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;Status=ProtocolError,&lt;br /&gt;&amp;nbsp;Response=HttpWebResponse&lt;br /&gt;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;IsMutuallyAuthenticated=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;Cookies=CookieCollection&lt;br /&gt;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsReadOnly=True,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Count=0,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsSynchronized=False,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;Headers=WebHeaderCollection&lt;br /&gt;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Count=11,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Keys=KeysCollection&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Count=11&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;AllKeys=String[]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Length=11,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;LongLength=11,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Rank=1,&lt;br /&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsReadOnly=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsFixedSize=True,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsSynchronized=False&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"X-AspNetMvc-Version",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"x-ms-request-id",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"X-Content-Type-Options",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"Content-Length",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"Cache-Control",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"Content-Type",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"Date",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"Set-Cookie",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"Server",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"X-AspNet-Version",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"X-Powered-By"&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;ContentLength=167,&lt;br /&gt;&amp;nbsp;&amp;nbsp;ContentEncoding="",&lt;br /&gt;&amp;nbsp;&amp;nbsp;ContentType="application/json; charset=utf-8",&lt;br /&gt;&amp;nbsp;&amp;nbsp;CharacterSet="utf-8",&lt;br /&gt;&amp;nbsp;&amp;nbsp;Server="Microsoft-IIS/7.5",&lt;br /&gt;&amp;nbsp;&amp;nbsp;LastModified=03/03/2012 10:48:22,&lt;br /&gt;&amp;nbsp;&amp;nbsp;StatusCode=BadRequest,&lt;br /&gt;&amp;nbsp;&amp;nbsp;StatusDescription="Bad Request",&lt;br /&gt;&amp;nbsp;&amp;nbsp;ProtocolVersion=Version&lt;br /&gt;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Major=1,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Minor=1,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Build=-1,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Revision=-1,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;MajorRevision=-1,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;MinorRevision=-1&lt;br /&gt;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;ResponseUri=Uri&lt;br /&gt;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;AbsolutePath="/v2/OAuth2-13",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;AbsoluteUri="&lt;a href="https://datamarket.accesscontrol.windows.net/v2/OAuth2-13"&gt;https://datamarket.accesscontrol.windows.net/v2/OAuth2-13&lt;/a&gt;",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Authority="datamarket.accesscontrol.windows.net",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Host="datamarket.accesscontrol.windows.net",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;HostNameType=Dns,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsDefaultPort=True,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsFile=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsLoopback=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsUnc=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LocalPath="/v2/OAuth2-13",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;PathAndQuery="/v2/OAuth2-13",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Port=443,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Query="",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Fragment="",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Scheme="https",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;OriginalString="&lt;a href="https://datamarket.accesscontrol.windows.net/v2/OAuth2-13"&gt;https://datamarket.accesscontrol.windows.net/v2/OAuth2-13&lt;/a&gt;",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;DnsSafeHost="datamarket.accesscontrol.windows.net",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsAbsoluteUri=True,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Segments=String[]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Length=3,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;LongLength=3,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Rank=1,&lt;br /&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsReadOnly=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsFixedSize=True,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsSynchronized=False&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"/",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"v2/",&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"OAuth2-13"&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;UserEscaped=False,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;UserInfo=""&lt;br /&gt;&amp;nbsp;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;&amp;nbsp;Method="POST",&lt;br /&gt;&amp;nbsp;&amp;nbsp;IsFromCache=False&lt;br /&gt;&amp;nbsp;},&lt;br /&gt;&amp;nbsp;Message="The remote server returned an error: (400) Bad Request.",&lt;br /&gt;&amp;nbsp;Data=&lt;br /&gt;&amp;nbsp;[&lt;br /&gt;&amp;nbsp;]&lt;br /&gt;,&lt;br /&gt;&amp;nbsp;InnerException=null,&lt;br /&gt;&amp;nbsp;TargetSite=RuntimeMethodInfo: GetResponse,&lt;br /&gt;&amp;nbsp;StackTrace="&amp;nbsp;&amp;nbsp; at System.Net.HttpWebRequest.GetResponse()\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingTranslationHelper.makeTranslateRestCallPost(String url, IEnumerable`1 parameters, ICollection`1 headers) in C:\\P\\Zeta Resource Editor\\Source\\RuntimeBusinessLogic\\Translation\\BingTranslationHelper.cs:line 145\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingTranslationHelper.GetAccessToken(String clientID, String clientSecret) in C:\\P\\Zeta Resource Editor\\Source\\RuntimeBusinessLogic\\Translation\\BingTranslationHelper.cs:line 49\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingSoapTranslationEngine.&amp;lt;&amp;gt;c__DisplayClass3.&amp;lt;GetSourceLanguages&amp;gt;b__1() in C:\\P\\Zeta Resource Editor\\Source\\RuntimeBusinessLogic\\Translation\\BingSoapTranslationEngine.cs:line 77\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingSoapTranslationEngine.protectWSCall(ActionToProtect action) in C:\\P\\Zeta Resource Editor\\Source\\RuntimeBusinessLogic\\Translation\\BingSoapTranslationEngine.cs:line 244\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.RuntimeBusinessLogic.Translation.BingSoapTranslationEngine.GetSourceLanguages(String appID, String appID2) in C:\\P\\Zeta Resource Editor\\Source\\RuntimeBusinessLogic\\Translation\\BingSoapTranslationEngine.cs:line 74\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.UI.Translation.QuickTranslationForm.InitiallyFillLists() in C:\\P\\Zeta Resource Editor\\Source\\Main\\UI\\Translation\\QuickTranslationForm.cs:line 94\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.UI.Translation.QuickTranslationForm.QuickTranslationForm_Load(Object sender, EventArgs e) in C:\\P\\Zeta Resource Editor\\Source\\Main\\UI\\Translation\\QuickTranslationForm.cs:line 217\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.OnLoad(EventArgs e)\\r\\n&amp;nbsp;&amp;nbsp; at DevExpress.XtraEditors.XtraForm.OnLoad(EventArgs e)\\r\\n&amp;nbsp;&amp;nbsp; at ZetaResourceEditor.UI.Helper.Base.FormBase.OnLoad(EventArgs e) in C:\\P\\Zeta Resource Editor\\Source\\Main\\UI\\Helper\\Base\\FormBase.cs:line 57\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.OnCreateControl()\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.CreateControl()\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.WmShowWindow(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.WndProc(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.ScrollableControl.WndProc(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.ContainerControl.WndProc(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.WmShowWindow(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Form.WndProc(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at DevExpress.XtraEditors.XtraForm.WndProc(Message&amp;amp; msg)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp;amp; m)\\r\\n&amp;nbsp;&amp;nbsp; at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)",&lt;br /&gt;&amp;nbsp;HelpLink=null,&lt;br /&gt;&amp;nbsp;Source="System"&lt;br /&gt;}&lt;/p&gt;&lt;/div&gt;</description><author>vmasanas</author><pubDate>Sat, 03 Mar 2012 09:51:21 GMT</pubDate><guid isPermaLink="false">New Post: Create a project to use translation service 20120303095121A</guid></item><item><title>New Post: Create a project to use translation service</title><link>http://zetaresourceeditor.codeplex.com/discussions/284937</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thank you, I'll try to see whether I can change this behavior.&lt;/p&gt;
&lt;p&gt;Also, please see the &lt;a href="http://www.zeta-resource-editor.com/index.html"&gt;official website&lt;/a&gt; and the &lt;a href="http://groups.google.com/group/zeta-resource-editor"&gt;official discussion forum&lt;/a&gt; for further updates.&lt;/p&gt;
&lt;p&gt;Cheers&lt;br /&gt;Uwe&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>UweKeim</author><pubDate>Wed, 04 Jan 2012 12:41:50 GMT</pubDate><guid isPermaLink="false">New Post: Create a project to use translation service 20120104124150P</guid></item></channel></rss>