diff --git a/web/pgadmin/about/templates/about/index.html b/web/pgadmin/about/templates/about/index.html index eced428..61576cc 100644 --- a/web/pgadmin/about/templates/about/index.html +++ b/web/pgadmin/about/templates/about/index.html @@ -26,6 +26,7 @@
{{ config.APP_NAME }}
+ alt="{{ config.APP_NAME }} {{ _('logo') }}" + >
diff --git a/web/pgadmin/browser/static/js/wizard.js b/web/pgadmin/browser/static/js/wizard.js index d088aa7..2f2209a 100644 --- a/web/pgadmin/browser/static/js/wizard.js +++ b/web/pgadmin/browser/static/js/wizard.js @@ -1,6 +1,6 @@ define( - ['underscore', 'backbone', 'sources/pgadmin', 'pgadmin.browser'], -function(_, Backbone, pgAdmin, pgBrowser) { + ['underscore', 'backbone', 'sources/pgadmin', 'pgadmin.browser', 'sources/gettext'], +function(_, Backbone, pgAdmin, pgBrowser, gettext) { pgBrowser = pgBrowser || pgAdmin.Browser || {}; @@ -61,9 +61,11 @@ function(_, Backbone, pgAdmin, pgBrowser) { + " " + " <% if (this.options.show_header_cancel_btn) { %>" + "
" - + " " + + " " + " <% if (this.options.show_header_maximize_btn) { %>" - + " " + + " " + " <% } %>" + "
" + " <% } %>" @@ -72,7 +74,8 @@ function(_, Backbone, pgAdmin, pgBrowser) { + "
" + " <% if (this.options.show_left_panel) { %>" + "
" - + "
" + + " " + gettext("Left panel logo") + "
" + " <% } %>" + "
" @@ -105,19 +108,21 @@ function(_, Backbone, pgAdmin, pgBrowser) { + "
- pgAdmin 4 + {{ _('pgAdmin 4 logo') }}

{{ _('Feature rich') }} | {{ _('Maximises PostgreSQL') }} | {{ _('Open Source') }}

{{ _('pgAdmin is an Open Source administration and management tool for the PostgreSQL database. It includes a graphical administration interface, an SQL query tool, a procedural code debugger and much more. The tool is designed to answer the needs of developers, DBAs and system administrators alike.') }} diff --git a/web/pgadmin/misc/file_manager/static/js/utility.js b/web/pgadmin/misc/file_manager/static/js/utility.js index 95e57e1..d433b8e 100755 --- a/web/pgadmin/misc/file_manager/static/js/utility.js +++ b/web/pgadmin/misc/file_manager/static/js/utility.js @@ -534,7 +534,7 @@ var getFolderInfo = function(path, file_type) { // Display an activity indicator. $('.fileinfo').find('span.activity').html( - '' + '' + gettext(' ); var post_data = { diff --git a/web/pgadmin/misc/file_manager/templates/file_manager/index.html b/web/pgadmin/misc/file_manager/templates/file_manager/index.html index 064a128..980f5af 100755 --- a/web/pgadmin/misc/file_manager/templates/file_manager/index.html +++ b/web/pgadmin/misc/file_manager/templates/file_manager/index.html @@ -37,7 +37,8 @@

- + {{ _('Loading...') }}
diff --git a/web/pgadmin/templates/security/change_password.html b/web/pgadmin/templates/security/change_password.html index 48cb8cd..e7b3945 100644 --- a/web/pgadmin/templates/security/change_password.html +++ b/web/pgadmin/templates/security/change_password.html @@ -8,7 +8,8 @@ {{ render_field_with_errors(change_password_form.password, "password") }} {{ render_field_with_errors(change_password_form.new_password, "password") }} {{ render_field_with_errors(change_password_form.new_password_confirm, "password") }} - + {% endif %} diff --git a/web/pgadmin/templates/security/forgot_password.html b/web/pgadmin/templates/security/forgot_password.html index 4b9d4c8..3f0a087 100644 --- a/web/pgadmin/templates/security/forgot_password.html +++ b/web/pgadmin/templates/security/forgot_password.html @@ -7,7 +7,8 @@ {{ forgot_password_form.hidden_tag() }}
{{ render_field_with_errors(forgot_password_form.email, "text") }} - +
{% endif %} diff --git a/web/pgadmin/templates/security/login_user.html b/web/pgadmin/templates/security/login_user.html index cae4398..246fdf7 100644 --- a/web/pgadmin/templates/security/login_user.html +++ b/web/pgadmin/templates/security/login_user.html @@ -8,7 +8,8 @@
{{ render_field_with_errors(login_user_form.email, "text") }} {{ render_field_with_errors(login_user_form.password, "password") }} - +
diff --git a/web/pgadmin/templates/security/reset_password.html b/web/pgadmin/templates/security/reset_password.html index 7bd8113..2713a16 100644 --- a/web/pgadmin/templates/security/reset_password.html +++ b/web/pgadmin/templates/security/reset_password.html @@ -8,7 +8,8 @@
{{ render_field_with_errors(reset_password_form.password, "password") }} {{ render_field_with_errors(reset_password_form.password_confirm, "password") }} - +
{% endif %} diff --git a/web/pgadmin/templates/security/watermark.html b/web/pgadmin/templates/security/watermark.html index 3e7a4cc..69a1ffd 100644 --- a/web/pgadmin/templates/security/watermark.html +++ b/web/pgadmin/templates/security/watermark.html @@ -1,5 +1,7 @@ {% block watermark %}
- {{ config.APP_NAME }} + {{ config.APP_NAME }} {{ _('logo') }}
{% endblock %}