chore: update locale file structure (#1478)

This commit is contained in:
boojack
2023-04-06 00:07:10 +08:00
committed by GitHub
parent cc23f69f66
commit f48d91539e
35 changed files with 138 additions and 249 deletions

View File

@ -139,7 +139,7 @@ const MemoList = () => {
))}
{isFetching ? (
<div className="status-text-container fetching-tip">
<p className="status-text">{t("memo-list.fetching-data")}</p>
<p className="status-text">{t("memo.fetching-data")}</p>
</div>
) : (
<div className="status-text-container">
@ -153,7 +153,7 @@ const MemoList = () => {
) : (
<>
<span className="cursor-pointer hover:text-green-600" onClick={handleFetchMoreClick}>
{t("memo-list.fetch-more")}
{t("memo.fetch-more")}
</span>
</>
)}