Small things that could only be fixed after merging

This commit is contained in:
Brett Sun 2016-02-08 11:03:41 +01:00
parent 537d6d52e8
commit 028058a12f
3 changed files with 10 additions and 6 deletions

View File

@ -15,6 +15,7 @@ import GlobalNotificationActions from '../../actions/global_notification_actions
import AppConstants from '../../constants/application_constants';
import { ErrorClasses, testErrorAgainstAll } from '../../constants/error_constants';
import { RETRY_ATTEMPT_TO_SHOW_CONTACT_US } from '../../constants/uploader_constants';
import { displayValidFilesFilter, FileStatus, transformAllowedExtensionsToInputAcceptProp } from './react_s3_fine_uploader_utils';
import { getCookie } from '../../utils/fetch_api_utils';
@ -34,9 +35,6 @@ const { shape,
element,
arrayOf } = React.PropTypes;
// After 5 manual retries, show the contact us prompt.
const RETRY_ATTEMPT_TO_SHOW_CONTACT_US = 5;
const ReactS3FineUploader = React.createClass({
propTypes: {
areAssetsDownloadable: bool,

View File

@ -1,5 +1,7 @@
'use strict'
import { validationParts } from './uploader_constants';
import { deepMatchObject } from '../utils/general_utils';
import { getLangText } from '../utils/lang_utils';
@ -112,9 +114,10 @@ const ErrorClasses = {
// Fallback error tips
'largeFileSize': {
'prettifiedText': getLangText('We handle files up to 25GB but your Internet connection may not. With ' +
'large files and limited bandwith, it may take some time to complete. If ' +
'it doesnt seem to progress at all, try restarting the process.')
'prettifiedText': getLangText(`We handle files up to ${validationParts.sizeLimit.default / 1000000000}GB ` +
'but your Internet connection may not. With large files and limited ' +
'bandwith, it may take some time to complete. If it doesnt seem to ' +
'progress at all, try restarting the process.')
},
'tryDifferentBrowser': {
'prettifiedText': getLangText("We're still having trouble uploading your file. It might be your " +

View File

@ -30,3 +30,6 @@ export const validationTypes = {
sizeLimit: sizeLimit.thumbnail
}
};
// Number of manual retries before showing a contact us screen on the uploader.
export const RETRY_ATTEMPT_TO_SHOW_CONTACT_US = 5;