Merge branch 'master' of github.com:dignajar/bludit

This commit is contained in:
Diego Najar 2018-10-17 22:36:46 +02:00
commit 2081c74259
8 changed files with 33 additions and 14 deletions

View File

@ -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>

View File

@ -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": "Интервал в минутах для автосохранения.",
@ -361,4 +361,4 @@
"good-afternoon": "Добрый день", "good-afternoon": "Добрый день",
"good-evening": "Добрый вечер", "good-evening": "Добрый вечер",
"hello": "Привет" "hello": "Привет"
} }

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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",
}

View File

@ -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",
}

View File

@ -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>';
@ -206,4 +208,4 @@ class pluginSearch extends Plugin {
return array_keys($found); return array_keys($found);
} }
} }

View File

@ -7,6 +7,6 @@
"visits": "Посещения", "visits": "Посещения",
"visits-today": "Посещений сегодня", "visits-today": "Посещений сегодня",
"unique-visitors-today": "Уникальных посетителей сегодня", "unique-visitors-today": "Уникальных посетителей сегодня",
"chart": "Chart", "chart": "Диаграма",
"table": "Table" "table": "Таблица"
} }