Files
SymphonyElectron/js/moreInfo/more-info.html
Vishwas Shashidhar ef392b2c60 Fix Localisation Issues (#620)
* ELECTRON-1073: localise more info window content

* fix localisation on network error strings

* ELECTRON-1074: fix localisation for right click context menu in child windows

* ELECTRON-1097: fix japanese localisation string name for screen sharing indicator

* ELECTRON-1052: add localisation support for screen names in screen sharing window
2019-03-28 18:09:05 +05:30

46 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title data-i18n-text="More Information"></title>
<style>
html, body {
margin: 0;
height: 100%;
font-family: sans-serif;
}
.version-text {
flex: 1;
font-size: 1em;
color: #2f2f2f;
}
.content {
text-align: center;
display: flex;
flex-direction: column;
padding-top: 20px
}
.logo {
margin: auto;
}
</style>
</head>
<body>
<div class="content">
<span><b data-i18n-text="Version Information"></b></span>
<span id="electron" class="content"></span>
<span id="chromium" class="content"></span>
<span id="v8" class="content"></span>
<span id="node" class="content"></span>
<span id="openssl" class="content"></span>
<span id="zlib" class="content"></span>
<span id="uv" class="content"></span>
<span id="ares" class="content"></span>
<span id="httpparser" class="content"></span>
</div>
</body>
</html>