mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 15:30:40 +00:00
15 lines
400 B
TypeScript
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;
|