mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix 'placeholders are incompatible' issue in the message catalog.
Replace % with %% used in the explain module.
This commit is contained in:
@@ -206,7 +206,7 @@ define('pgadmin.misc.explain', [
|
||||
' <th class="renderable timings d-none"><button disabled>',
|
||||
gettext('Time spent') ,'</button></th>',
|
||||
' <th class="renderable timings d-none"><button disabled>',
|
||||
gettext('% of query') ,'</button></th>',
|
||||
gettext('%% of query') ,'</button></th>',
|
||||
' </tr>',
|
||||
' </thead>',
|
||||
' </table>',
|
||||
@@ -226,7 +226,7 @@ define('pgadmin.misc.explain', [
|
||||
' <th class="renderable timings d-none"><button disabled>',
|
||||
gettext('Total time') ,'</button></th>',
|
||||
' <th class="renderable timings d-none"><button disabled>',
|
||||
gettext('% of query') ,'</button></th>',
|
||||
gettext('%% of query') ,'</button></th>',
|
||||
' </tr>',
|
||||
' <tr>',
|
||||
' <th class="renderable"><button disabled>',
|
||||
@@ -236,7 +236,7 @@ define('pgadmin.misc.explain', [
|
||||
' <th class="renderable timings d-none"><button disabled>',
|
||||
gettext('Sum of times') ,'</button></th>',
|
||||
' <th class="renderable timings d-none"><button disabled>',
|
||||
gettext('% of table') ,'</button></th>',
|
||||
gettext('%% of table') ,'</button></th>',
|
||||
' </tr>',
|
||||
' </thead>',
|
||||
' </table>',
|
||||
|
||||
Reference in New Issue
Block a user