|
@@ -1,7 +1,14 @@
|
|
|
-const englishConstants = {
|
|
|
- TITLE: "Payments | ente.io",
|
|
|
- SOMETHING_WENT_WRONG: "Oops, something went wrong.",
|
|
|
- NOT_FOUND: "404 | This page could not be found.",
|
|
|
+/**
|
|
|
+ * 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 englishConstants;
|
|
|
+export default S;
|