0baf42465e
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. This commit only targets Vanilla JS files. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
67 lines
927 B
JavaScript
67 lines
927 B
JavaScript
import { __ } from '~/locale';
|
|
|
|
const notImplemented = () => {
|
|
throw new Error(__('Not implemented!'));
|
|
};
|
|
|
|
export default {
|
|
setEndpoints: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
fetchLists: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
generateDefaultLists: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
createList: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
updateList: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
deleteList: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
fetchIssuesForList: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
moveIssue: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
createNewIssue: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
fetchBacklog: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
bulkUpdateIssues: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
fetchIssue: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
toggleIssueSubscription: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
showPage: () => {
|
|
notImplemented();
|
|
},
|
|
|
|
toggleEmptyState: () => {
|
|
notImplemented();
|
|
},
|
|
};
|