mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-10 23:45:58 -06:00
String improvements.
This commit is contained in:
parent
fd6c43b393
commit
69d8f01d01
@ -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)
|
||||
|
@ -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
|
||||
))
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user