mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
PM-18471-migrated all messages to catalog (#13618)
* PM-18471-migrated all messages to catalog * updated error message
This commit is contained in:
@@ -1088,6 +1088,38 @@
|
|||||||
},
|
},
|
||||||
"description": "Shown to user after login is updated."
|
"description": "Shown to user after login is updated."
|
||||||
},
|
},
|
||||||
|
"saveAsNewLoginAction": {
|
||||||
|
"message": "Save as new login",
|
||||||
|
"description": "Button text for saving login details as a new entry."
|
||||||
|
},
|
||||||
|
"updateLoginAction": {
|
||||||
|
"message": "Update login",
|
||||||
|
"description": "Button text for updating an existing login entry."
|
||||||
|
},
|
||||||
|
"saveLoginPrompt": {
|
||||||
|
"message": "Save login?",
|
||||||
|
"description": "Prompt asking the user if they want to save their login details."
|
||||||
|
},
|
||||||
|
"updateLoginPrompt": {
|
||||||
|
"message": "Update existing login?",
|
||||||
|
"description": "Prompt asking the user if they want to update an existing login entry."
|
||||||
|
},
|
||||||
|
"loginSaveSuccess": {
|
||||||
|
"message": "Login saved",
|
||||||
|
"description": "Message displayed when login details are successfully saved."
|
||||||
|
},
|
||||||
|
"loginUpdateSuccess": {
|
||||||
|
"message": "Login updated",
|
||||||
|
"description": "Message displayed when login details are successfully updated."
|
||||||
|
},
|
||||||
|
"saveFailure": {
|
||||||
|
"message": "Error saving",
|
||||||
|
"description": "Error message shown when the system fails to save login details."
|
||||||
|
},
|
||||||
|
"saveFailureDetails": {
|
||||||
|
"message": "Oh no! We couldn't save this. Try entering the details manually.",
|
||||||
|
"description": "Detailed error message shown when saving login details fails."
|
||||||
|
},
|
||||||
"enableChangedPasswordNotification": {
|
"enableChangedPasswordNotification": {
|
||||||
"message": "Ask to update existing login"
|
"message": "Ask to update existing login"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -53,30 +53,28 @@ function getI18n() {
|
|||||||
return {
|
return {
|
||||||
appName: chrome.i18n.getMessage("appName"),
|
appName: chrome.i18n.getMessage("appName"),
|
||||||
close: chrome.i18n.getMessage("close"),
|
close: chrome.i18n.getMessage("close"),
|
||||||
never: chrome.i18n.getMessage("never"),
|
|
||||||
folder: chrome.i18n.getMessage("folder"),
|
folder: chrome.i18n.getMessage("folder"),
|
||||||
|
loginSaveSuccess: chrome.i18n.getMessage("loginSaveSuccess"),
|
||||||
loginSaveSuccessDetails: chrome.i18n.getMessage("loginSaveSuccessDetails"),
|
loginSaveSuccessDetails: chrome.i18n.getMessage("loginSaveSuccessDetails"),
|
||||||
|
loginUpdateSuccess: chrome.i18n.getMessage("loginUpdateSuccess"),
|
||||||
loginUpdateSuccessDetails: chrome.i18n.getMessage("loginUpdatedSuccessDetails"),
|
loginUpdateSuccessDetails: chrome.i18n.getMessage("loginUpdatedSuccessDetails"),
|
||||||
notificationAddSave: chrome.i18n.getMessage("notificationAddSave"),
|
newItem: chrome.i18n.getMessage("newItem"),
|
||||||
|
never: chrome.i18n.getMessage("never"),
|
||||||
notificationAddDesc: chrome.i18n.getMessage("notificationAddDesc"),
|
notificationAddDesc: chrome.i18n.getMessage("notificationAddDesc"),
|
||||||
notificationEdit: chrome.i18n.getMessage("edit"),
|
notificationAddSave: chrome.i18n.getMessage("notificationAddSave"),
|
||||||
notificationChangeSave: chrome.i18n.getMessage("notificationChangeSave"),
|
|
||||||
notificationChangeDesc: chrome.i18n.getMessage("notificationChangeDesc"),
|
notificationChangeDesc: chrome.i18n.getMessage("notificationChangeDesc"),
|
||||||
|
notificationChangeSave: chrome.i18n.getMessage("notificationChangeSave"),
|
||||||
|
notificationEdit: chrome.i18n.getMessage("edit"),
|
||||||
notificationUnlock: chrome.i18n.getMessage("notificationUnlock"),
|
notificationUnlock: chrome.i18n.getMessage("notificationUnlock"),
|
||||||
notificationUnlockDesc: chrome.i18n.getMessage("notificationUnlockDesc"),
|
notificationUnlockDesc: chrome.i18n.getMessage("notificationUnlockDesc"),
|
||||||
|
saveAction: chrome.i18n.getMessage("notificationAddSave"),
|
||||||
// @TODO move values to message catalog
|
saveAsNewLoginAction: chrome.i18n.getMessage("saveAsNewLoginAction"),
|
||||||
saveAction: "Save",
|
saveFailure: chrome.i18n.getMessage("saveFailure"),
|
||||||
saveAsNewLoginAction: "Save as new login",
|
saveFailureDetails: chrome.i18n.getMessage("saveFailureDetails"),
|
||||||
updateLoginAction: "Update login",
|
saveLoginPrompt: chrome.i18n.getMessage("saveLoginPrompt"),
|
||||||
saveLoginPrompt: "Save login?",
|
updateLoginAction: chrome.i18n.getMessage("updateLoginAction"),
|
||||||
updateLoginPrompt: "Update existing login?",
|
updateLoginPrompt: chrome.i18n.getMessage("updateLoginPrompt"),
|
||||||
loginSaveSuccess: "Login saved",
|
view: chrome.i18n.getMessage("view"),
|
||||||
loginUpdateSuccess: "Login updated",
|
|
||||||
saveFailure: "Error saving",
|
|
||||||
saveFailureDetails: "Oh no! We couldn't save this. Try entering the details as a New item",
|
|
||||||
newItem: "New item",
|
|
||||||
view: "View",
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user