Browse Source

Merge pull request #1156 from AJvanLoon/patch-2

Some polish
Artur Paikin 6 years ago
parent
commit
1793b0649c
1 changed files with 7 additions and 7 deletions
  1. 7 7
      website/src/_posts/2018-10-0.28.md

+ 7 - 7
website/src/_posts/2018-10-0.28.md

@@ -8,15 +8,15 @@ published: true
 
 <img class="border"  src="/images/blog/0.28/dashboard-uploading.jpg">
 
-In `0.28`, we are introducing a new “Single Upload” mode, improving on the Status Bar plugin with a spinner and different pause/resume/cancel buttons, and we'll share some progress on bringing back unified locale packs and a Transloadit Preset 🍁
+In `0.28`, we are introducing a new “Single Upload” mode, improving on the Status Bar plugin with a spinner and different pause/resume/cancel buttons. We'll also share some progress on bringing back unified locale packs and a Transloadit Preset 🍁
 
 <!--more-->
 
 ## Single Uploads
 
-Uppy has been flexible about uploading lots of things from the start. You can add files at any time, even after uploads have already started. This is neat, but not always the desired behaviour: sometimes, you just want to upload a few files together with a form. In that case, it's useful to allow users to only upload a set of files _once_. 0.28.0 adds some options to help!
+Uppy has been flexible about uploading lots of things from the start. You can add files at any time, even after uploads have already started. This is neat, but not always the desired behaviour: sometimes, you just want to upload a few files together with a form. In that case, it's useful to allow users to only upload a set of files _once_. 0.28.0 adds some options to help with that!
 
-An upload in Uppy terminology can be more than one file. Users can add a bunch of files, and when they press "Upload" all those files are bunched up into an upload. They can then add more files, and press the "Upload" button again: the _new_ files are bunched into a second upload.
+An upload in Uppy terminology can be more than one file. Users can add a bunch of files and when they press "Upload", all those files are bunched up into an upload. They can then add more files and press the "Upload" button again: the _new_ files are bunched into a second upload.
 
 The new [`allowMultipleUploads`](https://uppy.io/docs/uppy/#allowMultipleUploads-true) option in Uppy Core can be set to `false` to only allow a single one of those uploads. Once an upload is started, the Dashboard and Status Bar no longer show "add files" and "upload" buttons. You can listen for a 'complete' event and then safely continue your app's form flow.
 
@@ -40,7 +40,7 @@ Speaking of the Dashboard, it now also shows more statuses in the title bar: “
 
 ## Locale packs
 
-In the beginning, we used to have unified locale packs for text strings in Uppy — English, Russian, German, Polish, etc. Then we made a switched to per-plugin locales, and the ability to load one file with locale strings in any language (locale pack) was lost for a while. This release is the first step in bringing this functionality back.
+In the beginning, we used to have unified locale packs for text strings in Uppy — English, Russian, German, Polish, etc. Then we made a switch to per-plugin locales, and the ability to load one file with locale strings in any language (locale pack) was lost for a while. This release is the first step in bringing this functionality back.
 
 With this change, you can load a locale pack like so: `const uppy = Uppy({locale: german})`, then still override specific strings in a certain plugin, if needed:
 
@@ -56,13 +56,13 @@ uppy.use(Dashboard, {
 })
 ```
 
-The benefit to this is that there will be a central point of configuration for languages, so there could be language packs with strings for eg Czech at @uppy/lang-cz (or @uppy/langs/cz) that would be very easy to contribute (or use).
+The benefit to this is that there will be a central point of configuration for languages, so there could be language packs with strings for, e.g., Czech at @uppy/lang-cz (or @uppy/langs/cz) that would be very easy to contribute to (or use).
 
-After Uppy 0.28.0 this functionality is technically possible, but we still need to update and publish locale packs for multiple languages.
+After Uppy 0.28.0, this functionality is technically possible, but we still need to update and publish locale packs for multiple languages.
 
 ## Hosted Companion with Transloadit
 
-When using remote providers like Google Drive and Dropbox, so that your users can pick files from these sources, you can host [Companion](https://uppy.io/docs/companion/) yourself, or use the one provided by Transloadit. And to simplify the latter, you can now use `Transloadit.COMPANION` and `Transloadit.COMPANION_PATTERN` constants in remote provider options:
+When using remote providers such as Google Drive and Dropbox, so that your users can pick files from these sources, you can host [Companion](https://uppy.io/docs/companion/) yourself, or use the one provided by Transloadit. And to simplify the latter, you can now use `Transloadit.COMPANION` and `Transloadit.COMPANION_PATTERN` constants in remote provider options:
 
 ```js
 const Dropbox = require('@uppy/dropbox')