fixed serverside templating; footer, logout internationalization; updated more global lang keys
parent
2d8e6bd980
commit
5c7da4b686
@ -0,0 +1,12 @@
|
||||
{
|
||||
"disconnect.title": "Socket Disconnect",
|
||||
"disconnect.message": "Looks like you disconnected, try reloading the page.",
|
||||
"disconnect.reload_button": "Reload",
|
||||
"chat.chatting_with": "Chat with <span id='chat-with-name'></span>",
|
||||
"chat.placeholder": "type chat message, here press enter to send",
|
||||
"chat.send": "Send",
|
||||
"stats.online": "Online",
|
||||
"stats.users": "Users",
|
||||
"stats.topics": "Topics",
|
||||
"stats.posts": "Posts"
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
(function (module) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
})('undefined' === typeof module ? {
|
||||
module: {
|
||||
exports: {}
|
||||
}
|
||||
} : module);
|
@ -1,13 +1,13 @@
|
||||
<ol class="breadcrumb">
|
||||
<li itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
|
||||
<a href="/" itemprop="url"><span itemprop="title">Home</span></a>
|
||||
<a href="/" itemprop="url"><span itemprop="title">[[global:home]]</span></a>
|
||||
</li>
|
||||
<li class="active" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
|
||||
<span itemprop="title">Logout</span>
|
||||
<span itemprop="title">[[global:logout]]</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<div class="alert alert-success" id="message">
|
||||
<h4>You are now logged out.</h4>
|
||||
<p>You have successfully logged out of NodeBB</p>
|
||||
<h4>[[global:logout.title]]</h4>
|
||||
<p>[[global:logout.message]]</p>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue