Skip to content

Commit 171180a

Browse files
committed
More string fixes.
1 parent 0f7044f commit 171180a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

web/pgadmin/dashboard/static/js/SystemStats/Summary.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export default function Summary({preferences, sid, did, pageVisible, enablePoll=
136136
{ icon: '', name: gettext('Host name'), value: gettext(os_info_obj['host_name']) },
137137
{ icon: '', name: gettext('Domain name'), value: gettext(os_info_obj['domain_name']) },
138138
{ icon: '', name: gettext('Architecture'), value: gettext(os_info_obj['architecture']) },
139-
{ icon: '', name: gettext('Os up since seconds'), value: gettext(os_info_obj['os_up_since_seconds']) },
139+
{ icon: '', name: gettext('OS uptime (seconds)'), value: gettext(os_info_obj['os_up_since_seconds']) },
140140
];
141141
setOsStats(os_info_list);
142142

@@ -145,7 +145,7 @@ export default function Summary({preferences, sid, did, pageVisible, enablePoll=
145145
{ icon: '', name: gettext('Vendor'), value: gettext(cpu_info_obj['vendor']) },
146146
{ icon: '', name: gettext('Description'), value: gettext(cpu_info_obj['description']) },
147147
{ icon: '', name: gettext('Model name'), value: gettext(cpu_info_obj['model_name']) },
148-
{ icon: '', name: gettext('No of cores'), value: gettext(cpu_info_obj['no_of_cores']) },
148+
{ icon: '', name: gettext('Number of cores'), value: gettext(cpu_info_obj['no_of_cores']) },
149149
{ icon: '', name: gettext('Architecture'), value: gettext(cpu_info_obj['architecture']) },
150150
{ icon: '', name: gettext('Clock speed Hz'), value: gettext(cpu_info_obj['clock_speed_hz']) },
151151
{ icon: '', name: gettext('L1 dcache size'), value: gettext(cpu_info_obj['l1dcache_size']) },

web/pgadmin/tools/schema_diff/static/js/components/Results.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function Results() {
8080
return (
8181
(<Root>
8282
<Box className='Results-header'>
83-
<span>{gettext('DDL Comparision')}</span>
83+
<span>{gettext('DDL Comparison')}</span>
8484
</Box>
8585
<Box className='Results-labelContainer'>
8686
<Box className='Results-label'>{gettext('Source')}</Box>

web/pgadmin/tools/user_management/static/js/Roles.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export default function Roles({roles, updateRoles}) {
144144
minSize: 50,
145145
},
146146
{
147-
header: gettext('Decscription'),
147+
header: gettext('Description'),
148148
accessorKey: 'description',
149149
size: 100,
150150
minSize: 100,

0 commit comments

Comments
 (0)