diff --git a/bigbluebutton-html5/imports/ui/components/presentation/presentation-uploader/component.jsx b/bigbluebutton-html5/imports/ui/components/presentation/presentation-uploader/component.jsx index 23e2aeb2dd609b3e86ea79f66f89ec228756baa8..1fa248dc5ae578906d578a24f4a09cf72c6c683c 100644 --- a/bigbluebutton-html5/imports/ui/components/presentation/presentation-uploader/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/presentation/presentation-uploader/component.jsx @@ -34,69 +34,67 @@ const defaultProps = { const intlMessages = defineMessages({ title: { id: 'app.presentationUploder.title', - defaultMessage: 'Presentation', + description: 'title of the modal', }, message: { id: 'app.presentationUploder.message', - defaultMessage: `As a presenter in BigBlueButton, you have the ability of - uploading any office document or PDF file. We recommend for the best results, - to please upload a PDF file.`, + description: 'message warning the types of files accepted', }, confirmLabel: { id: 'app.presentationUploder.confirmLabel', - defaultMessage: 'Start', + description: 'used in the button that start the upload of the new presentation', }, confirmDesc: { id: 'app.presentationUploder.confirmDesc', - defaultMessage: 'Save your changes and start the presentation', + description: 'description of the confirm', }, dismissLabel: { id: 'app.presentationUploder.dismissLabel', - defaultMessage: 'Cancel', + description: 'used in the button that close modal', }, dismissDesc: { id: 'app.presentationUploder.dismissDesc', - defaultMessage: 'Close the modal window and discard your changes', + description: 'description of the dismiss', }, dropzoneLabel: { id: 'app.presentationUploder.dropzoneLabel', - defaultMessage: 'Drag files here to upload', + description: 'message warning where drop files for upload', }, browseFilesLabel: { id: 'app.presentationUploder.browseFilesLabel', - defaultMessage: 'or browse for files', + description: 'message use on the file browser', }, fileToUpload: { id: 'app.presentationUploder.fileToUpload', - defaultMessage: 'To be uploaded...', + description: 'message used in the file selected for upload', }, uploadProcess: { id: 'app.presentationUploder.upload.progress', - defaultMessage: 'Uploading ({progress}%)', + description: 'message that indicates the percentage of the upload', }, 413: { id: 'app.presentationUploder.upload.413', - defaultMessage: 'File is too large.', + description: 'error that file exceed the size limit', }, conversionProcessingSlides: { id: 'app.presentationUploder.conversion.conversionProcessingSlides', - defaultMessage: 'Processing page {current} of {total}', + description: 'indicates how many slides were converted', }, genericConversionStatus: { id: 'app.presentationUploder.conversion.genericConversionStatus', - defaultMessage: 'Converting file...', + description: 'indicates that file is being converted', }, GENERATING_THUMBNAIL: { id: 'app.presentationUploder.conversion.generatingThumbnail', - defaultMessage: 'Generating thumbnails...', + description: 's that it is generating thumbnails', }, GENERATING_SVGIMAGES: { id: 'app.presentationUploder.conversion.generatingSvg', - defaultMessage: 'Generating SVG images...', + description: 'warns that it is generating svg images', }, GENERATED_SLIDE: { id: 'app.presentationUploder.conversion.generatedSlides', - defaultMessage: 'Slides generated...', + description: 'warns that were slides generated', }, }); diff --git a/bigbluebutton-html5/private/locales/en.json b/bigbluebutton-html5/private/locales/en.json index 67c053ab7d9129f42afe01572b8b9c201ef84cef..f059a7137b07d69f68dd3bb19cb2f3fac2021d49 100644 --- a/bigbluebutton-html5/private/locales/en.json +++ b/bigbluebutton-html5/private/locales/en.json @@ -49,6 +49,22 @@ "app.presentation.presentationToolbar.fitScreenDesc": "Display the whole slide", "app.presentation.presentationToolbar.zoomLabel": "Zoom", "app.presentation.presentationToolbar.zoomDesc": "Change the zoom level of the presentation", + "app.presentationUploder.title": "Presentation", + "app.presentationUploder.message": "As a presenter in BigBlueButton, you have the ability of uploading any office document or PDF file. We recommend for the best results, to please upload a PDF file.", + "app.presentationUploder.confirmLabel": "Start", + "app.presentationUploder.confirmDesc": "Save your changes and start the presentation", + "app.presentationUploder.dismissLabel": "Cancel", + "app.presentationUploder.dismissDesc": "Close the modal window and discard your changes", + "app.presentationUploder.dropzoneLabel": "Drag files here to upload", + "app.presentationUploder.browseFilesLabel": "or browse for files", + "app.presentationUploder.fileToUpload": "To be uploaded...", + "app.presentationUploder.upload.progress": "Uploading ({progress}%)", + "app.presentationUploder.upload.413": "File is too large.", + "app.presentationUploder.conversion.conversionProcessingSlides": "Processing page {current} of {total}", + "app.presentationUploder.conversion.genericConversionStatus": "Converting file...", + "app.presentationUploder.conversion.generatingThumbnail": "Generating thumbnails...", + "app.presentationUploder.conversion.generatingSvg": "Generating SVG images...", + "presentationUploder.conversion.generatedSlides": "Slides generated...", "app.polling.pollingTitle": "Polling Options", "app.failedMessage": "Apologies, trouble connecting to the server.", "app.connectingMessage": "Connecting...",