From c4e3a5fcdc980a64d72ac1afc9b3052496599efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Thu, 19 Jul 2018 14:15:00 +0200 Subject: [PATCH] website: Mention Status Bar strings in Dashboard documentation. --- website/src/docs/dashboard.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/website/src/docs/dashboard.md b/website/src/docs/dashboard.md index 99918e0f0..5a8c7e33f 100644 --- a/website/src/docs/dashboard.md +++ b/website/src/docs/dashboard.md @@ -199,6 +199,8 @@ Dashboard ships with the `ThumbnailGenerator` plugin that adds small resized ima Localize text that is shown to the user. +The Dashboard also contains the [`@uppy/status-bar`](/docs/status-bar) plugin by default, which has its own strings. Strings for the Status Bar can also be specified in the Dashboard `locale.strings` option, and will be passed down. They are not all listed below—see the [`@uppy/status-bar`](/docs/status-bar) documentation pages for the full list. + The default English strings are: ```js @@ -251,7 +253,12 @@ strings: { // Used as the hover text and screen reader label for the buttons to pause uploads. pauseUpload: 'Pause upload', // Used as the hover text and screen reader label for the buttons to retry failed uploads. - retryUpload: 'Retry upload' + retryUpload: 'Retry upload', + + // @uppy/status-bar strings: + uploading: 'Uploading', + complete: 'Complete' + // ...etc } ```