Upload: remove "download app" suggestion for large files.
This commit is contained in:
parent
7ef5975ee8
commit
6492fe1c66
2 changed files with 5 additions and 5 deletions
|
@ -1109,7 +1109,7 @@
|
|||
"minute": "minute",
|
||||
"hours": "hours",
|
||||
"hour": "hour",
|
||||
"%SITE_NAME% uploads are limited to %limit% GB. Download the app for unrestricted publishing.": "%SITE_NAME% uploads are limited to %limit% GB. Download the app for unrestricted publishing.",
|
||||
"%SITE_NAME% uploads are limited to %limit% GB.": "%SITE_NAME% uploads are limited to %limit% GB.",
|
||||
"Connected": "Connected",
|
||||
"Not connected": "Not connected",
|
||||
"this link": "this link",
|
||||
|
|
|
@ -106,10 +106,10 @@ function PublishFile(props: Props) {
|
|||
const [currentFileType, setCurrentFileType] = useState(null);
|
||||
const [optimizeAvail, setOptimizeAvail] = useState(false);
|
||||
const [userOptimize, setUserOptimize] = usePersistedState('publish-file-user-optimize', false);
|
||||
const UPLOAD_SIZE_MESSAGE = __(
|
||||
'%SITE_NAME% uploads are limited to %limit% GB. Download the app for unrestricted publishing.',
|
||||
{ SITE_NAME, limit: TV_PUBLISH_SIZE_LIMIT_GB_STR }
|
||||
);
|
||||
const UPLOAD_SIZE_MESSAGE = __('%SITE_NAME% uploads are limited to %limit% GB.', {
|
||||
SITE_NAME,
|
||||
limit: TV_PUBLISH_SIZE_LIMIT_GB_STR,
|
||||
});
|
||||
|
||||
const fileSelectorModes = [
|
||||
{ label: __('Upload'), actionName: SOURCE_UPLOAD, icon: ICONS.PUBLISH },
|
||||
|
|
Loading…
Reference in a new issue