如何找到更新的 Ag Grid React 本地化文件?
How can I find updated Ag Grid React localization file?
我目前正在使用 AG_GRID_LOCALE_EN 语言环境文件,但它已过时,缺少关键字。需要它的最新版本用于本地化。搜索了 github 存储库但找不到任何内容。我只找到了 404。我将它用作 localeText 以在我们的平台中提供多语言支持。谢谢!
return (
<AgGridReact
{...this.props}
localeText={AG_GRID_LOCALE_EN}
onGridReady={(event) => {
if (typeof onGridReadyParam === "function") {
onGridReadyParam(event);
}
}}
>
{this.props.children}
</AgGridReact>
);
软件包版本:
- ├── @ag-grid-community/react@27.0.1
- ├── @ag-grid-enterprise/all-modules@27.0.1
- ├── react@17.0.2
我找到了这个 EN JS 文件,但需要根据您的需要进行翻译。没有其他语言文件。如果你能找到,请编辑。
必须翻译成AG_GRID_ES.js,AG_GRID_FR.js 等在 localeText prop.
中使用
希望有用。
我目前正在使用 AG_GRID_LOCALE_EN 语言环境文件,但它已过时,缺少关键字。需要它的最新版本用于本地化。搜索了 github 存储库但找不到任何内容。我只找到了 404。我将它用作 localeText 以在我们的平台中提供多语言支持。谢谢!
return (
<AgGridReact
{...this.props}
localeText={AG_GRID_LOCALE_EN}
onGridReady={(event) => {
if (typeof onGridReadyParam === "function") {
onGridReadyParam(event);
}
}}
>
{this.props.children}
</AgGridReact>
);
软件包版本:
- ├── @ag-grid-community/react@27.0.1
- ├── @ag-grid-enterprise/all-modules@27.0.1
- ├── react@17.0.2
我找到了这个 EN JS 文件,但需要根据您的需要进行翻译。没有其他语言文件。如果你能找到,请编辑。
必须翻译成AG_GRID_ES.js,AG_GRID_FR.js 等在 localeText prop.
中使用希望有用。