Add legal and final strings (#1185)
* add legal and final strings * removed unneeded suffixes from string ids * removed unused strings and simplified string ids for vnext-only strings * reword nostreams option
This commit is contained in:
parent
6ab006de61
commit
7197cc3bea
16 changed files with 3307 additions and 3326 deletions
|
@ -8,7 +8,7 @@ module.exports = function(state, emit) {
|
|||
<div
|
||||
class="flex flex-col w-full max-w-md h-full mx-auto items-center justify-center"
|
||||
>
|
||||
<h1 class="mb-4">${state.translate('downloadFilesTitle')}</h1>
|
||||
<h1 class="mb-4">${state.translate('downloadTitle')}</h1>
|
||||
<p
|
||||
class="w-full p-2 border border-yellow-light rounded md:w-4/5 text-orange-dark bg-yellow-lighter text-center leading-normal"
|
||||
>
|
||||
|
@ -50,8 +50,8 @@ module.exports = function(state, emit) {
|
|||
</fieldset>
|
||||
<input
|
||||
class="btn rounded-lg w-full flex flex-no-shrink items-center justify-center"
|
||||
value="${state.translate('copyUrlFormButtonText')}"
|
||||
title="${state.translate('copyUrlFormButtonText')}"
|
||||
value="${state.translate('copyLinkButton')}"
|
||||
title="${state.translate('copyLinkButton')}"
|
||||
type="submit" />
|
||||
</form>
|
||||
</div>
|
||||
|
@ -64,7 +64,7 @@ module.exports = function(state, emit) {
|
|||
let title = button.title;
|
||||
switch (choice) {
|
||||
case 'copy':
|
||||
title = state.translate('copyUrlFormButtonText');
|
||||
title = state.translate('copyLinkButton');
|
||||
break;
|
||||
case 'firefox':
|
||||
title = state.translate('downloadFirefox');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue