Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 WordPress 中使用以下内容,我会得到英文月份,但我想要瑞典文,例如“maj”而不是“may”。我可以用瑞典语约会吗?
the_time('j F Y');
流氓,
要本地化日期,请使用 date_i18n() 函数。
您还需要将 .po 用于瑞典语。请参阅文件 .po 了解法语。
http://svn.automattic.com/wordpress-i18n/fr_FR/tags/2.0.11/messages/fr_FR.po
在 url 中搜索瑞典语:
http://svn.automattic.com/wordpress-i18n/
在 Python 3 中,我可以执行以下操作(另请参阅PEP3132 on Extended Iterable Unpacking):
a, *b = (1, 2, 3) # a = 1; b = (2, 3)