AngularJS: 需要语言代码 angularjs 中的语言信息

AngularJS: Need language information in angularjs from language code

在 android 中,我可以使用 Locale class 从语言代码本身检索语言信息,如下所示。

Locale locale = new Locale("fr");
locale.getDisplayName(locale); // Français
locale.getDisplayName(Locale.ENGLISH)); // French

我需要在 angularjs 中单独从语言代码中检索上述信息。是否可以直接在 HTML 中检索?

这个有点晚了,虽然有一个原生的 API,window.Navigator.language

例如:

console.log(window.Navigator.language);  // 'en-US'