Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.7] Minor messaging improvements #2057

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -494,13 +494,13 @@ public class LoggingLocalizationResource extends ListResourceBundle {
{ "corrupt_object_referenced_through_mapping", "corrupt object referenced through mapping: {0}" },
{ "corrupt_object", "corrupt object: {0}" },

{ "encryptor_decrypt_old_algorithm", "Database password used in {0} was encrypted by deprecated algorithm." +
"\nIt is recommended to re-encrypt it by `passwordUpdate.sh` from eclipselink.zip bundle."},
{ "encryptor_decrypt_old_algorithm_without_session_name", "Database password was encrypted by deprecated algorithm." +
"\nIt is recommended to re-encrypt it by `passwordUpdate.sh` from eclipselink.zip bundle."},
{ "encryptor_decrypt_old_algorithm", "The Database password used in {0} was encrypted by a deprecated algorithm." +
"\nReencrypt it by `passwordUpdate.sh` from eclipselink.zip bundle."},
{ "encryptor_decrypt_old_algorithm_without_session_name", "The Database password was encrypted by a deprecated algorithm." +
"\nReencrypt it by `passwordUpdate.sh` from eclipselink.zip bundle."},
{ "encryptor_script_usage", "Usage is `passwordUpdate.sh|.cmd -ip <old encrypted password>`"},
{ "encryptor_script_description", "This application internally decrypt old encrypted password used by some previous version EclipseLink and encrypt it by latest algorithm."},
{ "encryptor_script_output", "Re-encrypted password is: {0}"}
{ "encryptor_script_description", "This application internally decrypts an old encrypted password that was used by a previous EclipseLink version and encrypts it by the latest algorithm."},
{ "encryptor_script_output", "Reencrypted password is: {0}"}

};

Expand Down
Loading