diff --git a/src/_locales/en/messages.json b/src/_locales/en/messages.json index ce2281f..ef9ff77 100644 --- a/src/_locales/en/messages.json +++ b/src/_locales/en/messages.json @@ -430,6 +430,11 @@ "description": "Text of the link." }, + "linkText_witSpeechApiGuide": { + "message": "How to get an API key?", + "description": "Text of the link." + }, + "pageContent_optionClientAppDownloadDesc": { "message": "Download and install the client app to get started. $INSTALLGUIDE$", "description": "Page content.", diff --git a/src/options/App.vue b/src/options/App.vue index 1f1fd29..b9ddc6c 100644 --- a/src/options/App.vue +++ b/src/options/App.vue @@ -100,6 +100,16 @@ > + + + {{ getText('linkText_witSpeechApiGuide') }} + @@ -485,6 +495,10 @@ body { white-space: nowrap; } +.service-guide { + @include mdc-typography(body1); +} + .client-download { min-width: 300px; } @@ -495,6 +509,10 @@ body { @include mdc-typography(body2); } +.download-desc a { + @include mdc-typography(body2); +} + .download-desc { max-width: 240px; }