# "allow uppercase posts" does not support Chinese

**URL:** https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212
**Category:** Support
**Created:** [July 13, 2016, 11:46am UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212 "2016-07-13T11:46:15Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![saluzi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/saluzi/32/77568_2.png) [@saluzi](https://meta.discourse.org/u/saluzi)
#### Post date: [July 13, 2016, 11:46am UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/1 "2016-07-13T11:46:15Z")

</div>

The"allow uppercase posts" does not support Chinese, after copying a Chinese input, tip No content, Chinese seem to default to all uppercase

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [July 13, 2016, 1:17pm UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/2 "2016-07-13T13:17:30Z")

</div>

Is the setting turned on?

I did recent patch on this so maybe it’s my fault, can you share the text?

---

<div class="post-metadata">

### Author: ![saluzi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/saluzi/32/77568_2.png) [@saluzi](https://meta.discourse.org/u/saluzi)
#### Post date: [July 13, 2016, 2:13pm UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/3 "2016-07-13T14:13:00Z")

</div>

The problem I found today, if you do not select this option, You will not post such as the following text：

```
产品介绍：
盈利模式：

￥：其中VIP会员目标达到10万人，年会费100元/人。

￥：渔具店、商业钓鱼场等年会费为300元/家。

￥：APP推荐渔具、鱼饵等广告收费200元/年/种。

￥：钓鱼船、竞技钓赛等广告收益。

￥：自营品牌钓具销售所得收益。

￥：其他品牌钓具收益。

￥：二手钓具置换收益。

全体户外运动爱好者。
从钓鱼运动开始，逐步覆盖攀登、露营、徒步、自驾等户外运动的客户群体。 在项目二期的目标形成以每个人的痕迹GPS 位置为切入点的大平台，为各种户外运动提供服务和支持。

从而形成一个由钓鱼一点扩大至户外成面的格局，与此同时国外的各项工作也一并展开。

我们希望3年以内成为国内最大的户外运动服务平台。

团队介绍：
这是一家崭新的公司，基于多年户外运动的心路历程，我们创办了水云边网络，旨在打造一个服务于广大户外活动人士的高效便捷的平台。

因为我们总想给这个世界留下一些痕迹。而通过我们的足迹，总会给身边的人带来前车之印，玫瑰余香；还能促进自然环境更加平衡与清洁，利国利人利己。

同时这也是一个前所未有的市场涉足点，而又为人所急需，从而产生巨大的市场空间。

公司团队以10多的策划推广经历，在本项目的运营方面有独到实效的营销能力。

公司名称：青岛水云边网络有限公司

```

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [July 13, 2016, 2:23pm UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/4 "2016-07-13T14:23:57Z")

</div>

Can you share what version you are? With the commit hash please.

(Or just paste the forum link)

---

<div class="post-metadata">

### Author: ![saluzi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/saluzi/32/77568_2.png) [@saluzi](https://meta.discourse.org/u/saluzi)
#### Post date: [July 13, 2016, 2:25pm UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/5 "2016-07-13T14:25:18Z")

</div>

Discourse 1.6.0.beta11  
thank you

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [July 13, 2016, 4:09pm UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/6 "2016-07-13T16:09:21Z")

</div>

Yes, the setting needs to be turned on.

The code is this:

```ruby
  def seems_quiet?
    # We don't allow all upper case content
    SiteSetting.allow_uppercase_posts || @text == @text.mb_chars.downcase.to_s || @text != @text.mb_chars.upcase.to_s
  end

```

So without turning the setting to `allow upcase posts` the post will be blocked because 100% of the caseable(?) characters are upcase

[VIP, APP, GPS] != [vip, app, gps]

* * *

I think it’s reasonable to ask this setting to be turned on boards where the uppercase and downcase doesn’t make much sense, what do you think?

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [June 8, 2024, 12:45pm UTC](https://meta.discourse.org/t/allow-uppercase-posts-does-not-support-chinese/47212/7 "2024-06-08T12:45:32Z")

</div>

This topic was automatically closed after 2887 days. New replies are no longer allowed.
