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.
我正在将我的网站翻译成欧盟的 24 种语言。其中包括 django 默认支持的语言中未列出的“Malti”语言。
我想知道是否有办法向 django 添加自定义语言,以便它可以与原生 i18n url 函数一起使用。
谢谢!
我找到了解决方案,您必须在 /django/conf/locale/ 中手动添加一个带有您想要的语言扩展名的文件夹。实际上,您可以复制 en(英语)文件夹并以缺少的语言命名(在我的情况下为 mt)。
在此文件夹中,您还可以编辑文件 formats.py 以本地化日期、数字等。
重新启动 django,您的语言将得到原生支持。