mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
13 lines
259 B
TypeScript
13 lines
259 B
TypeScript
import { pluralize } from './misc';
|
|
|
|
export const strings = {
|
|
document: 'Document',
|
|
collection: 'Collection',
|
|
home: 'Dashboard',
|
|
};
|
|
|
|
export const stringsPlural = {
|
|
document: pluralize(strings.document),
|
|
collection: pluralize(strings.collection),
|
|
};
|