2021-06-14 15:18:35 +00:00
|
|
|
export interface StringInfo {
|
2021-06-01 12:52:41 +00:00
|
|
|
singular: string;
|
|
|
|
plural: string;
|
|
|
|
}
|
2021-03-01 21:32:32 +00:00
|
|
|
|
2021-06-14 15:18:35 +00:00
|
|
|
type StringId =
|
|
|
|
| 'collection'
|
|
|
|
| 'document'
|
2021-08-20 15:12:36 +00:00
|
|
|
| 'project'
|
2021-06-14 15:18:35 +00:00
|
|
|
| 'workspace'
|
2021-08-25 00:51:40 +00:00
|
|
|
| 'defaultProject'
|
2021-08-20 15:12:36 +00:00
|
|
|
| 'localProject'
|
|
|
|
| 'remoteProject'
|
2021-06-14 15:18:35 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
export const strings: Record<StringId, StringInfo> = {
|
|
|
|
collection: {
|
|
|
|
singular: 'Collection',
|
|
|
|
plural: 'Collections',
|
|
|
|
},
|
2021-06-01 12:52:41 +00:00
|
|
|
document: {
|
|
|
|
singular: 'Document',
|
|
|
|
plural: 'Documents',
|
|
|
|
},
|
2021-08-20 15:12:36 +00:00
|
|
|
project: {
|
|
|
|
singular: 'Project',
|
|
|
|
plural: 'Projects',
|
2021-06-01 12:52:41 +00:00
|
|
|
},
|
2021-06-14 15:18:35 +00:00
|
|
|
workspace: {
|
|
|
|
singular: 'Workspace',
|
|
|
|
plural: 'Workspaces',
|
2021-06-01 12:52:41 +00:00
|
|
|
},
|
2021-08-25 00:51:40 +00:00
|
|
|
defaultProject: {
|
|
|
|
singular: 'Default',
|
|
|
|
plural: 'Default',
|
2021-07-28 21:49:02 +00:00
|
|
|
},
|
2021-08-20 15:12:36 +00:00
|
|
|
localProject: {
|
2021-07-28 21:49:02 +00:00
|
|
|
singular: 'Local',
|
|
|
|
plural: 'Local',
|
|
|
|
},
|
2021-08-20 15:12:36 +00:00
|
|
|
remoteProject: {
|
2021-07-28 21:49:02 +00:00
|
|
|
singular: 'Remote',
|
|
|
|
plural: 'Remote',
|
|
|
|
},
|
2021-03-04 18:09:34 +00:00
|
|
|
};
|