mirror of
https://github.com/Kong/insomnia.git
synced 2026-09-18 02:56:36 -04:00
add initial settings for legacy test add initial check for legacy unit test suites show dropdown remove spec route and merged with default debug page showing document as collection remove document term in UI fix lint issue fix ut failures
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: 'API Collection',
|
|
plural: 'API Collections',
|
|
},
|
|
mock: {
|
|
singular: 'Mock',
|
|
plural: 'Mocks',
|
|
},
|
|
document: {
|
|
singular: 'API Collection',
|
|
plural: 'API Collections',
|
|
},
|
|
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',
|
|
},
|
|
};
|