update translations
parent
79a77474f0
commit
ab707498b9
14
_admin.php
14
_admin.php
|
@ -56,8 +56,8 @@ class adminKutrl
|
|||
{
|
||||
return [
|
||||
__('Date') => 'kut_dt',
|
||||
__('Short URL') => 'kut_hash',
|
||||
__('Long URL') => 'kut_url',
|
||||
__('Short link') => 'kut_hash',
|
||||
__('Long link') => 'kut_url',
|
||||
__('Service') => 'kut_service'
|
||||
];
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ class adminKutrl
|
|||
public static function adminColumnsLists(dcCore $core, $cols)
|
||||
{
|
||||
$cols['kUtRL'] = [
|
||||
__('URL shortener'),
|
||||
__('Links shortener'),
|
||||
[
|
||||
'kut_hash' => [true, __('Hash')],
|
||||
'kut_dt' => [true, __('Date')],
|
||||
|
@ -91,11 +91,11 @@ class adminKutrl
|
|||
public static function adminFiltersLists(dcCore $core, $sorts)
|
||||
{
|
||||
$sorts['kUtRL'] = [
|
||||
__('URL shortener'),
|
||||
__('Links shortener'),
|
||||
self::sortbyCombo(),
|
||||
'kut_dt',
|
||||
'desc',
|
||||
[__('Links per page'), 30]
|
||||
[__('links per page'), 30]
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -278,8 +278,8 @@ class adminKutrl
|
|||
return null;
|
||||
}
|
||||
|
||||
$args[0][__('kUtRL')][__('Create short link')] = 'kutrl_create';
|
||||
$args[0][__('kUtRL')][__('Delete short link')] = 'kutrl_delete';
|
||||
$args[0][__('Links shortener')][__('Create short link')] = 'kutrl_create';
|
||||
$args[0][__('Links shortener')][__('Delete short link')] = 'kutrl_delete';
|
||||
}
|
||||
|
||||
public static function adminPostsActions(dcCore $core, $posts, $action, $redir)
|
||||
|
|
|
@ -75,7 +75,7 @@ if (!empty($_POST['save'])) {
|
|||
$core->blog->triggerBlog();
|
||||
|
||||
dcPage::addSuccessNotice(
|
||||
__('Configuration successfully saved')
|
||||
__('Configuration successfully updated.')
|
||||
);
|
||||
|
||||
$core->adminurl->redirect(
|
||||
|
@ -90,7 +90,7 @@ if (!empty($_POST['save'])) {
|
|||
echo '
|
||||
<div class="fieldset"><h4>' . __('Settings') . '</h4>
|
||||
<div id="setting-plugin">
|
||||
<h5>' . __('Plugin activation') . '</h5>
|
||||
<h5>' . __('Activation') . '</h5>
|
||||
<p><label class="classic">' .
|
||||
form::checkbox(['s_active'], '1', $s_active) .
|
||||
__('Enable plugin') . '</label></p>
|
||||
|
|
|
@ -16,7 +16,7 @@ if (!defined('DC_RC_PATH')) {
|
|||
}
|
||||
|
||||
$this->registerModule(
|
||||
'URL shortener',
|
||||
'Links shortener',
|
||||
'Use, create and serve short url on your blog',
|
||||
'Jean-Christian Denis and contributors',
|
||||
'2021.09.16',
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue