Files
bflows-bandi-fe/src/helpers/getBandoLabel.js
Vitalii Kiiko ad42ed6326 dquote> - updated registartion page, added gdpr and marketing checkboxes;
dquote> - fixed number input;
dquote> - updated latest submissions table component;
2024-10-07 11:06:35 +02:00

25 lines
532 B
JavaScript

import { __ } from '@wordpress/i18n';
const getBandoLabel = (status) => {
switch (status) {
case 'SUBMIT':
return __('Inviato', 'gepafin');
case 'PUBLISH':
return __('Pubblicato', 'gepafin');
case 'READY_TO_PUBLISH':
return __('Pronto', 'gepafin');
case 'DRAFT':
return __('Bozza', 'gepafin');
case 'EXPIRED':
return __('Scaduto', 'gepafin');
default:
return '';
}
};
export default getBandoLabel;