Browse Source

add favicon to dashboard/logger (fix #627) + add i18n for logger title

pull/2/head
xofe 7 years ago
parent
commit
cacdb07a6e
  1. 4
      src/_locales/en/messages.json
  2. 1
      src/dashboard.html
  3. 3
      src/logger-ui.html

4
src/_locales/en/messages.json

@ -11,6 +11,10 @@
"message": "uMatrix — Dashboard",
"description": ""
},
"loggerPageName": {
"message": "uMatrix — Logger",
"description": "Title for the logger window"
},
"settingsPageName": {
"message": "Settings",
"description": "a tab in dashboard"

1
src/dashboard.html

@ -2,6 +2,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" type="image/png" href="img/icon_16.png">
<title data-i18n="dashboardPageName"></title>
<style>
body {

3
src/logger-ui.html

@ -4,7 +4,8 @@
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/logger-ui.css">
<title>uMatrix log</title>
<link rel="shortcut icon" type="image/png" href="img/icon_16.png">
<title data-i18n="loggerPageName"></title>
</head>
<body class="compactView f">

Loading…
Cancel
Save