Skip to content

Commit 20b68c3

Browse files
author
Kristan Kenney
committed
Update toolbar
1 parent 020ba30 commit 20b68c3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

web/inc/i18n/en.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
'Add Mail Domain' => 'Add Mail Domain',
5151
'Add Mail Account' => 'Add Mail Account',
5252
'Add Database' => 'Add Database',
53-
'Add Cron Job' => 'Add Task',
53+
'Add Cron Job' => 'Add Job',
5454
'Create Backup' => 'Create Backup',
5555
'Configure' => 'Configure',
5656
'Restore All' => 'Restore All',
@@ -107,8 +107,8 @@
107107
'reread IP' => 'Verify IP address',
108108
'enable autoupdate' => 'Automatic Updates: Off',
109109
'disable autoupdate' => 'Automatic Updates: On',
110-
'turn on notifications' => 'Enable Notifications',
111-
'turn off notifications' => 'Disable Notifications',
110+
'turn on notifications' => 'Turn on notifications',
111+
'turn off notifications' => 'Turn off notifications',
112112
'configure' => 'Configure',
113113

114114
'Adding User' => 'Add User',
@@ -124,8 +124,8 @@
124124
'Adding Mail Account' => 'Add Mail Account',
125125
'Editing Mail Account' => 'Edit Mail Account',
126126
'Adding database' => 'Add Database',
127-
'Editing Cron Job' => 'Edit Task',
128-
'Adding Cron Job' => 'Add Task',
127+
'Editing Cron Job' => 'Edit Job',
128+
'Adding Cron Job' => 'Add Job',
129129
'Editing Database' => 'Edit Database',
130130
'Adding Package' => 'Add Package',
131131
'Editing Package' => 'Edit Package',

web/templates/admin/list_cron.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<a href="/add/cron/" class="ui-button cancel" title="<?=__('Add Cron Job')?>"><i class="fas fa-plus-circle status-icon-green"></i> <?=__('Add Cron Job')?></a>
55
<?
66
if($panel[$user]['CRON_REPORTS'] == 'yes') {
7-
echo '<a class="ui-button cancel" href="/delete/cron/reports/?token='.$_SESSION['token'].'"><i class="fas fa-bell-slash status-icon-orange"></i> '.__('turn off notifications').'</a>';
7+
echo '<a class="ui-button cancel" href="/delete/cron/reports/?token='.$_SESSION['token'].'"><i class="fas fa-bell status-icon-orange"></i> '.__('turn off notifications').'</a>';
88
} else {
9-
echo '<a class="ui-button cancel" href="/add/cron/reports/?token='.$_SESSION['token'].'"><i class="fas fa-bell status-icon-orange"></i> '.__('turn on notifications').'</a>';
9+
echo '<a class="ui-button cancel" href="/add/cron/reports/?token='.$_SESSION['token'].'"><i class="fas fa-bell-slash status-icon-orange"></i> '.__('turn on notifications').'</a>';
1010
}
1111
?>
1212
</div>
@@ -160,9 +160,9 @@
160160
<div class="data-count l-unit__col l-unit__col--right clearfix">
161161
<?php
162162
if ( $i == 1) {
163-
echo __('1 task');
163+
echo __('1 cron job');
164164
} else {
165-
echo __('%s tasks',$i);
165+
echo __('%s cron jobs',$i);
166166
}
167167
?>
168168
</div>

0 commit comments

Comments
 (0)