Merge branch 'master' of github.com:dignajar/bludit
This commit is contained in:
commit
2081c74259
|
@ -9,7 +9,7 @@ echo Bootstrap::formOpen(array());
|
||||||
<a class="btn btn-secondary btn-sm" href="'.HTML_PATH_ADMIN_ROOT.'users" role="button">'.$L->g('Cancel').'</a>
|
<a class="btn btn-secondary btn-sm" href="'.HTML_PATH_ADMIN_ROOT.'users" role="button">'.$L->g('Cancel').'</a>
|
||||||
</div>
|
</div>
|
||||||
<h2 class="mt-0 mb-3">
|
<h2 class="mt-0 mb-3">
|
||||||
<span class="oi oi-person" style="font-size: 0.7em;"></span> Edit user
|
<span class="oi oi-person" style="font-size: 0.7em;"></span> '.$L->g('Edit user').'
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
';
|
';
|
||||||
|
@ -269,4 +269,3 @@ $(document).ready(function() {
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -168,7 +168,7 @@
|
||||||
"confirm-password": "Подтвердите пароль",
|
"confirm-password": "Подтвердите пароль",
|
||||||
"editor": "Редактор",
|
"editor": "Редактор",
|
||||||
"administrator": "Администратор",
|
"administrator": "Администратор",
|
||||||
"edit-user": "Редактировать пользователя",
|
"edit-user": "Редактирование пользователя",
|
||||||
"edit-content": "Редактировать контент",
|
"edit-content": "Редактировать контент",
|
||||||
"profile": "Профиль",
|
"profile": "Профиль",
|
||||||
"change-password": "Изменить пароль",
|
"change-password": "Изменить пароль",
|
||||||
|
@ -299,8 +299,8 @@
|
||||||
"template": "Шаблон",
|
"template": "Шаблон",
|
||||||
"nickname": "Псевдоним",
|
"nickname": "Псевдоним",
|
||||||
"disable-user": "Отключить пользователя",
|
"disable-user": "Отключить пользователя",
|
||||||
"delete-user-and-keep-content": "Удалить пользователя и сохранить содержимое",
|
"delete-user-and-keep-content": "Удалить пользователя",
|
||||||
"delete-user-and-delete-content": "Удалить пользователя и удалить содержимое (!)",
|
"delete-user-and-delete-content": "Удалить пользователя и содержимое (!)",
|
||||||
"social-networks": "Социальные сети",
|
"social-networks": "Социальные сети",
|
||||||
"interval": "Интервал",
|
"interval": "Интервал",
|
||||||
"number-in-minutes-for-every-execution-of-autosave": "Интервал в минутах для автосохранения.",
|
"number-in-minutes-for-every-execution-of-autosave": "Интервал в минутах для автосохранения.",
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"plugin-data":
|
||||||
|
{
|
||||||
|
"name": "Suche",
|
||||||
|
"description": "Fügt ein Suchfeld ein, mit dem die Inhalte der Website durchsucht werden können."
|
||||||
|
},
|
||||||
|
"search": "Suchen"
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"plugin-data":
|
||||||
|
{
|
||||||
|
"name": "Suche",
|
||||||
|
"description": "Fügt ein Suchfeld ein, mit dem die Inhalte der Website durchsucht werden können."
|
||||||
|
},
|
||||||
|
"search": "Suchen"
|
||||||
|
}
|
|
@ -3,5 +3,6 @@
|
||||||
{
|
{
|
||||||
"name": "Search",
|
"name": "Search",
|
||||||
"description": "Provide a search box to your users to search through the content of your site."
|
"description": "Provide a search box to your users to search through the content of your site."
|
||||||
}
|
},
|
||||||
|
"search": "Search",
|
||||||
}
|
}
|
|
@ -3,5 +3,6 @@
|
||||||
{
|
{
|
||||||
"name": "Buscador",
|
"name": "Buscador",
|
||||||
"description": "Este plugin provee un buscador para tus usuarios para buscar a través del contenido de su sitio."
|
"description": "Este plugin provee un buscador para tus usuarios para buscar a través del contenido de su sitio."
|
||||||
}
|
},
|
||||||
|
"search": "Buscador",
|
||||||
}
|
}
|
|
@ -34,11 +34,13 @@ class pluginSearch extends Plugin {
|
||||||
// HTML for sidebar
|
// HTML for sidebar
|
||||||
public function siteSidebar()
|
public function siteSidebar()
|
||||||
{
|
{
|
||||||
|
global $L;
|
||||||
|
|
||||||
$html = '<div class="plugin plugin-search">';
|
$html = '<div class="plugin plugin-search">';
|
||||||
$html .= '<h2 class="plugin-label">'.$this->getValue('label').'</h2>';
|
$html .= '<h2 class="plugin-label">'.$this->getValue('label').'</h2>';
|
||||||
$html .= '<div class="plugin-content">';
|
$html .= '<div class="plugin-content">';
|
||||||
$html .= '<input type="text" id="plugin-search-input" /> ';
|
$html .= '<input type="text" id="plugin-search-input" /> ';
|
||||||
$html .= '<input type="button" value="Search" onClick="javascript: window.open(\''.DOMAIN_BASE.'search/\' + document.getElementById(\'plugin-search-input\').value, \'_self\');" />';
|
$html .= '<input type="button" value="'.$L->get('Search').'" onClick="javascript: window.open(\''.DOMAIN_BASE.'search/\' + document.getElementById(\'plugin-search-input\').value, \'_self\');" />';
|
||||||
$html .= '</div>';
|
$html .= '</div>';
|
||||||
$html .= '</div>';
|
$html .= '</div>';
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
"visits": "Посещения",
|
"visits": "Посещения",
|
||||||
"visits-today": "Посещений сегодня",
|
"visits-today": "Посещений сегодня",
|
||||||
"unique-visitors-today": "Уникальных посетителей сегодня",
|
"unique-visitors-today": "Уникальных посетителей сегодня",
|
||||||
"chart": "Chart",
|
"chart": "Диаграма",
|
||||||
"table": "Table"
|
"table": "Таблица"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue