mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-09 23:15:58 -06:00
Fix various mis-spellings of VACUUM. Fixes #2005
This commit is contained in:
parent
fb780bd81a
commit
6ff2fe64b8
@ -6,7 +6,7 @@ define(
|
||||
function($, _, S, pgAdmin, pgBrowser, Backform, alertify) {
|
||||
|
||||
|
||||
// VaccumSettings Collection to display all settings parameters as Grid
|
||||
// VacuumSettings Collection to display all settings parameters as Grid
|
||||
var VacuumCollectionControl = Backform.VacuumCollectionControl =
|
||||
Backform.Control.extend({
|
||||
|
||||
@ -198,7 +198,7 @@ function($, _, S, pgAdmin, pgBrowser, Backform, alertify) {
|
||||
}),
|
||||
deps: ['autovacuum_enabled']
|
||||
},{
|
||||
id: 'toast_autovacuum', label: '{{ _("Custom auto-vaccum?") }}',
|
||||
id: 'toast_autovacuum', label: '{{ _("Custom auto-vacuum?") }}',
|
||||
group: '{{ _("Toast Table") }}', mode: ['edit', 'create'],
|
||||
type: 'switch',
|
||||
disabled: function(m) {
|
||||
|
@ -16,24 +16,24 @@
|
||||
{
|
||||
"table":
|
||||
{
|
||||
"autovacuum_vacuum_threshold": ["autovacuum_vacuum_threshold", "VACCUM base threshold", "integer"],
|
||||
"autovacuum_vacuum_threshold": ["autovacuum_vacuum_threshold", "VACUUM base threshold", "integer"],
|
||||
"autovacuum_analyze_threshold": ["autovacuum_analyze_threshold", "ANALYZE base threshold", "integer"],
|
||||
"autovacuum_vacuum_scale_factor": ["autovacuum_vacuum_scale_factor", "VACCUM scale factor", "number"],
|
||||
"autovacuum_vacuum_scale_factor": ["autovacuum_vacuum_scale_factor", "VACUUM scale factor", "number"],
|
||||
"autovacuum_analyze_scale_factor": ["autovacuum_analyze_scale_factor", "ANALYZE scale factor", "number"],
|
||||
"autovacuum_vacuum_cost_delay": ["autovacuum_vacuum_cost_delay", "VACCUM cost delay", "integer"],
|
||||
"autovacuum_vacuum_cost_limit": ["autovacuum_vacuum_cost_limit", "VACCUM cost limit", "integer"],
|
||||
"autovacuum_vacuum_cost_delay": ["autovacuum_vacuum_cost_delay", "VACUUM cost delay", "integer"],
|
||||
"autovacuum_vacuum_cost_limit": ["autovacuum_vacuum_cost_limit", "VACUUM cost limit", "integer"],
|
||||
"autovacuum_freeze_max_age": ["autovacuum_freeze_max_age", "FREEZE maximum age", "integer"],
|
||||
"vacuum_freeze_min_age": ["autovacuum_freeze_min_age", "FREEZE minimum age", "integer"],
|
||||
"vacuum_freeze_table_age": ["autovacuum_freeze_table_age", "FREEZE table age", "integer"]
|
||||
},
|
||||
"toast":
|
||||
{
|
||||
"autovacuum_vacuum_threshold": ["autovacuum_vacuum_threshold", "VACCUM base threshold", "integer"],
|
||||
"autovacuum_vacuum_scale_factor": ["autovacuum_vacuum_scale_factor", "VACCUM scale factor", "number"],
|
||||
"autovacuum_vacuum_cost_delay": ["autovacuum_vacuum_cost_delay", "VACCUM cost delay", "integer"],
|
||||
"autovacuum_vacuum_cost_limit": ["autovacuum_vacuum_cost_limit", "VACCUM cost limit", "integer"],
|
||||
"autovacuum_vacuum_threshold": ["autovacuum_vacuum_threshold", "VACUUM base threshold", "integer"],
|
||||
"autovacuum_vacuum_scale_factor": ["autovacuum_vacuum_scale_factor", "VACUUM scale factor", "number"],
|
||||
"autovacuum_vacuum_cost_delay": ["autovacuum_vacuum_cost_delay", "VACUUM cost delay", "integer"],
|
||||
"autovacuum_vacuum_cost_limit": ["autovacuum_vacuum_cost_limit", "VACUUM cost limit", "integer"],
|
||||
"autovacuum_freeze_max_age": ["autovacuum_freeze_max_age", "FREEZE maximum age", "integer"],
|
||||
"vacuum_freeze_min_age": ["autovacuum_freeze_min_age", "FREEZE minimum age", "integer"],
|
||||
"vacuum_freeze_table_age": ["autovacuum_freeze_table_age", "FREEZE table age", "integer"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -165,7 +165,7 @@ RESET(
|
||||
{% endfor %}
|
||||
);
|
||||
{% endif %}
|
||||
{% endif %}{# ===== End check for custom autovaccum ===== #}
|
||||
{% endif %}{# ===== End check for custom autovacuum ===== #}
|
||||
{% endif %}{# ===== End block for check data definition ===== #}
|
||||
{% set old_comment = o_data.comment|default('', true) %}
|
||||
{% if (data.comment is defined and (data.comment != old_comment)) %}
|
||||
|
@ -165,7 +165,7 @@ RESET(
|
||||
{% endfor %}
|
||||
);
|
||||
{% endif %}
|
||||
{% endif %}{# ===== End check for custom autovaccum ===== #}
|
||||
{% endif %}{# ===== End check for custom autovacuum ===== #}
|
||||
{% endif %}{# ===== End block for check data definition ===== #}
|
||||
{% set old_comment = o_data.comment|default('', true) %}
|
||||
{% if (data.comment is defined and (data.comment != old_comment)) %}
|
||||
|
@ -165,7 +165,7 @@ RESET(
|
||||
{% endfor %}
|
||||
);
|
||||
{% endif %}
|
||||
{% endif %}{# ===== End check for custom autovaccum ===== #}
|
||||
{% endif %}{# ===== End check for custom autovacuum ===== #}
|
||||
{% endif %}{# ===== End block for check data definition ===== #}
|
||||
{% set old_comment = o_data.comment|default('', true) %}
|
||||
{% if (data.comment is defined and (data.comment != old_comment)) %}
|
||||
|
@ -4005,7 +4005,7 @@ msgid "Default value"
|
||||
msgstr ""
|
||||
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:201
|
||||
msgid "Custom auto-vaccum?"
|
||||
msgid "Custom auto-vacuum?"
|
||||
msgstr ""
|
||||
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:202
|
||||
|
@ -3449,7 +3449,7 @@ msgid "Default value"
|
||||
msgstr ""
|
||||
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:201
|
||||
msgid "Custom auto-vaccum?"
|
||||
msgid "Custom auto-vacuum?"
|
||||
msgstr ""
|
||||
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:202
|
||||
|
@ -4007,8 +4007,8 @@ msgid "Default value"
|
||||
msgstr "默认值"
|
||||
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:201
|
||||
msgid "Custom auto-vaccum?"
|
||||
msgstr "自定义 AUTO VACUUM"
|
||||
msgid "Custom auto-vacuum?"
|
||||
msgstr "自定义 AUTO VACUUM"
|
||||
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:202
|
||||
#: pgadmin/browser/server_groups/servers/databases/schemas/templates/schema/js/schema.js:218
|
||||
@ -6283,7 +6283,7 @@ msgid ""
|
||||
"Please click <a class=\"alert-link\" href=\"{0}\" "
|
||||
"target=\"_new\">here</a> for more\n"
|
||||
" information."
|
||||
msgstr "请点击 <a class=\"alert-link\" href=\"{0}\" target=\"_new\">这里</a> 查看更多信息"
|
||||
msgstr "请点击 <a class=\"alert-link\" href=\"{0}\" target=\"_new\">这里</a> 查看更多信息"
|
||||
|
||||
#: pgadmin/browser/templates/browser/js/browser.js:110
|
||||
msgid "Properties"
|
||||
@ -6673,7 +6673,7 @@ msgid ""
|
||||
"administrators alike."
|
||||
msgstr ""
|
||||
"pgAdmin是一个开源的PostgreSQL数据库管理工具。"
|
||||
"这些工具包括图形管理界面,SQL查询工具,存储过程代码调试器等等。"
|
||||
"这些工具包括图形管理界面,SQL查询工具,存储过程代码调试器等等。"
|
||||
"该工具旨在满足开发人员,DBA和系统管理员的需求。"
|
||||
|
||||
#: pgadmin/dashboard/templates/dashboard/welcome_dashboard.html:19
|
||||
|
Loading…
Reference in New Issue
Block a user