Support umlauts (ö ä ü) in the domain name #993
Replies: 5 comments 11 replies
-
+1 request for this issue |
Beta Was this translation helpful? Give feedback.
-
+1 from here, but with æ,ø,å ;)... what I do in my own system is to convert to punycode in the setter, and convert back from punycode in the getter. And all matches are made with the punycode version of a domain... |
Beta Was this translation helpful? Give feedback.
-
An easy solution would be to transform all domains to Punycode on creation. This wouldn't require any data migration, as This enables support for International Domain Names (IDNs), but two UX issues may arise.
<h2 class="text-xl font-bold dark:text-gray-100">Waiting for first pageview</h2>
- <h2 class="text-xl font-bold dark:text-gray-100">on <%= @site.domain %></h2>
+ <h2 class="text-xl font-bold dark:text-gray-100">on <%= Plausible.Site.IDN.decode(@site.domain) %></h2>
What are your thoughts on this, @ukutaht? |
Beta Was this translation helpful? Give feedback.
-
Hey everyone! #2034 adding international domain names support has been merged 🙌 It adds support for any Unicode character in the "letter" category. In other words, a letter in any language. Plus numbers, dots, and slashes. |
Beta Was this translation helpful? Give feedback.
-
Support umlauts (ö ä ü) in the domain name
request via twitter
Update: Umlauts and other special characters (including numbers, dots and slashes) are now supported so you can add international domain names to Plausible too.
Beta Was this translation helpful? Give feedback.
All reactions