diff --git a/web/pgadmin/browser/server_groups/servers/ppas.py b/web/pgadmin/browser/server_groups/servers/ppas.py index 1642c4b77..19fab4d39 100644 --- a/web/pgadmin/browser/server_groups/servers/ppas.py +++ b/web/pgadmin/browser/server_groups/servers/ppas.py @@ -17,4 +17,4 @@ class PPAS(ServerType): return ver.startswith("EnterpriseDB") # Default Server Type -PPAS('ppas', gettext("Postgres Plus Advanced Server"), 2) +PPAS('ppas', gettext("EDB Advanced Server"), 2) diff --git a/web/pgadmin/browser/server_groups/servers/types.py b/web/pgadmin/browser/server_groups/servers/types.py index f576ee4b7..ae38e6452 100644 --- a/web/pgadmin/browser/server_groups/servers/types.py +++ b/web/pgadmin/browser/server_groups/servers/types.py @@ -50,10 +50,10 @@ class ServerType(object): st.utility_path = paths.register( 'bin_paths', st.stype + '_bin_dir', - _("{0} bin path").format(st.stype.upper()), + _("{0} Binary Path").format(st.desc), 'text', "", category_label=_('Binary paths'), help_str=_( - "Set the PATH where the {0} binary utilities can be found...".format( + "Path to the {0} binary utilities.".format( st.desc ) ) @@ -104,7 +104,7 @@ class ServerType(object): res = 'psql' else: raise Exception( - _("Couldn't find the utility for the operation '%s'".format( + _("Could not find the utility for the operation '%s'".format( operation )) )