ente/web/apps/payments/src/utils/strings.ts
2024-04-03 19:51:01 +05:30

15 lines
400 B
TypeScript

/**
* User facing strings in the app
*
* By keeping them separate, we make our lives easier if/when we need to
* localize the corresponding pages. Right now, these are just the values in the
* default language, English.
*/
const S = {
title: "Payments | ente.io",
error_generic: "Oops, something went wrong.",
error_404: "404 | This page could not be found.",
};
export default S;