Missing translations
This commit is contained in:
parent
8439abbe97
commit
bd5f724503
1 changed files with 3 additions and 3 deletions
|
@ -151,7 +151,7 @@ function table($type)
|
||||||
';
|
';
|
||||||
|
|
||||||
if (count($page->children()) == 0) {
|
if (count($page->children()) == 0) {
|
||||||
echo '<span class="link btnDeletePage" data-key="' . $page->key() . '">Delete</span>';
|
echo '<span class="link btnDeletePage" data-key="' . $page->key() . '">' . $L->g('Delete') . '</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
@ -174,7 +174,7 @@ function table($type)
|
||||||
<div class="mt-1">
|
<div class="mt-1">
|
||||||
<a class="me-2" target="_blank" href="' . $child->permalink() . '">' . $L->g('View') . '</a>
|
<a class="me-2" target="_blank" href="' . $child->permalink() . '">' . $L->g('View') . '</a>
|
||||||
<a class="me-2" href="' . HTML_PATH_ADMIN_ROOT . 'editor/' . $child->key() . '">' . $L->g('Edit') . '</a>
|
<a class="me-2" href="' . HTML_PATH_ADMIN_ROOT . 'editor/' . $child->key() . '">' . $L->g('Edit') . '</a>
|
||||||
<span class="link btnDeletePage" data-key="' . $child->key() . '">Delete</span>
|
<span class="link btnDeletePage" data-key="' . $child->key() . '">' . $L->g('Delete') . '</span>
|
||||||
</div>
|
</div>
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ function table($type)
|
||||||
<div class="mt-1">
|
<div class="mt-1">
|
||||||
<a class="me-2" target="_blank" href="' . $page->permalink() . '">' . $L->g('View') . '</a>
|
<a class="me-2" target="_blank" href="' . $page->permalink() . '">' . $L->g('View') . '</a>
|
||||||
<a class="me-2" href="' . HTML_PATH_ADMIN_ROOT . 'editor/' . $page->key() . '">' . $L->g('Edit') . '</a>
|
<a class="me-2" href="' . HTML_PATH_ADMIN_ROOT . 'editor/' . $page->key() . '">' . $L->g('Edit') . '</a>
|
||||||
<span class="link btnDeletePage" data-key="' . $page->key() . '">Delete</span>
|
<span class="link btnDeletePage" data-key="' . $page->key() . '">' . $L->g('Delete') . '</span>
|
||||||
</div>
|
</div>
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue