mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
[Accessibility] Use semantic markup to mark emphasized or special text.
Reference: https://www.w3.org/TR/WCAG20-TECHS/H49.html
This commit is contained in:
@@ -1066,7 +1066,7 @@ define([
|
||||
page_title: gettext('Final (Review Selection) (step 3 of 3)'),
|
||||
show_description: gettext('The SQL below will be executed on the ' +
|
||||
'database server to grant the selected privileges. ' +
|
||||
'Please click on <b>Finish</b> to complete the process.'),
|
||||
'Please click on <strong>Finish</strong> to complete the process.'),
|
||||
model: newModel,
|
||||
view: new(function() {
|
||||
|
||||
|
@@ -744,7 +744,7 @@ export default class SchemaDiffUI {
|
||||
|
||||
footer_panel.$container.find('#schema-diff-ddl-comp').append(self.footer.render().$el);
|
||||
header_panel.$container.find('#schema-diff-grid').append(`<div class='obj_properties container-fluid'>
|
||||
<div class='pg-panel-message'>` + gettext('Select the server, database and schema for the source and target and click <b>Compare</b> to compare them.') + '</div></div>');
|
||||
<div class='pg-panel-message'>` + gettext('Select the server, database and schema for the source and target and click <strong>Compare</strong> to compare them.') + '</div></div>');
|
||||
|
||||
self.grid_width = $('#schema-diff-grid').width();
|
||||
self.grid_height = this.panel_obj.height();
|
||||
|
Reference in New Issue
Block a user