diff --git a/src/pages/Secrets/Transit/TransitView.tsx b/src/pages/Secrets/Transit/TransitView.tsx
index 85a017d..6e6c453 100644
--- a/src/pages/Secrets/Transit/TransitView.tsx
+++ b/src/pages/Secrets/Transit/TransitView.tsx
@@ -90,6 +90,14 @@ export class TransitViewPage extends Page {
>
{i18next.t("transit_view_new_btn")}
+
>,
diff --git a/src/translations/en.js b/src/translations/en.js
index 38aa15e..3c29f9b 100644
--- a/src/translations/en.js
+++ b/src/translations/en.js
@@ -146,12 +146,14 @@ module.exports = {
kv_view_cubbyhole_text:
"In cubbyhole, secrets can be stored as long as the lease of your token is valid. They will be deleted when lease is expired and can only be viewed by your current token.",
kv_view_new_btn: "New",
+ kv_view_delete_btn: "Delete",
kv_view_none_here_text: "You seem to have no secrets here, would you like to create one?",
// TOTP View Page
totp_view_title: "TOTP",
totp_view_new_btn: "New",
totp_view_delete_btn: "Delete",
+ totp_view_secret_delete_btn: "Delete",
totp_view_loading: "Loading TOTP Codes..",
totp_view_empty: "You seem to have no TOTP codes here, would you like to create one?",
totp_view_loading_box: "Loading..",
@@ -177,6 +179,7 @@ module.exports = {
// Transit View Page
transit_view_title: "Transit View",
transit_view_new_btn: "New",
+ transit_view_delete_btn: "Delete",
transit_view_none_here_text:
"You seem to have no transit keys here, would you like to create one?",
@@ -222,6 +225,12 @@ module.exports = {
transit_rewrap_rewrap_btn: "Rewrap",
transit_rewrap_result_modal_title: "Rewrap Result",
+ // Delete Secret Engine Page
+ delete_secrets_engine_title: "Delete Secret Engine ({{mount}})",
+ delete_secrets_engine_message:
+ "Are you sure you want to delete this secrets engine and all the data stored within? This can't be reversed.",
+ delete_secrets_engine_delete_btn: "Delete",
+
// Access Home
access_home_page_title: "Access",
access_auth_methods_title: "Authentication Methods",
diff --git a/src/translations/ru.js b/src/translations/ru.js
index 50cf703..a4df8e6 100644
--- a/src/translations/ru.js
+++ b/src/translations/ru.js
@@ -152,7 +152,7 @@ module.exports = {
// TOTP View Page
totp_view_title: "TOTP",
totp_view_new_btn: "Добавить",
- totp_view_delete_btn: "Удалить",
+ totp_view_secret_delete_btn: "Удалить",
totp_view_loading: "Загрузка кодов TOTP..",
totp_view_empty: "У вас на данный момент нет кодов TOTP. Хотите ли вы их создать?",
totp_view_loading_box: "Загрузка..",