File size: 330 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { useTranslate } from 'i18n-calypso';
import useIsSshSettingSupported from './use-is-ssh-setting-supported';

export default function useSftpSshSettingTitle() {
	const translate = useTranslate();
	const isSshSupported = useIsSshSettingSupported();

	return isSshSupported ? translate( 'SFTP/SSH' ) : translate( 'SFTP' );
}