Martin Peřina has uploaded a new change for review. Change subject: webadmin: Rename "kdump detection" to "kdump integration" ......................................................................
webadmin: Rename "kdump detection" to "kdump integration" Renames term "kdump detection" to "kdump integration" in user visible parts (UI and logs). Change-Id: I4bdcf78eb27902951f0298b13bf671bebd828fc6 Bug-Url: https://bugzilla.redhat.com/1079821 Signed-off-by: Martin Perina <[email protected]> --- M backend/manager/modules/dal/src/main/resources/bundles/AppErrors.properties M backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties M frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties M frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java M frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties 5 files changed, 12 insertions(+), 14 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/78/29478/1 diff --git a/backend/manager/modules/dal/src/main/resources/bundles/AppErrors.properties b/backend/manager/modules/dal/src/main/resources/bundles/AppErrors.properties index 703708f..81bbfb0 100644 --- a/backend/manager/modules/dal/src/main/resources/bundles/AppErrors.properties +++ b/backend/manager/modules/dal/src/main/resources/bundles/AppErrors.properties @@ -1218,6 +1218,6 @@ ACTION_TYPE_FAILED_RNG_SOURCE_NOT_SUPPORTED=Cannot ${action} ${type}. Random Number Generator device is not supported in cluster. ACTION_TYPE_RNG_MUST_BE_SPECIFIED=Cannot ${action} ${type}. Random Number Generator must be specified in parameters. -KDUMP_DETECTION_NOT_ENABLED_FOR_VDS=Cannot ${action} ${type}. Kdump detection support is not enabled for host '${VdsName}'. -KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Cannot ${action} ${type}. Kdump detection support is not properly configured on host '${VdsName}'. +KDUMP_DETECTION_NOT_ENABLED_FOR_VDS=Cannot ${action} ${type}. Kdump integration is not enabled for host '${VdsName}'. +KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Cannot ${action} ${type}. Kdump integration is not properly configured on host '${VdsName}'. diff --git a/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties b/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties index bc974a1..1b9d26d 100644 --- a/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties +++ b/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties @@ -831,8 +831,8 @@ ISCSI_BOND_REMOVE_SUCCESS=iSCSI bond '${IscsiBondName}' was removed from Data Center '${StoragePoolName}' ISCSI_BOND_REMOVE_FAILED=Failed to remove iSCSI bond '${IscsiBondName}' from Data Center '${StoragePoolName}' -FENCE_KDUMP_LISTENER_IS_NOT_ALIVE=Kdump detection for host '${VdsName}' had started, but fence_kdump listener is not running. -KDUMP_FLOW_DETECTED_ON_VDS=Kdump flow detected on host '${VdsName}'. -KDUMP_FLOW_NOT_DETECTED_ON_VDS=Kdump flow not detected on host '${VdsName}'. +FENCE_KDUMP_LISTENER_IS_NOT_ALIVE=Unable to determine if Kdump is in progress on host '${VdsName}', because fence_kdump listener is not running. +KDUMP_FLOW_DETECTED_ON_VDS=Kdump flow in progress on host '${VdsName}'. +KDUMP_FLOW_NOT_DETECTED_ON_VDS=Kdump flow not in progress on host '${VdsName}'. KDUMP_FLOW_FINISHED_ON_VDS=Kdump flow finished on host '${VdsName}'. -KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Kdump detection is enabled for host '${VdsName}', but kdump is not configured properly on host. +KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Kdump integration is enabled for host '${VdsName}', but kdump is not configured properly on host. diff --git a/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties b/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties index e91cf25..745d27f 100644 --- a/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties +++ b/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties @@ -1043,6 +1043,5 @@ ACTION_TYPE_FAILED_RNG_SOURCE_NOT_SUPPORTED=Cannot ${action} ${type}. Random Number Generator device is not supported in cluster. ACTION_TYPE_RNG_MUST_BE_SPECIFIED=Cannot ${action} ${type}. Random Number Generator must be specified in parameters. -KDUMP_DETECTION_NOT_ENABLED_FOR_VDS=Cannot ${action} ${type}. Kdump detection support is not enabled for host '${VdsName}'. -KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Cannot ${action} ${type}. Kdump detection support is not properly configured on host '${VdsName}'. - +KDUMP_DETECTION_NOT_ENABLED_FOR_VDS=Cannot ${action} ${type}. Kdump integration is not enabled for host '${VdsName}'. +KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Cannot ${action} ${type}. Kdump integration is not properly configured on host '${VdsName}'. diff --git a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java index 4759eea..3e0bf9e 100644 --- a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java +++ b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java @@ -578,7 +578,7 @@ @DefaultStringValue("Disable policy control of power management") String hostPopupPmDisableAutoPM(); - @DefaultStringValue("Detect kdump flow") + @DefaultStringValue("Kdump integration") String hostPopupPmKdumpDetection(); @DefaultStringValue("Test") @@ -1503,7 +1503,7 @@ @DefaultStringValue("Boot Time") String bootTimeHostGeneral(); - @DefaultStringValue("Kdump Status") + @DefaultStringValue("Kdump Integration") String kdumpStatus(); @DefaultStringValue("SELinux mode") diff --git a/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties b/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties index b87bb0e..45e2294 100644 --- a/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties +++ b/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/AppErrors.properties @@ -1190,6 +1190,5 @@ ACTION_TYPE_FAILED_RNG_SOURCE_NOT_SUPPORTED=Cannot ${action} ${type}. Random Number Generator device is not supported in cluster. ACTION_TYPE_RNG_MUST_BE_SPECIFIED=Cannot ${action} ${type}. Random Number Generator must be specified in parameters. -KDUMP_DETECTION_NOT_ENABLED_FOR_VDS=Cannot ${action} ${type}. Kdump detection support is not enabled for host '${VdsName}'. -KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Cannot ${action} ${type}. Kdump detection support is not properly configured on host '${VdsName}'. - +KDUMP_DETECTION_NOT_ENABLED_FOR_VDS=Cannot ${action} ${type}. Kdump integration is not enabled for host '${VdsName}'. +KDUMP_DETECTION_NOT_CONFIGURED_ON_VDS=Cannot ${action} ${type}. Kdump integration is not properly configured on host '${VdsName}'. -- To view, visit http://gerrit.ovirt.org/29478 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4bdcf78eb27902951f0298b13bf671bebd828fc6 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Martin Peřina <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
