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>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
';
|
||||
|
@ -269,4 +269,3 @@ $(document).ready(function() {
|
|||
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@
|
|||
"confirm-password": "Подтвердите пароль",
|
||||
"editor": "Редактор",
|
||||
"administrator": "Администратор",
|
||||
"edit-user": "Редактировать пользователя",
|
||||
"edit-user": "Редактирование пользователя",
|
||||
"edit-content": "Редактировать контент",
|
||||
"profile": "Профиль",
|
||||
"change-password": "Изменить пароль",
|
||||
|
@ -299,8 +299,8 @@
|
|||
"template": "Шаблон",
|
||||
"nickname": "Псевдоним",
|
||||
"disable-user": "Отключить пользователя",
|
||||
"delete-user-and-keep-content": "Удалить пользователя и сохранить содержимое",
|
||||
"delete-user-and-delete-content": "Удалить пользователя и удалить содержимое (!)",
|
||||
"delete-user-and-keep-content": "Удалить пользователя",
|
||||
"delete-user-and-delete-content": "Удалить пользователя и содержимое (!)",
|
||||
"social-networks": "Социальные сети",
|
||||
"interval": "Интервал",
|
||||
"number-in-minutes-for-every-execution-of-autosave": "Интервал в минутах для автосохранения.",
|
||||
|
@ -361,4 +361,4 @@
|
|||
"good-afternoon": "Добрый день",
|
||||
"good-evening": "Добрый вечер",
|
||||
"hello": "Привет"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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",
|
||||
"description": "Provide a search box to your users to search through the content of your site."
|
||||
}
|
||||
}
|
||||
},
|
||||
"search": "Search",
|
||||
}
|
||||
|
|
|
@ -3,5 +3,6 @@
|
|||
{
|
||||
"name": "Buscador",
|
||||
"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
|
||||
public function siteSidebar()
|
||||
{
|
||||
global $L;
|
||||
|
||||
$html = '<div class="plugin plugin-search">';
|
||||
$html .= '<h2 class="plugin-label">'.$this->getValue('label').'</h2>';
|
||||
$html .= '<div class="plugin-content">';
|
||||
$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>';
|
||||
|
||||
|
@ -206,4 +208,4 @@ class pluginSearch extends Plugin {
|
|||
return array_keys($found);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
"visits": "Посещения",
|
||||
"visits-today": "Посещений сегодня",
|
||||
"unique-visitors-today": "Уникальных посетителей сегодня",
|
||||
"chart": "Chart",
|
||||
"table": "Table"
|
||||
"chart": "Диаграма",
|
||||
"table": "Таблица"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue