mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-10 16:05:49 +01:00
closes #1012
This commit is contained in:
@@ -12,6 +12,9 @@
|
|||||||
"register": "Register",
|
"register": "Register",
|
||||||
"login": "Login",
|
"login": "Login",
|
||||||
|
|
||||||
|
"welcome_back": "Welcome Back ",
|
||||||
|
"you_have_successfully_logged_in": "You have successfully logged in",
|
||||||
|
|
||||||
"logout": "Logout",
|
"logout": "Logout",
|
||||||
"logout.title": "You are now logged out.",
|
"logout.title": "You are now logged out.",
|
||||||
"logout.message": "You have successfully logged out of NodeBB",
|
"logout.message": "You have successfully logged out of NodeBB",
|
||||||
@@ -19,6 +22,8 @@
|
|||||||
"save_changes": "Save Changes",
|
"save_changes": "Save Changes",
|
||||||
"close": "Close",
|
"close": "Close",
|
||||||
|
|
||||||
|
"pagination": "Pagination",
|
||||||
|
|
||||||
"header.admin": "Admin",
|
"header.admin": "Admin",
|
||||||
"header.recent": "Recent",
|
"header.recent": "Recent",
|
||||||
"header.unread": "Unread",
|
"header.unread": "Unread",
|
||||||
|
|||||||
@@ -24,6 +24,9 @@
|
|||||||
"flag_title": "Flag this post for moderation",
|
"flag_title": "Flag this post for moderation",
|
||||||
"deleted_message": "This thread has been deleted. Only users with thread management privileges can see it.",
|
"deleted_message": "This thread has been deleted. Only users with thread management privileges can see it.",
|
||||||
|
|
||||||
|
"watch": "Watch",
|
||||||
|
"share_this_post": "Share this Post",
|
||||||
|
|
||||||
"thread_tools.title": "Thread Tools",
|
"thread_tools.title": "Thread Tools",
|
||||||
"thread_tools.markAsUnreadForAll": "Mark Unread",
|
"thread_tools.markAsUnreadForAll": "Mark Unread",
|
||||||
"thread_tools.pin": "Pin Topic",
|
"thread_tools.pin": "Pin Topic",
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
"edit": "Edit",
|
"edit": "Edit",
|
||||||
"uploaded_picture": "Uploaded Picture",
|
"uploaded_picture": "Uploaded Picture",
|
||||||
"upload_new_picture": "Upload New Picture",
|
"upload_new_picture": "Upload New Picture",
|
||||||
|
"current_password": "Current Password",
|
||||||
"change_password": "Change Password",
|
"change_password": "Change Password",
|
||||||
"confirm_password": "Confirm Password",
|
"confirm_password": "Confirm Password",
|
||||||
"password": "Password",
|
"password": "Password",
|
||||||
|
|||||||
@@ -346,8 +346,8 @@ var socket,
|
|||||||
function showAlert() {
|
function showAlert() {
|
||||||
app.alert({
|
app.alert({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
title: 'Welcome Back ' + app.username + '!',
|
title: '[[global:welcome_back]] ' + app.username + '!',
|
||||||
message: 'You have successfully logged in!',
|
message: '[[global:you_have_successfully_logged_in]]',
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,8 +27,8 @@
|
|||||||
<a id="uploadPictureBtn" href="#">[[user:upload_new_picture]]</a>
|
<a id="uploadPictureBtn" href="#">[[user:upload_new_picture]]</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
|
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">[[global:close]]</button>
|
||||||
<button id="savePictureChangesBtn" class="btn btn-primary">Save changes</button>
|
<button id="savePictureChangesBtn" class="btn btn-primary">[[global:save_changes]]</button>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.modal-content -->
|
</div><!-- /.modal-content -->
|
||||||
</div><!-- /.modal-dialog -->
|
</div><!-- /.modal-dialog -->
|
||||||
@@ -113,7 +113,7 @@
|
|||||||
<div style="vertical-align:top;">
|
<div style="vertical-align:top;">
|
||||||
<form class='form-horizontal'>
|
<form class='form-horizontal'>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label" for="inputCurrentPassword">Current Password</label>
|
<label class="control-label" for="inputCurrentPassword">[[user:current_password]]</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input class="form-control" type="password" id="inputCurrentPassword" placeholder="Current Password" value="">
|
<input class="form-control" type="password" id="inputCurrentPassword" placeholder="Current Password" value="">
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h4>Pagination</h4>
|
<h4>[[global:pagination]]</h4>
|
||||||
<div class="well">
|
<div class="well">
|
||||||
<div class="checkbox">
|
<div class="checkbox">
|
||||||
<label>
|
<label>
|
||||||
|
|||||||
Reference in New Issue
Block a user