mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
7f7b9f5614
Co-authored-by: Opender Singh <opender.singh@konghq.com>
51 lines
847 B
TypeScript
51 lines
847 B
TypeScript
export interface StringInfo {
|
|
singular: string;
|
|
plural: string;
|
|
}
|
|
|
|
type StringId =
|
|
| 'collection'
|
|
| 'document'
|
|
| 'home'
|
|
| 'project'
|
|
| 'workspace'
|
|
| 'defaultProject'
|
|
| 'localProject'
|
|
| 'remoteProject'
|
|
;
|
|
|
|
export const strings: Record<StringId, StringInfo> = {
|
|
collection: {
|
|
singular: 'Collection',
|
|
plural: 'Collections',
|
|
},
|
|
document: {
|
|
singular: 'Document',
|
|
plural: 'Documents',
|
|
},
|
|
home: {
|
|
singular: 'Dashboard',
|
|
plural: 'Dashboards',
|
|
},
|
|
project: {
|
|
singular: 'Project',
|
|
plural: 'Projects',
|
|
},
|
|
workspace: {
|
|
singular: 'Workspace',
|
|
plural: 'Workspaces',
|
|
},
|
|
defaultProject: {
|
|
singular: 'Default',
|
|
plural: 'Default',
|
|
},
|
|
localProject: {
|
|
singular: 'Local',
|
|
plural: 'Local',
|
|
},
|
|
remoteProject: {
|
|
singular: 'Remote',
|
|
plural: 'Remote',
|
|
},
|
|
};
|