blob: 22f24ad8af6bbac204948bdd97fc0c84c4ad59c7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { s__ } from '~/locale';
export const i18n = {
fetchError: s__('WorkItem|Something went wrong when fetching the work item. Please try again.'),
updateError: s__('WorkItem|Something went wrong while updating the work item. Please try again.'),
};
export const widgetTypes = {
title: 'TITLE',
};
|