From 9f814d4a169283213c926b96789cd3bab86663a1 Mon Sep 17 00:00:00 2001 From: joeuhren <46763106+joeuhren@users.noreply.github.com> Date: Fri, 20 Nov 2020 17:57:50 -0700 Subject: [PATCH] Locale: "Add Nodes" phrase --- lib/locale.js | 1 + locale/en.json | 1 + views/network.pug | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/locale.js b/lib/locale.js index cb048da..abbd803 100644 --- a/lib/locale.js +++ b/lib/locale.js @@ -75,6 +75,7 @@ exports.rl_top75 = "Top 51-75", exports.rl_top100 = "Top 76-100", exports.rl_hundredplus = "101+", +exports.net_addnodes = "Add Nodes", exports.net_connections = "Connections", exports.net_address = "Address", exports.net_protocol = "Protocol", diff --git a/locale/en.json b/locale/en.json index 1172943..1f5459c 100644 --- a/locale/en.json +++ b/locale/en.json @@ -79,6 +79,7 @@ "rl_top100": "Top 76-100", "rl_hundredplus": "101+", + "net_addnodes": "Add Nodes", "net_connections": "Connections", "net_address": "Address", "net_protocol": "Protocol", diff --git a/views/network.pug b/views/network.pug index 9b35887..0b8f3d8 100644 --- a/views/network.pug +++ b/views/network.pug @@ -9,7 +9,7 @@ block content li.active(role='presentation') a(href='#connections', aria-controls='connections', role='tab', data-toggle='tab') #{settings.locale.net_connections} li(role='presentation') - a(href='#addnodes', aria-controls='addnodes', role='tab', data-toggle='tab') Add Nodes + a(href='#addnodes', aria-controls='addnodes', role='tab', data-toggle='tab') #{settings.locale.net_addnodes} .tab-content #connections.tabpanel.tab-pane.active include ./includes/net_list.jade