mirror of
https://github.com/luxfi/pics.git
synced 2026-07-26 21:08:58 +00:00
some missing strings on manage pages
This commit is contained in:
@@ -2,7 +2,7 @@ extends ../layout.pug
|
||||
include ../mixins/globalmanagenav.pug
|
||||
|
||||
block head
|
||||
title Accounts
|
||||
title #{__('Accounts')}
|
||||
|
||||
block content
|
||||
h1.board-title #{__('Global Management')}
|
||||
@@ -10,7 +10,7 @@ block content
|
||||
+globalmanagenav('accounts')
|
||||
hr(size=1)
|
||||
.form-wrapper.flexleft
|
||||
h4.no-m-p Search:
|
||||
h4.no-m-p #{__('Search')}:
|
||||
form.form-post.mv-5(action=`/globalmanage/accounts.html` method='GET')
|
||||
input(type='hidden' value=page)
|
||||
.row
|
||||
@@ -42,7 +42,7 @@ block content
|
||||
if permissions.get(Permissions.MANAGE_GLOBAL_BOARDS)
|
||||
.prev-show
|
||||
input(type='checkbox', name='delete_owned_boards' value=account._id)
|
||||
| Delete all owned boards
|
||||
| #{__('Delete all owned boards')}:
|
||||
td #{account._id}
|
||||
td
|
||||
if account.ownedBoards.length > 0
|
||||
|
||||
@@ -11,7 +11,7 @@ block content
|
||||
br
|
||||
+globalmanagenav('boards')
|
||||
hr(size=1)
|
||||
h4.text-center.no-m-p Filter:
|
||||
h4.text-center.no-m-p #{__('Filter')}:
|
||||
.flexcenter.mv-10
|
||||
form.form-post(action='/globalmanage/boards.html' method='GET')
|
||||
input(type='hidden' value=page)
|
||||
@@ -45,7 +45,7 @@ block content
|
||||
input(type='checkbox', name='filter_abandoned', value='1' checked=(query.filter_abandoned != null))
|
||||
input(type='submit', value='Filter')
|
||||
if localBoards && localBoards.length > 0
|
||||
h4.text-center.mv-10 Board List:
|
||||
h4.text-center.mv-10 #{__('Board List')}:
|
||||
+boardtable(true, true, permissions.get(Permissions.GLOBAL_MANAGE_ACCOUNTS))
|
||||
each board in localBoards
|
||||
tr
|
||||
|
||||
@@ -12,7 +12,7 @@ block content
|
||||
+globalmanagenav('logs')
|
||||
hr(size=1)
|
||||
.form-wrapper.flexleft
|
||||
h4.no-m-p Search:
|
||||
h4.no-m-p #{__('Search')}:
|
||||
form.form-post.mv-5(action=`/globalmanage/globallogs.html` method='GET')
|
||||
input(type='hidden' value=page)
|
||||
.row
|
||||
@@ -25,7 +25,7 @@ block content
|
||||
.label #{__('IP')}
|
||||
input(type='text' name='ip' value=ip)
|
||||
input(type='submit', value=__('Filter'))
|
||||
h4.no-m-p Global Logs:
|
||||
h4.no-m-p #{__('Global Logs')}:
|
||||
if logs && logs.length > 0
|
||||
.table-container.flex-center.mv-10.text-center
|
||||
table.fw
|
||||
|
||||
Reference in New Issue
Block a user