<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Replacing&#x2F;Translating multi string values to other international language]]></title><description><![CDATA[<p dir="auto">Hi guys, a newbie here</p>
<p dir="auto">I have a strings.xml file.</p>
<p dir="auto">Is there a way to replace or translate multi string values to other international language</p>
<p dir="auto">&lt;string name=“jewellery”&gt;<strong>Jewellery</strong>&lt;/string&gt;</p>
<p dir="auto">&lt;string name=“photo_editor”&gt;<strong>Photo Editor</strong>&lt;/string&gt;</p>
<p dir="auto">&lt;string name=“gallery”&gt;<strong>Gallery</strong>&lt;/string&gt;</p>
<p dir="auto">so basicaly I want to translate <strong>Jewellery, Photo Editor</strong> and <strong>Gallery</strong> from english to any other language of choice.</p>
<p dir="auto">Thanks in advance</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/24083/replacing-translating-multi-string-values-to-other-international-language</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 14:21:24 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/24083.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Feb 2023 12:12:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Replacing&#x2F;Translating multi string values to other international language on Thu, 02 Feb 2023 12:10:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/faseeh-shah" aria-label="Profile: Faseeh-Shah">@<bdi>Faseeh-Shah</bdi></a> said in <a href="/post/83818">Replacing/Translating multi string values to other international language</a>:</p>
<blockquote>
<p dir="auto">Luckily I found solution, a script.</p>
</blockquote>
<p dir="auto">If that’s what you were looking for, you shouldn’t have asked your original question in a Notepad++ forum, as it is OFF-TOPIC.</p>
<p dir="auto">Here we only deal with what Notepad++ can do for you, and what you can do with it.</p>
<p dir="auto">In other words, your question must be related to Notepad++ in some way.  Your question was NOT.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/83820</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83820</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 02 Feb 2023 12:10:48 GMT</pubDate></item><item><title><![CDATA[Reply to Replacing&#x2F;Translating multi string values to other international language on Thu, 02 Feb 2023 10:30:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a></p>
<p dir="auto">Luckily I found solution, a script.</p>
<p dir="auto">Script could be found here in action:<br />
<a href="https://asrt.gluege.boerde.de/" rel="nofollow ugc">https://asrt.gluege.boerde.de/</a></p>
<p dir="auto">Source:<br />
<a href="https://github.com/Ra-Na/GTranslate-strings-xml" rel="nofollow ugc">https://github.com/Ra-Na/GTranslate-strings-xml</a></p>
<p dir="auto">Thanks for helping tho.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/83818</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83818</guid><dc:creator><![CDATA[Faseeh Shah]]></dc:creator><pubDate>Thu, 02 Feb 2023 10:30:25 GMT</pubDate></item><item><title><![CDATA[Reply to Replacing&#x2F;Translating multi string values to other international language on Wed, 01 Feb 2023 15:54:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a><br />
Thank you, will check the plug for merging and let you know how it went. Yes, theoretically what you advised should solve my prob.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/83792</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83792</guid><dc:creator><![CDATA[Faseeh Shah]]></dc:creator><pubDate>Wed, 01 Feb 2023 15:54:58 GMT</pubDate></item><item><title><![CDATA[Reply to Replacing&#x2F;Translating multi string values to other international language on Wed, 01 Feb 2023 14:01:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/faseeh-shah" aria-label="Profile: Faseeh-Shah">@<bdi>Faseeh-Shah</bdi></a></p>
<p dir="auto">It’s hard to anticipate the larger framework of what you’re doing, in order to know what advice to provide, but with what you’ve given, if I were doing it, I’d think in terms of a “mail merge” (also a shameless plug for my recent script for such a thing).</p>
<p dir="auto">Let’s consider the technique shown in <a href="https://community.notepad-plus-plus.org/topic/24053">THIS THREAD</a> for your situation.</p>
<p dir="auto">I’d prepare a “template” file/tab:</p>
<pre><code class="language-txt">----&lt;LANG&gt;----
Hi guys, a newbie here
I have a strings.xml file.
Is there a way to replace or translate multi string values to other international language
&lt;string name="jewellery"&gt;&lt;JEWELLERY&gt;&lt;/string&gt;
&lt;string name="photo_editor"&gt;&lt;PHOTO EDITOR&gt;&lt;/string&gt;
&lt;string name="gallery"&gt;&lt;GALLERY&gt;&lt;/string&gt;
so basicaly I want to translate &lt;JEWELLERY&gt;, &lt;PHOTO EDITOR&gt; and &lt;GALLERY&gt; from english to any other language of choice.
Thanks in advance
</code></pre>
<p dir="auto">and a “data table” file/tab:</p>
<pre><code class="language-txt">&lt;LANG&gt;|&lt;JEWELLERY&gt;|&lt;PHOTO EDITOR&gt;|&lt;GALLERY&gt;
English|Jewellery|Photo Editor|Gallery
Spanish|Joyas|Editora de fotos|Galería
French|Bijoux|éditeur de photos|Galerie
</code></pre>
<p dir="auto">Then I’d run the “mail merge” to obtain:</p>
<pre><code class="language-txt">----English----
Hi guys, a newbie here
I have a strings.xml file.
Is there a way to replace or translate multi string values to other international language
&lt;string name="jewellery"&gt;Jewellery&lt;/string&gt;
&lt;string name="photo_editor"&gt;Photo Editor&lt;/string&gt;
&lt;string name="gallery"&gt;Gallery&lt;/string&gt;
so basicaly I want to translate Jewellery, Photo Editor and Gallery from english to any other language of choice.
Thanks in advance
----Spanish----
Hi guys, a newbie here
I have a strings.xml file.
Is there a way to replace or translate multi string values to other international language
&lt;string name="jewellery"&gt;Joyas&lt;/string&gt;
&lt;string name="photo_editor"&gt;Editora de fotos&lt;/string&gt;
&lt;string name="gallery"&gt;Galería&lt;/string&gt;
so basicaly I want to translate Joyas, Editora de fotos and Galería from english to any other language of choice.
Thanks in advance
----French----
Hi guys, a newbie here
I have a strings.xml file.
Is there a way to replace or translate multi string values to other international language
&lt;string name="jewellery"&gt;Bijoux&lt;/string&gt;
&lt;string name="photo_editor"&gt;éditeur de photos&lt;/string&gt;
&lt;string name="gallery"&gt;Galerie&lt;/string&gt;
so basicaly I want to translate Bijoux, éditeur de photos and Galerie from english to any other language of choice.
Thanks in advance
</code></pre>
<p dir="auto">Then, if I were interested in the representation of the original data in Spanish, for example, I’d find that section in the output, and copy it to a new file/tab or wherever I needed it to be.</p>
<p dir="auto">If you wanted a semi-automated way of copying the data from the results, you could make a macro of a <em>Mark All</em> operation for regex <code>^----Spanish----\R\K(?s).*?(?=^----|\z)</code>, adding a <em>Copy Marked Text</em> to the macro after the mark.  Then copying the data becomes as simple as running a macro (well, one macro per language).</p>
]]></description><link>https://community.notepad-plus-plus.org/post/83789</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83789</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 01 Feb 2023 14:01:18 GMT</pubDate></item><item><title><![CDATA[Reply to Replacing&#x2F;Translating multi string values to other international language on Wed, 01 Feb 2023 12:56:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a></p>
<p dir="auto">Yes I have or I can mark copy the string values and use google translate.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/83787</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83787</guid><dc:creator><![CDATA[Faseeh Shah]]></dc:creator><pubDate>Wed, 01 Feb 2023 12:56:42 GMT</pubDate></item><item><title><![CDATA[Reply to Replacing&#x2F;Translating multi string values to other international language on Wed, 01 Feb 2023 12:55:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/faseeh-shah" aria-label="Profile: Faseeh-Shah">@<bdi>Faseeh-Shah</bdi></a></p>
<p dir="auto">Do you have a list of the words/phrases to translate, and then the various translations, a possible short example might be:</p>
<pre><code class="language-txt">Jewellery,Joyas,Bijoux
Gallery,Galería,Galerie
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/83786</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83786</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 01 Feb 2023 12:55:56 GMT</pubDate></item></channel></rss>