Bug 1568306 - Update about:logins dialog strings to match the spec r=fluent-reviewers,jaws,Pike

Differential Revision: https://phabricator.services.mozilla.com/D39104

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tim Nguyen 2019-07-24 20:10:37 +00:00
Родитель 14c29ba6a9
Коммит 8b24a033a8
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -76,9 +76,9 @@ master-password-reload-button =
.label = Log in
.accesskey = L
confirm-delete-dialog-title = Confirm Deletion
confirm-delete-dialog-message = Are you sure you want to delete this login?
confirm-delete-dialog-title = Delete this login?
confirm-delete-dialog-message = This action cannot be undone.
confirm-delete-dialog-dismiss-button =
.title = Cancel
confirm-delete-dialog-cancel-button = Cancel
confirm-delete-dialog-confirm-button = Delete login
confirm-delete-dialog-confirm-button = Delete

Просмотреть файл

@ -29,12 +29,12 @@ add_task(async function test() {
is(
title.textContent,
"Confirm Deletion",
"Delete this login?",
"Title contents should match l10n attribute set on outer element"
);
is(
message.textContent,
"Are you sure you want to delete this login?",
"This action cannot be undone.",
"Message contents should match l10n attribute set on outer element"
);
is(
@ -44,7 +44,7 @@ add_task(async function test() {
);
is(
confirmDeleteButton.textContent,
"Delete login",
"Delete",
"Delete button contents should match l10n attribute set on outer element"
);