ONOS-6730: Topo View i18n:
- Completed remainder of topology view modules.
- fixed some ESLint issues.

Change-Id: I9cf474198cc4d30be629a2b05cbe19a3bbb43811
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/_config/core.view.Topo.lioncfg b/web/gui/src/main/resources/org/onosproject/ui/lion/_config/core.view.Topo.lioncfg
index ed18b10..3697a85 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/_config/core.view.Topo.lioncfg
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/_config/core.view.Topo.lioncfg
@@ -28,8 +28,8 @@
 
 from cf.QuickHelp import qh_hint_close_detail
 
-from cc.Action import show, hide, enable, disable, select
-from cc.Network import devices, links, hosts, topology_sccs, intents, tunnels, flows, ports, protocol, uri, mac, ip, vlan, device, host
+from cc.Action import show, hide, enable, disable, select, purged, withdrawn, resubmitted, added
+from cc.Network import devices, links, hosts, topology_sccs, intents, tunnels, flows, ports, protocol, uri, mac, ip, vlan, device, host, intent
 from cc.Props import version, vendor, hw_version, sw_version, serial_number, latitude, longitude, grid_y, grid_x
 from cc.State import visible, hidden, vlan_none, expected, not_expected
 from cc.Ui import click, shift_click, drag, cmd_scroll, cmd_drag, ok, close
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action.properties
index 4a8311c..14efa87 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action.properties
@@ -15,6 +15,7 @@
 #
 #
 
+# Present Tense
 install=Install
 start=Start
 pause=Pause
@@ -28,3 +29,9 @@
 enable=Enable
 disable=Disable
 select=Select
+
+# Past Tense
+purged=purged
+withdrawn=withdrawn
+resubmitted=resubmitted
+added=added
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_es.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_es.properties
index f90ca88..cd1d275 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_es.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_es.properties
@@ -15,6 +15,7 @@
 #
 #
 
+# Present Tense
 install=Instalar
 start=Iniciar
 pause=Pausar
@@ -28,3 +29,9 @@
 enable=Enable (es)
 disable=Disable (es)
 select=Select (es)
+
+# Past Tense
+purged=purged (es)
+withdrawn=withdrawn (es)
+resubmitted=resubmitted (es)
+added=added (es)
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_it.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_it.properties
index 4c5d6c9..0678eb2 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_it.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_it.properties
@@ -15,6 +15,7 @@
 #
 #
 
+# Present Tense
 install=Installa
 start=Inizia
 pause=Pausa
@@ -28,3 +29,9 @@
 enable=Enable (it)
 disable=Disable (it)
 select=Select (it)
+
+# Past Tense
+purged=purged (it)
+withdrawn=withdrawn (it)
+resubmitted=resubmitted (it)
+added=added (it)
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_ko.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_ko.properties
index 2cf0ba1..a2e72c3 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_ko.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_ko.properties
@@ -15,6 +15,7 @@
 #
 #
 
+# Present Tense
 install=설치
 start=시작
 pause=중지
@@ -28,3 +29,9 @@
 enable=Enable (ko)
 disable=Disable (ko)
 select=Select (ko)
+
+# Past Tense
+purged=purged (ko)
+withdrawn=withdrawn (ko)
+resubmitted=resubmitted (ko)
+added=added (ko)
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_CN.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_CN.properties
index ab6fffa..271687f 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_CN.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_CN.properties
@@ -15,6 +15,7 @@
 #
 #
 
+# Present Tense
 install=安装
 start=开始
 pause=暂停
@@ -28,3 +29,9 @@
 enable=Enable (zh_CN)
 disable=Disable (zh_CN)
 select=Select (zh_CN)
+
+# Past Tense
+purged=purged (zh_CN)
+withdrawn=withdrawn (zh_CN)
+resubmitted=resubmitted (zh_CN)
+added=added (zh_CN)
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_TW.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_TW.properties
index bf299ac..ed86135 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_TW.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/common/Action_zh_TW.properties
@@ -15,6 +15,7 @@
 #
 #
 
+# Present Tense
 install=安裝
 start=開始
 pause=暫停
@@ -28,3 +29,9 @@
 enable=Enable (zh_TW)
 disable=Disable (zh_TW)
 select=Select (zh_TW)
+
+# Past Tense
+purged=purged (zh_TW)
+withdrawn=withdrawn (zh_TW)
+resubmitted=resubmitted (zh_TW)
+added=added (zh_TW)
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo.properties
index a534c5f..0c82575 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo.properties
@@ -79,6 +79,37 @@
 fl_oblique_view=Oblique View
 fl_normal_view=Normal View
 
+fl_monitoring_canceled=Monitoring Canceled
+fl_selecting_intent=Selecting Intent
+
+# Core Overlays
+ov_tt_protected_intents=Protected Intents Overlay
+ov_tt_traffic=Traffic Overlay
+ov_tt_none=No Overlay
+
+# Traffic Overlay
+tr_btn_create_h2h_flow=Create Host-to-Host Flow
+tr_btn_create_msrc_flow=Create Multi-Source Flow
+tr_btn_show_device_flows=Show Device Flows
+tr_btn_show_related_traffic=Show Related Traffic
+tr_btn_cancel_monitoring=Cancel traffic monitoring
+tr_btn_monitor_all=Monitor all traffic
+tr_btn_show_dev_link_flows=Show device link flows
+tr_btn_show_all_rel_intents=Show all related intents
+tr_btn_show_prev_rel_intent=Show previous related intent
+tr_btn_show_next_rel_intent=Show next related intent
+tr_btn_monitor_sel_intent=Monitor traffic of selected intent
+tr_fl_fstats_bytes=Flow Stats (bytes)
+tr_fl_pstats_bits=Port Stats (bits / second)
+tr_fl_pstats_pkts=Port Stats (packets / second)
+tr_fl_dev_flows=Device Flows
+tr_fl_rel_paths=Related Paths
+tr_fl_prev_rel_int=Previous related intent
+tr_fl_next_rel_int=Next related intent
+tr_fl_traf_on_path=Traffic on Selected Path
+tr_fl_h2h_flow_added=Host-to-Host flow added
+tr_fl_multisrc_flow=Multi-Source Flow
+
 # Button tooltips
 btn_show_view_device=Show Device View
 btn_show_view_flow=Show Flow View for this Device
diff --git a/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo_it.properties b/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo_it.properties
index 8354573..a08c629 100644
--- a/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo_it.properties
+++ b/web/gui/src/main/resources/org/onosproject/ui/lion/core/view/Topo_it.properties
@@ -79,6 +79,37 @@
 fl_oblique_view=Oblique View (it)
 fl_normal_view=Normal View (it)
 
+fl_monitoring_canceled=Monitoring Canceled (it)
+fl_selecting_intent=Selecting Intent (it)
+
+# Core Overlays
+ov_tt_protected_intents=Protected Intents Overlay (it)
+ov_tt_traffic=Traffic Overlay (it)
+ov_tt_none=No Overlay (it)
+
+# Traffic Overlay
+tr_btn_create_h2h_flow=Create Host-to-Host Flow (it)
+tr_btn_create_msrc_flow=Create Multi-Source Flow (it)
+tr_btn_show_device_flows=Show Device Flows (it)
+tr_btn_show_related_traffic=Show Related Traffic (it)
+tr_btn_cancel_monitoring=Cancel traffic monitoring (it)
+tr_btn_monitor_all=Monitor all traffic (it)
+tr_btn_show_dev_link_flows=Show device link flows (it)
+tr_btn_show_all_rel_intents=Show all related intents (it)
+tr_btn_show_prev_rel_intent=Show previous related intent (it)
+tr_btn_show_next_rel_intent=Show next related intent (it)
+tr_btn_monitor_sel_intent=Monitor traffic of selected intent (it)
+tr_fl_fstats_bytes=Flow Stats (bytes) (it)
+tr_fl_pstats_bits=Port Stats (bits / second) (it)
+tr_fl_pstats_pkts=Port Stats (packets / second) (it)
+tr_fl_dev_flows=Device Flows (it)
+tr_fl_rel_paths=Related Paths (it)
+tr_fl_prev_rel_int=Previous related intent (it)
+tr_fl_next_rel_int=Next related intent (it)
+tr_fl_traf_on_path=Traffic on Selected Path (it)
+tr_fl_h2h_flow_added=Host-to-Host flow added (it)
+tr_fl_multisrc_flow=Multi-Source Flow (it)
+
 # Button tooltips
 btn_show_view_device=Show Device View (it)
 btn_show_view_flow=Show Flow View for this Device (it)