<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://linguifex.com/w/index.php?action=history&amp;feed=atom&amp;title=Module%3ADeva-as-Beng-translit</id>
	<title>Module:Deva-as-Beng-translit - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://linguifex.com/w/index.php?action=history&amp;feed=atom&amp;title=Module%3ADeva-as-Beng-translit"/>
	<link rel="alternate" type="text/html" href="https://linguifex.com/w/index.php?title=Module:Deva-as-Beng-translit&amp;action=history"/>
	<updated>2026-05-19T01:30:05Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://linguifex.com/w/index.php?title=Module:Deva-as-Beng-translit&amp;diff=496229&amp;oldid=prev</id>
		<title>Sware: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://linguifex.com/w/index.php?title=Module:Deva-as-Beng-translit&amp;diff=496229&amp;oldid=prev"/>
		<updated>2026-04-21T12:46:04Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 12:46, 21 April 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Sware</name></author>
	</entry>
	<entry>
		<id>https://linguifex.com/w/index.php?title=Module:Deva-as-Beng-translit&amp;diff=496228&amp;oldid=prev</id>
		<title>wikt&gt;SurjectionBot: Protected &quot;Module:Deva-as-Beng-translit&quot;: (bot) automatically protect highly visible templates/modules (reference score: 2000+ &gt;= 1000) ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))</title>
		<link rel="alternate" type="text/html" href="https://linguifex.com/w/index.php?title=Module:Deva-as-Beng-translit&amp;diff=496228&amp;oldid=prev"/>
		<updated>2024-04-27T09:02:54Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/wiki/Module:Deva-as-Beng-translit&quot; title=&quot;Module:Deva-as-Beng-translit&quot;&gt;Module:Deva-as-Beng-translit&lt;/a&gt;&amp;quot;: (bot) automatically protect highly visible templates/modules (reference score: 2000+ &amp;gt;= 1000) ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local export = {}&lt;br /&gt;
&lt;br /&gt;
local char = {&lt;br /&gt;
	[&amp;quot;र&amp;quot;] = &amp;quot;ৰ&amp;quot;, [&amp;quot;व&amp;quot;] = &amp;quot;ৱ&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
-- Override returns text even if some characters cannot be transliterated.&lt;br /&gt;
-- If noKhandaTa is set, then &amp;quot;ৎ&amp;quot; will not be contextually substituted for &amp;quot;ত্&amp;quot;, which is suitable (e.g.) for Sanskrit transliteration.&lt;br /&gt;
function export.tr(text, lang, sc, override, noKhandaTa)&lt;br /&gt;
	local UTF8_char = &amp;quot;[%z\1-\127\194-\244][\128-\191]*&amp;quot;&lt;br /&gt;
	local asBeng = require(&amp;quot;Module:scripts&amp;quot;).getByCode(&amp;quot;as-Beng&amp;quot;)&lt;br /&gt;
	text = mw.ustring.toNFD(text)&lt;br /&gt;
	&lt;br /&gt;
	text = string.gsub(text, UTF8_char, char)&lt;br /&gt;
	text = require(&amp;quot;Module:Deva-Beng-translit&amp;quot;).tr(text, lang, sc, true, noKhandaTa)&lt;br /&gt;
	&lt;br /&gt;
	-- Khanda Ta is not used in Sanskrit.&lt;br /&gt;
	if not noKhandaTa and lang ~= &amp;quot;sa&amp;quot; then&lt;br /&gt;
		text = mw.ustring.gsub(text, &amp;quot;ৎ(ৰ)&amp;quot;, &amp;quot;ত্%1&amp;quot;)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	text = string.gsub(text, &amp;quot;্ৱ&amp;quot;, &amp;quot;্ব&amp;quot;)&lt;br /&gt;
	&lt;br /&gt;
	local reducedText = mw.ustring.gsub(mw.ustring.gsub(text, &amp;quot;&amp;lt;.-&amp;gt;&amp;quot;, &amp;quot;&amp;quot;), &amp;quot;[%s%p\n]+&amp;quot;, &amp;quot;&amp;quot;)&lt;br /&gt;
	if (mw.ustring.len(reducedText) == asBeng:countCharacters(reducedText) and not mw.ustring.find(text, &amp;quot;়়&amp;quot;)) or override then&lt;br /&gt;
		return text&lt;br /&gt;
	else&lt;br /&gt;
		return nil&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return export&lt;/div&gt;</summary>
		<author><name>wikt&gt;SurjectionBot</name></author>
	</entry>
</feed>