mirror of
https://github.com/Kong/insomnia.git
synced 2026-06-04 06:10:24 -04:00
Move insomnia-data models, services, database code, and common utilities into a dedicated workspace package. Update consumers to import from the new package entrypoints and declare workspace dependencies for the extracted package.
65 lines
1.1 KiB
TypeScript
65 lines
1.1 KiB
TypeScript
export interface StringInfo {
|
|
singular: string;
|
|
plural: string;
|
|
}
|
|
|
|
type StringId =
|
|
| 'collection'
|
|
| 'mock'
|
|
| 'document'
|
|
| 'organization'
|
|
| 'project'
|
|
| 'workspace'
|
|
| 'defaultProject'
|
|
| 'localProject'
|
|
| 'remoteProject'
|
|
| 'environment'
|
|
| 'mcp';
|
|
|
|
export const strings: Record<StringId, StringInfo> = {
|
|
collection: {
|
|
singular: 'Collection',
|
|
plural: 'Collections',
|
|
},
|
|
mock: {
|
|
singular: 'Mock',
|
|
plural: 'Mocks',
|
|
},
|
|
document: {
|
|
singular: 'Document',
|
|
plural: 'Documents',
|
|
},
|
|
organization: {
|
|
singular: 'Organization',
|
|
plural: 'Organizations',
|
|
},
|
|
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',
|
|
},
|
|
environment: {
|
|
singular: 'Environment',
|
|
plural: 'Environments',
|
|
},
|
|
mcp: {
|
|
singular: 'MCP Client',
|
|
plural: 'MCP Clients',
|
|
},
|
|
};
|