File size: 292 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { __ } from '@wordpress/i18n';

export const getDataCenterOptions = () => {
	return {
		bur: __( 'US West (Burbank, California)' ),
		dfw: __( 'US Central (Dallas-Fort Worth, Texas)' ),
		dca: __( 'US East (Washington, D.C.)' ),
		ams: __( 'EU West (Amsterdam, Netherlands)' ),
	};
};