Fix 'placeholders are incompatible' issue in the message catalog.

Replace % with %% used in the explain module.
This commit is contained in:
Akshay Joshi
2019-10-14 12:51:34 +05:30
parent 75e2167165
commit 7c271d21ae
20 changed files with 82 additions and 34 deletions

View File

@@ -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>',