10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
import i18n from "i18next";
|
|
|
|
export function CreateRecentItem(id, type, labelid, url) {
|
|
return {
|
|
id,
|
|
label: `${i18n.t(`general.itemtypes.${type}`)}: ${labelid}`,
|
|
url
|
|
};
|
|
}
|