mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
12 lines
371 B
TypeScript
12 lines
371 B
TypeScript
|
// Separated out into its own file because this is used in several modules, but we'd like to avoid
|
||
|
// pulling in the full AdminPanel into their bundle.
|
||
|
|
||
|
import {makeT} from 'app/client/lib/localization';
|
||
|
|
||
|
const t = makeT('AdminPanel');
|
||
|
|
||
|
// Translated "Admin Panel" name, made available to other modules.
|
||
|
export function getAdminPanelName() {
|
||
|
return t("Admin Panel");
|
||
|
}
|