Commit 8acc3e44 authored by Rishabh Gupta's avatar Rishabh Gupta Committed by Paul Gascou-Vaillancourt

Address require-string-literal-i18n-helpers offenses

Addresses require-string-literal-i18n-helpers in packages/shared/constants.js.
parent d0f22537
/* eslint-disable @gitlab/require-string-literal-i18n-helpers */ import { s__ } from '~/locale';
import { __, s__ } from '~/locale';
export const PackageType = { export const PackageType = {
CONAN: 'conan', CONAN: 'conan',
...@@ -38,7 +37,7 @@ export const DELETE_PACKAGE_ERROR_MESSAGE = s__( ...@@ -38,7 +37,7 @@ export const DELETE_PACKAGE_ERROR_MESSAGE = s__(
'PackageRegistry|Something went wrong while deleting the package.', 'PackageRegistry|Something went wrong while deleting the package.',
); );
export const DELETE_PACKAGE_FILE_ERROR_MESSAGE = s__( export const DELETE_PACKAGE_FILE_ERROR_MESSAGE = s__(
__('PackageRegistry|Something went wrong while deleting the package file.'), 'PackageRegistry|Something went wrong while deleting the package file.',
); );
export const DELETE_PACKAGE_FILE_SUCCESS_MESSAGE = s__( export const DELETE_PACKAGE_FILE_SUCCESS_MESSAGE = s__(
'PackageRegistry|Package file deleted successfully', 'PackageRegistry|Package file deleted successfully',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment