From 04428b957201446bf5d2e320e384384cb31633f0 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:48 -0500 Subject: [PATCH 001/201] New translations MessageBundle.properties (Arabic) --- .../resources/MessageBundle_ar_SA.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_ar_SA.properties diff --git a/src/main/resources/MessageBundle_ar_SA.properties b/src/main/resources/MessageBundle_ar_SA.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_ar_SA.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 1964f55c62a0d602e42665193a15465a75b33f94 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:50 -0500 Subject: [PATCH 002/201] New translations MessageBundle.properties (Chinese Simplified) --- .../resources/MessageBundle_zh_CN.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_zh_CN.properties diff --git a/src/main/resources/MessageBundle_zh_CN.properties b/src/main/resources/MessageBundle_zh_CN.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_zh_CN.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 5a77f488ddbcc4595f44a8bb356531db3c2b0127 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:51 -0500 Subject: [PATCH 003/201] New translations MessageBundle.properties (Chinese Traditional) --- .../resources/MessageBundle_zh_TW.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_zh_TW.properties diff --git a/src/main/resources/MessageBundle_zh_TW.properties b/src/main/resources/MessageBundle_zh_TW.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_zh_TW.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 4dfaaadf3646afc13d4036a447b3ce09741abdc2 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:52 -0500 Subject: [PATCH 004/201] New translations MessageBundle.properties (French) --- .../resources/MessageBundle_fr_FR.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_fr_FR.properties diff --git a/src/main/resources/MessageBundle_fr_FR.properties b/src/main/resources/MessageBundle_fr_FR.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_fr_FR.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 0a3700286ebace9684c04e2d92efc9708d2256ef Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:53 -0500 Subject: [PATCH 005/201] New translations MessageBundle.properties (German) --- .../resources/MessageBundle_de_DE.properties | 286 +++++++++--------- 1 file changed, 145 insertions(+), 141 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index e7488a22d..d06a16094 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -1,221 +1,225 @@ +#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Sind Fetch Dateien erlaubt? [{}] -serialization_allowed=Serialisierung ist: [{}] -parsing_bagit_profile_info_section=Lese Abschnitt BagIt-Profile-Info -identifier=Identifier hat den Wert [{}] -source_organization=Source-Organization hat den Wert [{}] -contact_name=Contact-Name hat den Wert [{}] -contact_email=Contact-Email hat den Wert [{}] -external_description=External-Description hat den Wert [{}] -version=Version hat den Wert [{}] -parsing_bag_info=Lese Abschnitt Bag-Info -required_manifest_types=Erforderliche Manifeste {} -acceptable_serialization_mime_types=Akzeptierte MIME Typen f\u00fcr die Serialisierung sind {} -required_tagmanifest_types=Erforderliche Tag Manifeste sind {} -tag_files_required=Erforderliche Tag Dateien sind {} -acceptable_bagit_versions=Akzeptierte bagit Versionen sind {} +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=Das Verzeichnis data kann alles beinhalten, inklusive einer anderen bag. Es wird allerdings empfohlen, mehrere bags zusammenzufassen. -different_case=Eine bag kann mehrere Dateien mit unterschiedlicher Gro\u00df- und Kleinschreibung enthalten. Dies kann zu Problemen mit bestimmten Dateisystemen f\u00fchren, z.B. mit dem von Apple verwendeten HFS. -different_normalization=Eine bag kann mehrere Dateien mit unterschiedlicher Normalisierung enthalten. Dies kann bei einigen Dateisystemen zu Problemen bei der Verifizierung f\u00fchren und den Benutzer verwirren. -extra_lines_in_bagit_files=Laut bagit Spezifikation d\u00fcrfen nur 2 Zeilen enthalten sein. Dennoch haben sich einige Implementierungen daf\u00fcr entschieden dies zu ignorieren, was zu Kompatibilit\u00e4tsproblemen f\u00fchren kann. -leading_dot_slash=Eine Manifest Datei f\u00fchrt alle Dateien im Verzeichnis data relativ zum Wurzelverzeichnis der bag auf. Daher ist es nicht notwendig, die Dateipfade mit einem Punkt zu beginnen. -non_standard_algorithm=Der verwendete Algorithmus zur Pr\u00fcfsummenberechnung ist nicht Teil der Standard Java Laufzeitumgebung. Die Verwendung von SHA512 wird empfohlen. -md5sum_tool_generated_manifest=Das Manifest wurde mit Hilfe von Werkzeugen zur Pr\u00fcfsummenberechnung erstellt, die z.B. Teil des GNU Coreutils Paketes sind (md5sum, sha1sum, etc.), hier als 'md5sum' bezeichnet. Diese erzeugen minimale Unterschiede in den erstellten Manifesten, was zu Problemen mit einigen Implementierungen f\u00fchren kann. -missing_tag_manifest=Das Tag Manifest verhindert unvollst\u00e4ndige Payload Manifeste sowie andere potentielle Probleme. Daher wird empfohlen, dass es Teil jeder bag ist. -old_bagit_version=Die verwendete Version der bagit Spezifikation ist veraltet. Es wird empfohlen, auf die aktuellste Version zu umzusteigen. -os_specific_files=Dateien die vom Betriebssystem f\u00fcr eigene Zwecke erzeugt wurden. Diese sind nicht zwischen verschiedenen Betriebssystemversionen portierbar und sollten nicht im Manifest aufgef\u00fchrt werden. Beispiele hierf\u00fcr sind Thumbs.db unter Windows oder .DS_Store unter OS X. -payload_oxum_missing=Es wird empfohlen, die Eigenschaft Payload-Oxum in den Metadaten jeder bag zu hinterlegen, da diese eine schnelle \u00dcberpr\u00fcfung der bag erlaubt. -tag_files_encoding=Es wird empfohlen UTF-8 zu verwenden. -weak_checksum_algorithm=Der verwendete Algorithmus zur Pr\u00fcfsummenerzeugung ist angreifbar. Wir empfehlen die Verwendung von SHA-512. +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. #for BagLinter.java -checking_encoding_problems=Pr\u00fcfe auf Probleme mit der Zeichenkodierung. -checking_latest_version=Pr\u00fcfe auf aktuellste Version. -checking_manifest_problems=Pr\u00fcfe Manifeste auf Probleme. -checking_metadata_problems=Pr\u00fcfe bag Metadaten auf Probleme. -skipping_check_extra_lines=\u00dcberspringe Pr\u00fcfung auf Extrazeilen in bagit Dateien. -checking_extra_lines=Pr\u00fcfe ob [{}] mehr als 2 Zeilen enth\u00e4lt. -extra_lines_warning=The bagit Spezifikation sagt aus, dass bagit.txt genau 2 Zeilen enthalten darf. Die vorliegende bagit.txt enth\u00e4lt [{}] Zeilen. Dies kann von einigen Implementierungen ignoriert werden oder zu Kombatibilit\u00e4tsproblemen f\u00fchren. +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Pr\u00fcfe ob Fetch Dateien f\u00fcr die bag [{}] erlaubt sind. -checking_metadata_entry_required=Pr\u00fcfe ob [{}] in den bag Metadaten ben\u00f6tigt wird. -check_values_acceptable=Pr\u00fcfe ob alle f\u00fcr [{}] aufgef\u00fchrten Werte akzeptiert werden k\u00f6nnen. -check_required_manifests_present=Pr\u00fcfe ob alle ben\u00f6tigten Manifeste vorhanden sind. -required_tag_manifest_type_not_present=Ben\u00f6tigtes Tag Manifest vom Typ [{}] konnte nicht gefunden werden. -required_manifest_type_not_present=Ben\u00f6tigtes Manifest vom Typ [{}] konnte nicht gefunden werden. -checking_required_tag_file_exists=Pr\u00fcfe ob alle Tag Dateien vorhanden sind. +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] ist nicht in der Liste der akzeptieren Versionen {}. +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Das im Profil auf\u00fchrte Metadatum [{}] ist notwendig, wurde aber nicht gefunden! +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch Datei konnte nicht in der bag [{}] gefunden werden. +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! -#for MetadataBalueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Laut Profil sind g\u00fcltige Werte f\u00fcr die Eigenschaft [{}]: {}. Der aufgef\u00fchrte Wert [{}] befindet sich nicht darunter. +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Die ben\u00f6tigte Tag Datei [{}] konnte nicht gefunden werden. +required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag Dateien sind [{}] kodiert. Wir empfehlen stattdessen die Verwendung von UTF-8. +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Die bag [{}] enth\u00e4lt kein Tag Manifest, welches f\u00fcr jede bag empfohlen wird. -different_case_warning=Im Manifest [{}] wird der Pfad [{}] mit unterschiedlicher Gro\u00df- und Kleinschreibung aufgef\u00fchrt. Dies kann bei einigen Dateisystemen zu Problemen f\u00fchren. -manifest_line_violated_spec_error=Das Manifest enth\u00e4lt die Zeile [{}], welche nicht dem geforderten Schema folgt. -md5sum_generated_line_warning=Der Pfad [{}] beginnt mit einem *, was bedeutet, dass der Eintrag nicht mit einem bagit-Werkzeug erstellt wurde. Es wird empfohlen, den * entsprechend der bagit Spezifikation zu entfernen. -cannot_access_parent_path_error=Zugriff auf \u00fcbergeordnetes Verzeichnis von [{}] nicht m\u00f6glich. -different_normalization_in_manifest_warning=Die Datei [{}] ist anders normalisiert f\u00fcr die Manifest Datei erforderlich. -bag_within_bag_warning=Wir empfehlen keine bag innerhalb einer anderen bag zu speichern, da dies bekannterma\u00dfen zu Problemen f\u00fchren kann. -leading_dot_slash_warning=Manifest [{}] enth\u00e4lt in Zeile [{}] einen nicht normalisierten Pfad. -os_specific_files_warning=Manifest [{}] enth\u00e4lt in Zeile [{}] eine betriebssystemspezifische Datei. -weak_algorithm_warning=Pr\u00fcfsummenalgorithmus [{}] ist als angreifbar bekannt. Dank der Fortschritte aktueller Computersysteme verursacht die Erzeugung einer st\u00e4rkeren Pr\u00fcfsumme nur minimale Verz\u00f6gerung. -non_standard_algorithm_warning=Der verwendete Pr\u00fcfsummenalgorithmus [{}] ist nicht Teil der Standard Java Laufzeitumgebung. Dies erschwert das Lesen der bag auf einigen Systemen. Die Verwendung von SHA-512 wird empfohlen. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. #for MetadataChecker.java -missing_payload_oxum_warning=Die Eigenschaft Payload-Oxum wurde nicht in den bag Metadaten gefunden. Dies verhindert eine schnelle \u00dcberpr\u00fcfung der bag. +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Die verwendete bagit Version [{}] ist veraltet. Die akuelle Version ist [{}]. +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=\u00dcberspringe [{}] da versteckte Dateien ignoriert werden. -skipping_ignored_directory=\u00dcberspringe [{}] da versteckte Verzeichnisse ignoriert werden. +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Erstelle bag in Version: [{}] im Verzeichnis: [{}]. -creating_payload_manifests=Erstelle Payload Manifest(e). -creating_tag_manifests=Erstelle Tag Manifest(e). -calculating_payload_oxum=Berechne Payload Oxum des Datenverzeichnisses [{}]. -creating_metadata_file=Erstelle bag Metadaten (bag-info.txt oder package-info.txt). +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=F\u00fcge dem Manifest den Eintrag [{}] mit Pr\u00fcfsumme [{}] hinzu. +adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] wird nicht unterst\u00fctzt! +algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Lese [{}] f\u00fcr die Bestimmung von Version und Zeichenkodierung. -bagit_version=BagIt-Version ist [{}]. -tag_file_encoding=Zeichenkodierung in Tag Datei ist [{}]. -invalid_bagit_text_file_error=bagit.txt MUSS die Eigenschaften 'BagIt-Version' UND 'Tag-File-Character-Encoding' enthalten! -bom_present_error=Datei [{}] enth\u00e4lt eine Byte-Reihenfolge-Markierung, was laut bagit Spezifikation nicht zul\u00e4ssig ist! -strict_only_two_lines_error=bagit.txt MUSS genau 2 Zeilen enthalten. Zus\u00e4tzliche gefundene Zeile(n): [{}] -strict_first_line_error=Die erste Zeile in bagit.txt muss dem Schema [BagIt-Version: ] entsprechen. Stattdessen wurde die Zeile [{}] gefunden. Mehr Informationen findet man in der bagit Spezifikation. -strict_second_line_error=Die zweite Zeile in bagit.txt muss dem Schema [Tag-File-Character-Encoding: ] entsprechen. Stattdessen wurde die Zeile [{}] gefunden. Mehr Informationen findet man in der bagit Spezifikation. +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. #for UnparsableVersionException.java -unparsable_version_error=Version muss im Format MAJOR.MINOR angegeben werden. Stattdessen wurde der Wert [{}] gefunden. +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Versuche [{}] zu lesen. -read_fetch_file_line=Lese URL [{}] mit L\u00e4nge [{}] und Pfad [{}] aus Fetch Datei [{}]. -invalid_fetch_file_line_error=Zeile [{}] ist kein g\u00fcltiger fetch.txt Eintrag. Jede Zeile muss nach dem Schema aufgebaut sein. +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Schl\u00fcssel [{}] mit Wert [{}] in Datei [{}] gefunden. Verwende regul\u00e4ren Ausdruck [{}] f\u00fcr die Aufspaltung. -found_indented_line=Einger\u00fcckte Zeile gefunden - f\u00fcge sie mit Schl\u00fcssel [{}] zusammen. -malformed_key_value_line_error=Zeile [{}] entspricht nicht der bagit Spezifikation f\u00fcr eine Tag Datei. M\u00f6glicherweise sollte die Zeile per Leerzeichen oder Tab einger\u00fcckt werden oder es wurde kein Doppelpunkt verwendet, um einen Schl\u00fcssel von einem Wert zu trennen? Es muss das Schema {} verwendet werden. Falls ein Wert in einer neuen Zeile fortgesetzt wird, muss diese per Leerzeichen oder Tab einger\u00fcckt werden. +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Versuche die Manifeste zu finden und zu lesen. -found_tagmanifest=Tag Manifest [{}] gefunden. -found_payload_manifest=Payload Manifest [{}] gefunden. -reading_manifest=Lese Manifest [{}]. +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Versuche bag Metadaten Datei zu lesen. -found_metadata_file=Metadaten Datei [{}] gefunden. +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Es wurde ein Pfad gefunden, der nicht mit einem bagit-Werkzeug erstellt wurde. Alle * werden aus dem Pfad entfernt. Bitte entfernen Sie auch alle * aus den Manifesten! -blackslash_used_as_path_separator_error=[{}] ist ung\u00fcltig, da zur Pfadtrennung [\\] verwendet wird! -malicious_path_error=[{}] verweist ung\u00fcltigerweise auf eine Datei au\u00dferhalb der bag! -invalid_url_format_error=URL [{}] is ung\u00fcltig! +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Pr\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] g\u00fcltig ist. -checking_payload_checksums=Pr\u00fcfe Pr\u00fcfsummen der/des Payload Manifeste(s). -checking_tag_file_checksums=Pr\u00fcfe Pr\u00fcfsummen der/des Tag Manifeste(s). -checksums_not_matching_error=[{}] Fehler gefunden. Mindestens ein Fehler ist auf fehlerhafte Pr\u00fcfsummen zur\u00fcckzuf\u00fchren. -checking_bag_is_complete=Pr\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] vollst\u00e4ndig ist. +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=Der Dateiname [{}] verwendet eine andere Normalisierung als das unterliegende Dateisystem! -error_reading_normalized_file=Fehler beim Zugriff auf [{}], um zu pr\u00fcfen, ob eine Datei in diesem Verzeichnis dem normalisierten Dateinamen [{}] entspricht! +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Pr\u00fcfe Datei [{}] auf Pr\u00fcfsumme [{}]. +checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=Datei [{}] sollte eine [{}] Pr\u00fcfsumme mit dem Wert [{}] aufweisen. Die errechnete Pr\u00fcfsumme ist jedoch [{}]. +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=Datei [{}] hat eine Gr\u00f6\u00dfe von [{}] Byte. +file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Pr\u00fcfe ob alle [{}] Eintr\u00e4ge in fetch.txt im Verzeichnis [{}] existieren. -fetch_item_missing_error=Fetch Eintrag [{}] wurde nicht geladen! -file_should_exist_error=Datei [{}] sollte existieren, tut es aber nicht! -checking_payload_directory_exists=Pr\u00fcfe ob ein spezielles Payload Verzeichnis existiert (nur Version 0.97 und \u00e4lter). +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag enth\u00e4lt kein Payload Manifest! +missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=Datei [{}] befindet sich im Payload Verzeichnis, ist aber nicht im Manifest manifest-{}.txt aufgef\u00fchrt! -file_in_all_manifests=[{}] befindet sich in allen Manifesten. -file_not_in_any_manifest_error=Datei [{}] befindet sich im Payload Verzeichnis, ist aber in keinem Manifest aufgef\u00fchrt! +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Lese alle Dateien aus allen Manifesten. -get_listing_in_manifest=Lese Dateien und Pr\u00fcfsummen die in [{}] aufgef\u00fchrt sind. -check_all_files_in_manifests_exist=Pr\u00fcfe ob alle Dateien aus allen Manifesten existieren. -missing_payload_files_error=Manifeste enthalten Datei(en) {} die nicht existieren! -checking_file_in_at_least_one_manifest=Pr\u00fcfe ob alle Payload Dateien (Dateien im Verzeichnis [{}]) in mindestens einem Manifest aufgef\u00fchrt sind. -checking_file_in_all_manifests=Pr\u00fcfe ob alle Payload Dateien (Dateien im Verzeichnis [{}]) in allen Manifesten aufgef\u00fchrt sind. +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Eigenschaft Payload-Oxum [{}] f\u00fcr bag [{}] gefunden. -payload_oxum_missing_error=Eigenschaft Payload-Oxum nicht in den bag metadaten gefunden! -parse_size_in_bytes=Suche in Wert [{}] nach der Gesamtanzahl an Bytes. -parse_number_of_files=Suche in Wert [{}] nach der Gesamtanzahl an Dateien im Payload Verzeichnis. -compare_payload_oxums=Angegebener Wert der Eigenschaft Payload-Oxum : [{}], berechneter Wert von Payload-Oxum : [{}.{}] f\u00fcr das Payload Verzeichnis [{}]. -invalid_total_size_error=Ung\u00fcltige Gesamtanzahl an Bytes. Ertwartet wurde [{}], berechnet wurde [{}]! -invalid_file_cound_error=Ung\u00fcltige Gesamtanzahl an Dateien. Erwartet wurde [{}], berechnet wurde [{}]! +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Schreibe bagit.txt nach [{}] -writing_line_to_file=Schreibe Zeile [{}] nach [{}] +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Schreibe Payload Dateien. -upsert_payload_oxum=F\u00fcge Eigenschaft Payload-Oxum hinzu. -writing_bagit_file=Schreibe Datei bagit.txt . -writing_payload_manifests=Schreibe das/die Payload Manifest(e). -writing_bag_metadata=Schreibe bag Metadaten. -writing_fetch_file=Schreibe Fetch Datei. -writing_tag_manifests=Schreibe Tag Manifest(e). +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Schreibe fetch.txt nach [{}]. +writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Schreibe Manifest nach [{}]. +writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Schreibe bag Metdaten Datei [{}] nach [{}]. +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Schreibe Payload Datei [{}] nach [{}]. -skip_fetch_item_when_writing_payload=\u00dcberspringe Payload Datei {} da sie sich in der Fetch Liste befindet. \ No newline at end of file +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 2f51b60f19ade01ada2b79150f9423d567256a3b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:54 -0500 Subject: [PATCH 006/201] New translations MessageBundle.properties (Italian) --- .../resources/MessageBundle_it_IT.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_it_IT.properties diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 42f8fb7ea00e95114b6c9b723aa0548772b6d65c Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:55 -0500 Subject: [PATCH 007/201] New translations MessageBundle.properties (Japanese) --- .../resources/MessageBundle_ja_JP.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_ja_JP.properties diff --git a/src/main/resources/MessageBundle_ja_JP.properties b/src/main/resources/MessageBundle_ja_JP.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_ja_JP.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From cff97c318cf3548a2d4e83d22482899a0ec16c46 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:56 -0500 Subject: [PATCH 008/201] New translations MessageBundle.properties (Portuguese) --- .../resources/MessageBundle_pt_PT.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_pt_PT.properties diff --git a/src/main/resources/MessageBundle_pt_PT.properties b/src/main/resources/MessageBundle_pt_PT.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_pt_PT.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 65fe57feb876b42b8ee49391603dce8b74492a24 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:57 -0500 Subject: [PATCH 009/201] New translations MessageBundle.properties (Romanian) --- .../resources/MessageBundle_ro_RO.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_ro_RO.properties diff --git a/src/main/resources/MessageBundle_ro_RO.properties b/src/main/resources/MessageBundle_ro_RO.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_ro_RO.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 823738492490aef001aedc02ad041396935a0a8f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:58 -0500 Subject: [PATCH 010/201] New translations MessageBundle.properties (Russian) --- .../resources/MessageBundle_ru_RU.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_ru_RU.properties diff --git a/src/main/resources/MessageBundle_ru_RU.properties b/src/main/resources/MessageBundle_ru_RU.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_ru_RU.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 73dc48f1e88e7d3b656c28cd1d3262727e6e2425 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 6 Feb 2018 13:04:59 -0500 Subject: [PATCH 011/201] New translations MessageBundle.properties (Spanish) --- .../resources/MessageBundle_es_ES.properties | 43 ++++++++++--------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index c63efd1d3..580cde10b 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -24,22 +24,22 @@ different_case=El bag contiene dos archivos que difieren s\u00f3lo en caso. Esto different_normalization=El bag contiene dos archivos que difieren s\u00f3lo en la normalizaci\u00f3n. Esto puede causar que la verificaci\u00f3n falle en algunos sistemas, y confusi\u00f3n del usuario general. extra_lines_in_bagit_files=Las especificaciones bagits dicen que s\u00f3lo deben contener 2 l\u00edneas. Sin embargo, algunas implementaciones han decidido ignorar esto lo que puede causar problemas de compatibilidad leading_dot_slash=Un manifiesto lista todos los archivos de data como relativo al directorio ra\u00edz de bolsa, es in\u00fatil por lo tanto especificarlo con un punto. -non_standard_algorithm=El algoritmo de suma de comprobaci\u00f3n usado no viene de un est\u00e1ndar con una rutina de Java. Considera usar SHA512 en su lugar. -md5sum_tool_generated_manifest=El manifiesto fue creado usando utilidades de suma de comprobaci\u00f3n tales como las contenidas en el paquete GNU Coreutils (md5sum, sh1sum, etc), colectivamente referido aqu\u00ed como 'md5sum'. Esto crea peque\u00f1as diferencias en los manifestos generados lo que puede causar problemas en algunas implementaciones. -missing_tag_manifest=El manifiesto de etiqueta protege contra un manifiesto de carga truncada as\u00ed como otros problemas potenciales y siempre es recomendado que sea incluido. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. old_bagit_version=La versi\u00f3n especificaci\u00f3n bagit no es la m\u00e1s nueva. Considera convertir a la \u00faltima versi\u00f3n. os_specific_files=Archivos creados por el sistema operativo (SO) para su propio uso. Esos son no-portables a trav\u00e9s de la versiones SO y no deber\u00edan ser incluidas en ning\u00fan manifiesto. Ejemplos son Thumb.db en Windows o .DS_Store en OS X payload_oxum_missing=Es recomendado siempre incluir la Carga-Oxum en el metadata bag debido a que permite para una "r\u00e1pida verificaci\u00f3n" del bag. tag_files_encoding=Es recomendado siempre usar UTF-8. -weak_checksum_algorithm=El algoritmo de suma de verificaci\u00f3n usado es conocido por ser d\u00e9bil. Recomendamos usar SHA512. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. #for BagLinter.java checking_encoding_problems=Comprobando problemas de codificaci\u00f3n. -checking_latest_version=comprobando por la \u00faltima versi\u00f3n. -checking_manifest_problems=comprobando manifiestos por problemas. -checking_metadata_problems=comprobando metadata bag por problemas. -skipping_check_extra_lines=saltar verificaci\u00f3n de extra lineas en archivos bagit. -checking_extra_lines=comprobar si [{}] contiene m\u00e1s de dos l\u00edneas. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. extra_lines_warning=La especificaciones bagit dice que el archivo bagit.txt debe contener exactamente 2 l\u00edneas. Sin embargo, encontramos [{}] l\u00edneas, algunas implementaciones ignorar\u00e1n esto pero puede causar problemas incompatibilidad con otras herramientas. #for BagProfileChecker.java @@ -47,8 +47,8 @@ checking_fetch_file_allowed=Comprobar si el archivo de recuperaci\u00f3n es perm checking_metadata_entry_required=Comprobar si [{}] es requerido en el metadata bag. check_values_acceptable=Comprobar si todo los valores listados para [{}] son aceptables. check_required_manifests_present=Comprobar si todos los manifiestos requeridos est\u00e1n presentes. -required_tag_manifest_type_not_present=Tipo requerido de tagmanifest [{}] no estaba presente. -required_manifest_type_not_present=Tipo de manifesto requerido [{}] no estaba presente. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Tipo de manifesto requerido [{}] no estaba presente. checking_required_tag_file_exists=Comprobar si todo los archivos de etiqueta requerida existen. #for BagitVersionIsNotAcceptableException.java @@ -58,13 +58,16 @@ bagit_version_not_acceptable_error=Versi\u00f3n [{}] no est\u00e1 en la lista ac required_metadata_field_not_present_error=\u00a1Campo que especifica metadata [{}] es requerido pero no se encontr\u00f3\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Archivo de respaldo fue encontrado en bag [{}] +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! -#for MetadataBalueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Perfil especifica valores aceptables para [{}] son {} pero encontr\u00f3 [{}] +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Etiqueta de archivo requerida [{}] no fue encontrada +required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java tag_files_not_encoded_with_utf8_warning=Archivos de etiqueta se codifican con [{}]. Recomendamos siempre usar UTF-8 en su lugar. @@ -75,7 +78,7 @@ different_case_warning=En manifiesto [{}], ruta [{}] es igual a otra excepto par manifest_line_violated_spec_error=Manifiesto contiene l\u00ednea [{}] la cual no sigue la forma especificada de md5sum_generated_line_warning=Ruta [{}] comienza con un *, lo cual significa que fue generado con una herramienta no bagit. Es recomendado remover el * para poder cumplir con las especificaciones bagit. cannot_access_parent_path_error=No se pudo acceder a la carpeta principal de [{}]. -different_normalization_in_manifest_warning=Archivo [{}] tiene una diferente normalizaci\u00f3n a lo que esta especificado en el manifiesto. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. bag_within_bag_warning=Recomendamos efusivamente no guardar un bag en un bag ya que se sabe que causa problemas. leading_dot_slash_warning=En manifiesto [{}] l\u00ednea [{}] es una ruta no normalizada. os_specific_files_warning=En manifiesto [{}] l\u00ednea [{}] contiene un archivo espec\u00edfico de SO. @@ -140,7 +143,7 @@ found_metadata_file=Encontrado archivo metadata [{}]. #for TagFileReader.java removing_asterisk=\u00a1Encontrada ruta que fue creada de una herramienta no-bagit. Removiendo * de ruta\!. Por favor, \u00a1quite todos los * de los archivos de manifiesto\! -blackslash_used_as_path_separator_error=\u00a1[{}] es inv\u00e1lido debido al uso del separador de ruta [\\]\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! malicious_path_error=\u00a1[{}] est\u00e1 tratando de ser malicioso y acceder a un archivo fuera del bag\! invalid_url_format_error=\u00a1URL [{}] es inv\u00e1lido\! @@ -162,7 +165,7 @@ checking_checksums=Comprobando si nombre de archivo [{}] para ver si la suma de corrupt_checksum_error=Se supone que el archivo [{}] tiene un [{}] hash de [{}] pero fue computado como [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=Archivo [{}] hash un tama\u00f1o de [{}] bytes. +file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java checking_fetch_items_exist=Comprobando si todos los \u00edtems [{}] en fetch.txt existen en el directorio [{}]. @@ -187,11 +190,11 @@ checking_file_in_at_least_one_manifest=Comprobar si todos los archivos de carga checking_file_in_all_manifests=Comprobar si todos los archivos de carga (archivos en directorio [{}]) est\u00e1n listado en todos los manifiestos. #for QuickVerifier.java -found_payload_oxum=Encontr\u00f3 payload-oxum [{}] para bag [{}]. +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=\u00a1Payload-Oxum no existe en bag\! parse_size_in_bytes=Analizando [{}] para el tama\u00f1o de bytes total de la payload-oxum. parse_number_of_files=Analizando [{}] para el n\u00famero de archivos a buscar en el directorio de carga. -compare_payload_oxums=suministrar payload-oxum\: [{}], calcular payload-oxum\: [{}].{}], para directorio de carga [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Tama\u00f1o total inv\u00e1lido. \u00a1Esperado [{}] pero calculado [{}]\! invalid_file_cound_error=N\u00famero de archivo inv\u00e1lido. \u00a1Esperado [{}] pero encontrado [{}]\! From 79044ea15376082febe2c67decda81ab56a94709 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 8 Feb 2018 09:24:07 -0500 Subject: [PATCH 012/201] New translations MessageBundle.properties (German) --- src/main/resources/MessageBundle_de_DE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index d06a16094..59400f458 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -2,8 +2,8 @@ #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] +fetch_allowed=Sind Fetch Dateien erlaubt? [{}] +serialization_allowed=Serialisierung ist\: [{}] parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section identifier=Identifier is [{}] source_organization=Source-Organization is [{}] From a45ed820dec9ca6b288a84b3a8f1d56cfa405b9c Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 8 Feb 2018 09:33:35 -0500 Subject: [PATCH 013/201] New translations MessageBundle.properties (German) --- .../resources/MessageBundle_de_DE.properties | 90 +++++++++---------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 59400f458..e549c8921 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -4,67 +4,67 @@ #for BagitProfileDeserializer.java fetch_allowed=Sind Fetch Dateien erlaubt? [{}] serialization_allowed=Serialisierung ist\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} +parsing_bagit_profile_info_section=Lese Abschnitt BagIt-Profile-Info +identifier=Identifier hat den Wert [{}] +source_organization=Source-Organization hat den Wert [{}] +contact_name=Contact-Name hat den Wert [{}] +contact_email=Contact-Email hat den Wert [{}] +external_description=External-Description hat den Wert [{}] +version=Version hat den Wert [{}] +parsing_bag_info=Lese Abschnitt Bag-Info +required_manifest_types=Erforderliche Manifeste {} +acceptable_serialization_mime_types=Akzeptierte MIME Typen f\\u00fcr die Serialisierung sind {} +required_tagmanifest_types=Erforderliche Tag Manifeste sind {} +tag_files_required=Erforderliche Tag Dateien sind {} +acceptable_bagit_versions=Akzeptierte bagit Versionen sind {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +bag_within_a_bag=Das Verzeichnis data kann alles beinhalten, inklusive einer anderen bag. Es wird allerdings empfohlen, mehrere bags zusammenzufassen. +different_case=Eine bag kann mehrere Dateien mit unterschiedlicher Gro\\u00df- und Kleinschreibung enthalten. Dies kann zu Problemen mit bestimmten Dateisystemen f\\u00fchren, z.B. mit dem von Apple verwendeten HFS. +different_normalization=Eine bag kann mehrere Dateien mit unterschiedlicher Normalisierung enthalten. Dies kann bei einigen Dateisystemen zu Problemen bei der Verifizierung f\\u00fchren und den Benutzer verwirren. +extra_lines_in_bagit_files=Laut bagit Spezifikation d\\u00fcrfen nur 2 Zeilen enthalten sein. Dennoch haben sich einige Implementierungen daf\\u00fcr entschieden dies zu ignorieren, was zu Kompatibilit\\u00e4tsproblemen f\\u00fchren kann. +leading_dot_slash=Eine Manifest Datei f\\u00fchrt alle Dateien im Verzeichnis data relativ zum Wurzelverzeichnis der bag auf. Daher ist es nicht notwendig, die Dateipfade mit einem Punkt zu beginnen. +non_standard_algorithm=Der verwendete Algorithmus zur Pr\\u00fcfsummenberechnung ist nicht Teil der Standard Java Laufzeitumgebung. Die Verwendung von SHA512 wird empfohlen. +md5sum_tool_generated_manifest=Das Manifest wurde mit Hilfe von Werkzeugen zur Pr\\u00fcfsummenberechnung erstellt, die z.B. Teil des GNU Coreutils Paketes sind (md5sum, sha1sum, etc.), hier als 'md5sum' bezeichnet. Diese erzeugen minimale Unterschiede in den erstellten Manifesten, was zu Problemen mit einigen Implementierungen f\\u00fchren kann. +missing_tag_manifest=Das Tag Manifest verhindert unvollst\\u00e4ndige Payload Manifeste sowie andere potentielle Probleme. Daher wird empfohlen, dass es Teil jeder bag ist. +old_bagit_version=Die verwendete Version der bagit Spezifikation ist veraltet. Es wird empfohlen, auf die aktuellste Version zu umzusteigen. +os_specific_files=Dateien die vom Betriebssystem f\\u00fcr eigene Zwecke erzeugt wurden. Diese sind nicht zwischen verschiedenen Betriebssystemversionen portierbar und sollten nicht im Manifest aufgef\\u00fchrt werden. Beispiele hierf\\u00fcr sind Thumbs.db unter Windows oder .DS_Store unter OS X. +payload_oxum_missing=Es wird empfohlen, die Eigenschaft Payload-Oxum in den Metadaten jeder bag zu hinterlegen, da diese eine schnelle \\u00dcberpr\\u00fcfung der bag erlaubt. +tag_files_encoding=Es wird empfohlen UTF-8 zu verwenden. +weak_checksum_algorithm=Der verwendete Algorithmus zur Pr\\u00fcfsummenerzeugung ist angreifbar. Wir empfehlen die Verwendung von SHA-512. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +checking_encoding_problems=Pr\\u00fcfe auf Probleme mit der Zeichenkodierung. +checking_latest_version=Pr\\u00fcfe auf aktuellste Version. +checking_manifest_problems=Pr\\u00fcfe Manifeste auf Probleme. +checking_metadata_problems=Pr\\u00fcfe bag Metadaten auf Probleme. +skipping_check_extra_lines=\\u00dcberspringe Pr\\u00fcfung auf Extrazeilen in bagit Dateien. +checking_extra_lines=Pr\\u00fcfe ob [{}] mehr als 2 Zeilen enth\\u00e4lt. +extra_lines_warning=The bagit Spezifikation sagt aus, dass bagit.txt genau 2 Zeilen enthalten darf. Die vorliegende bagit.txt enth\\u00e4lt [{}] Zeilen. Dies kann von einigen Implementierungen ignoriert werden oder zu Kombatibilit\\u00e4tsproblemen f\\u00fchren. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. +checking_fetch_file_allowed=Pr\\u00fcfe ob Fetch Dateien f\\u00fcr die bag [{}] erlaubt sind. +checking_metadata_entry_required=Pr\\u00fcfe ob [{}] in den bag Metadaten ben\\u00f6tigt wird. +check_values_acceptable=Pr\\u00fcfe ob alle f\\u00fcr [{}] aufgef\\u00fchrten Werte akzeptiert werden k\\u00f6nnen. +check_required_manifests_present=Pr\\u00fcfe ob alle ben\\u00f6tigten Manifeste vorhanden sind. +required_tag_manifest_type_not_present=Ben\\u00f6tigtes Tag Manifest vom Typ [{}] konnte nicht gefunden werden. +required_manifest_type_not_present=Ben\\u00f6tigtes Manifest vom Typ [{}] konnte nicht gefunden werden. +checking_required_tag_file_exists=Pr\\u00fcfe ob alle Tag Dateien vorhanden sind. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. +bagit_version_not_acceptable_error=Version [{}] ist nicht in der Liste der akzeptieren Versionen {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! +required_metadata_field_not_present_error=Das im Profil auf\\u00fchrte Metadatum [{}] ist notwendig, wurde aber nicht gefunden\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! +fetch_file_not_allowed_error=Fetch Datei konnte nicht in der bag [{}] gefunden werden. #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! +metadata_value_not_acceptable_error=Laut Profil sind g\\u00fcltige Werte f\\u00fcr die Eigenschaft [{}]\: {}. Der aufgef\\u00fchrte Wert [{}] befindet sich nicht darunter. #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! +metadata_value_not_repeatable_error=Die ben\\u00f6tigte Tag Datei [{}] konnte nicht gefunden werden. #for RequiredTagFileNotPresentException.java required_tag_file_not_found_error=Required tag file [{}] was not found\! From be7fad34ba0d123a6f5e97e403eabc0ef42061b6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 8 Feb 2018 09:51:55 -0500 Subject: [PATCH 014/201] New translations MessageBundle.properties (German) --- .../resources/MessageBundle_de_DE.properties | 182 +++++++++--------- 1 file changed, 91 insertions(+), 91 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index e549c8921..49337881e 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -64,162 +64,162 @@ fetch_file_not_allowed_error=Fetch Datei konnte nicht in der bag [{}] gefunden w metadata_value_not_acceptable_error=Laut Profil sind g\\u00fcltige Werte f\\u00fcr die Eigenschaft [{}]\: {}. Der aufgef\\u00fchrte Wert [{}] befindet sich nicht darunter. #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Die ben\\u00f6tigte Tag Datei [{}] konnte nicht gefunden werden. +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! +required_tag_file_not_found_error=Die ben\\u00f6tigte Tag Datei [{}] konnte nicht gefunden werden. #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. +tag_files_not_encoded_with_utf8_warning=Tag Dateien sind [{}] kodiert. Wir empfehlen stattdessen die Verwendung von UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +bag_missing_tag_manifest_warning=Die bag [{}] enth\\u00e4lt kein Tag Manifest, welches f\\u00fcr jede bag empfohlen wird. +different_case_warning=Im Manifest [{}] wird der Pfad [{}] mit unterschiedlicher Gro\\u00df- und Kleinschreibung aufgef\\u00fchrt. Dies kann bei einigen Dateisystemen zu Problemen f\\u00fchren. +manifest_line_violated_spec_error=Das Manifest enth\\u00e4lt die Zeile [{}], welche nicht dem geforderten Schema folgt. +md5sum_generated_line_warning=Der Pfad [{}] beginnt mit einem *, was bedeutet, dass der Eintrag nicht mit einem bagit-Werkzeug erstellt wurde. Es wird empfohlen, den * entsprechend der bagit Spezifikation zu entfernen. +cannot_access_parent_path_error=Zugriff auf \\u00fcbergeordnetes Verzeichnis von [{}] nicht m\\u00f6glich. +different_normalization_in_manifest_warning=Die Datei [{}] ist anders normalisiert f\\u00fcr die Manifest Datei erforderlich. +bag_within_bag_warning=Wir empfehlen keine bag innerhalb einer anderen bag zu speichern, da dies bekannterma\\u00dfen zu Problemen f\\u00fchren kann. +leading_dot_slash_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] einen nicht normalisierten Pfad. +os_specific_files_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] eine betriebssystemspezifische Datei. +weak_algorithm_warning=Pr\\u00fcfsummenalgorithmus [{}] ist als angreifbar bekannt. Dank der Fortschritte aktueller Computersysteme verursacht die Erzeugung einer st\\u00e4rkeren Pr\\u00fcfsumme nur minimale Verz\\u00f6gerung. +non_standard_algorithm_warning=Der verwendete Pr\\u00fcfsummenalgorithmus [{}] ist nicht Teil der Standard Java Laufzeitumgebung. Dies erschwert das Lesen der bag auf einigen Systemen. Die Verwendung von SHA-512 wird empfohlen. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". +missing_payload_oxum_warning=Die Eigenschaft Payload-Oxum wurde nicht in den bag Metadaten gefunden. Dies verhindert eine schnelle \\u00dcberpr\\u00fcfung der bag. #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Die verwendete bagit Version [{}] ist veraltet. Die akuelle Version ist [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. +skipping_hidden_file=\\u00dcberspringe [{}] da versteckte Dateien ignoriert werden. +skipping_ignored_directory=\\u00dcberspringe [{}] da versteckte Verzeichnisse ignoriert werden. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). +creating_bag=Erstelle bag in Version\: [{}] im Verzeichnis\: [{}]. +creating_payload_manifests=Erstelle Payload Manifest(e). +creating_tag_manifests=Erstelle Tag Manifest(e). +calculating_payload_oxum=Berechne Payload Oxum des Datenverzeichnisses [{}]. +creating_metadata_file=Erstelle bag Metadaten (bag-info.txt oder package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. +adding_checksum=F\\u00fcge dem Manifest den Eintrag [{}] mit Pr\\u00fcfsumme [{}] hinzu. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! +algorithm_not_supported_error=[{}] wird nicht unterst\\u00fctzt\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +reading_version_and_encoding=Lese [{}] f\\u00fcr die Bestimmung von Version und Zeichenkodierung. +bagit_version=BagIt-Version ist [{}]. +tag_file_encoding=Zeichenkodierung in Tag Datei ist [{}]. +invalid_bagit_text_file_error=bagit.txt MUSS die Eigenschaften 'BagIt-Version' UND 'Tag-File-Character-Encoding' enthalten\! +bom_present_error=Datei [{}] enth\\u00e4lt eine Byte-Reihenfolge-Markierung, was laut bagit Spezifikation nicht zul\\u00e4ssig ist\! +strict_only_two_lines_error=bagit.txt MUSS genau 2 Zeilen enthalten. Zus\\u00e4tzliche gefundene Zeile(n)\: [{}] +strict_first_line_error=Die erste Zeile in bagit.txt muss dem Schema [BagIt-Version\: ] entsprechen. Stattdessen wurde die Zeile [{}] gefunden. Mehr Informationen findet man in der bagit Spezifikation. +strict_second_line_error=Die zweite Zeile in bagit.txt muss dem Schema [Tag-File-Character-Encoding\: ] entsprechen. Stattdessen wurde die Zeile [{}] gefunden. Mehr Informationen findet man in der bagit Spezifikation. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! +unparsable_version_error=Version muss im Format MAJOR.MINOR angegeben werden. Stattdessen wurde der Wert [{}] gefunden. #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . +reading_fetch_file=Versuche [{}] zu lesen. +read_fetch_file_line=Lese URL [{}] mit L\\u00e4nge [{}] und Pfad [{}] aus Fetch Datei [{}]. +invalid_fetch_file_line_error=Zeile [{}] ist kein g\\u00fcltiger fetch.txt Eintrag. Jede Zeile muss nach dem Schema aufgebaut sein. #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +read_key_value_line=Schl\\u00fcssel [{}] mit Wert [{}] in Datei [{}] gefunden. Verwende regul\\u00e4ren Ausdruck [{}] f\\u00fcr die Aufspaltung. +found_indented_line=Einger\\u00fcckte Zeile gefunden - f\\u00fcge sie mit Schl\\u00fcssel [{}] zusammen. +malformed_key_value_line_error=Zeile [{}] entspricht nicht der bagit Spezifikation f\\u00fcr eine Tag Datei. M\\u00f6glicherweise sollte die Zeile per Leerzeichen oder Tab einger\\u00fcckt werden oder es wurde kein Doppelpunkt verwendet, um einen Schl\\u00fcssel von einem Wert zu trennen? Es muss das Schema {} verwendet werden. Falls ein Wert in einer neuen Zeile fortgesetzt wird, muss diese per Leerzeichen oder Tab einger\\u00fcckt werden. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. +attempting_read_manifests=Versuche die Manifeste zu finden und zu lesen. +found_tagmanifest=Tag Manifest [{}] gefunden. +found_payload_manifest=Payload Manifest [{}] gefunden. +reading_manifest=Lese Manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. +attempting_read_metadata=Versuche bag Metadaten Datei zu lesen. +found_metadata_file=Metadaten Datei [{}] gefunden. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +removing_asterisk=Es wurde ein Pfad gefunden, der nicht mit einem bagit-Werkzeug erstellt wurde. Alle * werden aus dem Pfad entfernt. Bitte entfernen Sie auch alle * aus den Manifesten\! +blackslash_used_as_path_separator_error=[{}] ist ung\\u00fcltig, da zur Pfadtrennung [\\\\] verwendet wird\! +malicious_path_error=[{}] verweist ung\\u00fcltigerweise auf eine Datei au\\u00dferhalb der bag\! invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. +checksums_not_matching_error=[{}] Fehler gefunden. Mindestens ein Fehler ist auf fehlerhafte Pr\\u00fcfsummen zur\\u00fcckzuf\\u00fchren. +checking_bag_is_complete=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] vollst\\u00e4ndig ist. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! +different_normalization_on_filesystem_warning=Der Dateiname [{}] verwendet eine andere Normalisierung als das unterliegende Dateisystem\! +error_reading_normalized_file=Fehler beim Zugriff auf [{}], um zu pr\\u00fcfen, ob eine Datei in diesem Verzeichnis dem normalisierten Dateinamen [{}] entspricht\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. +checking_checksums=Pr\\u00fcfe Datei [{}] auf Pr\\u00fcfsumme [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. +corrupt_checksum_error=Datei [{}] sollte eine [{}] Pr\\u00fcfsumme mit dem Wert [{}] aufweisen. Die errechnete Pr\\u00fcfsumme ist jedoch [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. +file_size_in_bytes=Datei [{}] hat eine Gr\\u00f6\\u00dfe von [{}] Byte. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). +checking_fetch_items_exist=Pr\\u00fcfe ob alle [{}] Eintr\\u00e4ge in fetch.txt im Verzeichnis [{}] existieren. +fetch_item_missing_error=Fetch Eintrag [{}] wurde nicht geladen\! +file_should_exist_error=Datei [{}] sollte existieren, tut es aber nicht\! +checking_payload_directory_exists=Pr\\u00fcfe ob ein spezielles Payload Verzeichnis existiert (nur Version 0.97 und \\u00e4lter). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! +missing_payload_manifest_error=Bag enth\\u00e4lt kein Payload Manifest\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! +file_not_in_manifest_error=Datei [{}] befindet sich im Payload Verzeichnis, ist aber nicht im Manifest manifest-{}.txt aufgef\\u00fchrt\! +file_in_all_manifests=[{}] befindet sich in allen Manifesten. +file_not_in_any_manifest_error=Datei [{}] befindet sich im Payload Verzeichnis, ist aber in keinem Manifest aufgef\\u00fchrt\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. +all_files_in_manifests=Lese alle Dateien aus allen Manifesten. +get_listing_in_manifest=Lese Dateien und Pr\\u00fcfsummen die in [{}] aufgef\\u00fchrt sind. +check_all_files_in_manifests_exist=Pr\\u00fcfe ob alle Dateien aus allen Manifesten existieren. +missing_payload_files_error=Manifeste enthalten Datei(en) {} die nicht existieren\! +checking_file_in_at_least_one_manifest=Pr\\u00fcfe ob alle Payload Dateien (Dateien im Verzeichnis [{}]) in mindestens einem Manifest aufgef\\u00fchrt sind. +checking_file_in_all_manifests=Pr\\u00fcfe ob alle Payload Dateien (Dateien im Verzeichnis [{}]) in allen Manifesten aufgef\\u00fchrt sind. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! +found_payload_oxum=Eigenschaft Payload-Oxum [{}] f\\u00fcr bag [{}] gefunden. +payload_oxum_missing_error=Eigenschaft Payload-Oxum nicht in den bag metadaten gefunden\! +parse_size_in_bytes=Suche in Wert [{}] nach der Gesamtanzahl an Bytes. +parse_number_of_files=Suche in Wert [{}] nach der Gesamtanzahl an Dateien im Payload Verzeichnis. +compare_payload_oxums=Angegebener Wert der Eigenschaft Payload-Oxum \: [{}], berechneter Wert von Payload-Oxum \: [{}.{}] f\\u00fcr das Payload Verzeichnis [{}]. +invalid_total_size_error=Ung\\u00fcltige Gesamtanzahl an Bytes. Ertwartet wurde [{}], berechnet wurde [{}]\! +invalid_file_cound_error=Ung\\u00fcltige Gesamtanzahl an Dateien. Erwartet wurde [{}], berechnet wurde [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] +write_bagit_file_to_path=Schreibe bagit.txt nach [{}] +writing_line_to_file=Schreibe Zeile [{}] nach [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). +writing_payload_files=Schreibe Payload Dateien. +upsert_payload_oxum=F\\u00fcge Eigenschaft Payload-Oxum hinzu. +writing_bagit_file=Schreibe Datei bagit.txt. +writing_payload_manifests=Schreibe das/die Payload Manifest(e). +writing_bag_metadata=Schreibe bag Metadaten. +writing_fetch_file=Schreibe Fetch Datei. +writing_tag_manifests=Schreibe Tag Manifest(e). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. +writing_fetch_file_to_path=Schreibe fetch.txt nach [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. +writing_manifest_to_path=Schreibe Manifest nach [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. +writing_metadata_to_path=Schreibe bag Metdaten Datei [{}] nach [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. +writing_payload_file_to_path=Schreibe Payload Datei [{}] nach [{}]. +skip_fetch_item_when_writing_payload=\\u00dcberspringe Payload Datei {} da sie sich in der Fetch Liste befindet. From df2060470caee1afd4410de74c5c766b817258c0 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 8 Feb 2018 09:52:12 -0500 Subject: [PATCH 015/201] New translations MessageBundle.properties (German) --- src/main/resources/MessageBundle_de_DE.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 49337881e..beedfdd9d 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -145,11 +145,11 @@ found_metadata_file=Metadaten Datei [{}] gefunden. removing_asterisk=Es wurde ein Pfad gefunden, der nicht mit einem bagit-Werkzeug erstellt wurde. Alle * werden aus dem Pfad entfernt. Bitte entfernen Sie auch alle * aus den Manifesten\! blackslash_used_as_path_separator_error=[{}] ist ung\\u00fcltig, da zur Pfadtrennung [\\\\] verwendet wird\! malicious_path_error=[{}] verweist ung\\u00fcltigerweise auf eine Datei au\\u00dferhalb der bag\! -invalid_url_format_error=URL [{}] is invalid\! +invalid_url_format_error=URL [{}] is ung\\u00fcltig\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. +checking_bag_is_valid=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] g\\u00fcltig ist. +checking_payload_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Payload Manifeste(s). checking_tag_file_checksums=Checking tag manifest(s) checksums. checksums_not_matching_error=[{}] Fehler gefunden. Mindestens ein Fehler ist auf fehlerhafte Pr\\u00fcfsummen zur\\u00fcckzuf\\u00fchren. checking_bag_is_complete=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] vollst\\u00e4ndig ist. From c345c4cd5f4fb45c669a8f0dcf86926d2cabaf40 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 8 Feb 2018 10:02:05 -0500 Subject: [PATCH 016/201] New translations MessageBundle.properties (German) --- src/main/resources/MessageBundle_de_DE.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index beedfdd9d..2eb6dbb37 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -150,7 +150,7 @@ invalid_url_format_error=URL [{}] is ung\\u00fcltig\! #for BagVerifier.java checking_bag_is_valid=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] g\\u00fcltig ist. checking_payload_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Payload Manifeste(s). -checking_tag_file_checksums=Checking tag manifest(s) checksums. +checking_tag_file_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Tag Manifeste(s). checksums_not_matching_error=[{}] Fehler gefunden. Mindestens ein Fehler ist auf fehlerhafte Pr\\u00fcfsummen zur\\u00fcckzuf\\u00fchren. checking_bag_is_complete=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] vollst\\u00e4ndig ist. From aaadf8f3201b7a99fe70cee8b32ffc2f2bb40983 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 8 Feb 2018 11:36:11 -0500 Subject: [PATCH 017/201] New translations MessageBundle.properties (Spanish) --- .../resources/MessageBundle_es_ES.properties | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index 580cde10b..95eebb6d9 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -24,22 +24,22 @@ different_case=El bag contiene dos archivos que difieren s\u00f3lo en caso. Esto different_normalization=El bag contiene dos archivos que difieren s\u00f3lo en la normalizaci\u00f3n. Esto puede causar que la verificaci\u00f3n falle en algunos sistemas, y confusi\u00f3n del usuario general. extra_lines_in_bagit_files=Las especificaciones bagits dicen que s\u00f3lo deben contener 2 l\u00edneas. Sin embargo, algunas implementaciones han decidido ignorar esto lo que puede causar problemas de compatibilidad leading_dot_slash=Un manifiesto lista todos los archivos de data como relativo al directorio ra\u00edz de bolsa, es in\u00fatil por lo tanto especificarlo con un punto. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +non_standard_algorithm=El algoritmo de suma de comprobaci\\u00f3n usado no viene de un est\\u00e1ndar con una rutina de Java. Considera usar SHA512 en su lugar. +md5sum_tool_generated_manifest=El manifiesto fue creado usando utilidades de suma de comprobaci\\u00f3n tales como las contenidas en el paquete GNU Coreutils (md5sum, sh1sum, etc), colectivamente referido aqu\\u00ed como 'md5sum'. Esto crea peque\\u00f1as diferencias en los manifestos generados lo que puede causar problemas en algunas implementaciones. +missing_tag_manifest=El manifiesto de etiqueta protege contra un manifiesto de carga truncada as\\u00ed como otros problemas potenciales y siempre es recomendado que sea incluido. old_bagit_version=La versi\u00f3n especificaci\u00f3n bagit no es la m\u00e1s nueva. Considera convertir a la \u00faltima versi\u00f3n. os_specific_files=Archivos creados por el sistema operativo (SO) para su propio uso. Esos son no-portables a trav\u00e9s de la versiones SO y no deber\u00edan ser incluidas en ning\u00fan manifiesto. Ejemplos son Thumb.db en Windows o .DS_Store en OS X payload_oxum_missing=Es recomendado siempre incluir la Carga-Oxum en el metadata bag debido a que permite para una "r\u00e1pida verificaci\u00f3n" del bag. tag_files_encoding=Es recomendado siempre usar UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +weak_checksum_algorithm=El algoritmo de suma de verificaci\\u00f3n usado es conocido por ser d\\u00e9bil. Recomendamos usar SHA512. #for BagLinter.java checking_encoding_problems=Comprobando problemas de codificaci\u00f3n. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. +checking_latest_version=Comprobando por la \\u00faltima versi\\u00f3n. +checking_manifest_problems=Comprobando manifiestos por problemas. +checking_metadata_problems=Comprobando metadata bag por problemas. +skipping_check_extra_lines=Saltar verificaci\\u00f3n de extra lineas en archivos bagit. +checking_extra_lines=Comprobar si [{}] contiene m\\u00e1s de dos l\\u00edneas. extra_lines_warning=La especificaciones bagit dice que el archivo bagit.txt debe contener exactamente 2 l\u00edneas. Sin embargo, encontramos [{}] l\u00edneas, algunas implementaciones ignorar\u00e1n esto pero puede causar problemas incompatibilidad con otras herramientas. #for BagProfileChecker.java @@ -47,7 +47,7 @@ checking_fetch_file_allowed=Comprobar si el archivo de recuperaci\u00f3n es perm checking_metadata_entry_required=Comprobar si [{}] es requerido en el metadata bag. check_values_acceptable=Comprobar si todo los valores listados para [{}] son aceptables. check_required_manifests_present=Comprobar si todos los manifiestos requeridos est\u00e1n presentes. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_tag_manifest_type_not_present=Tipo requerido de tagmanifest [{}] no estaba presente. required_manifest_type_not_present=Tipo de manifesto requerido [{}] no estaba presente. checking_required_tag_file_exists=Comprobar si todo los archivos de etiqueta requerida existen. @@ -58,16 +58,16 @@ bagit_version_not_acceptable_error=Versi\u00f3n [{}] no est\u00e1 en la lista ac required_metadata_field_not_present_error=\u00a1Campo que especifica metadata [{}] es requerido pero no se encontr\u00f3\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! +fetch_file_not_allowed_error=Archivo de respaldo fue encontrado en bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! +metadata_value_not_acceptable_error=Perfil especifica valores aceptables para [{}] son {} pero encontr\\u00f3 [{}]\! #for MetadataValueIsNotRepeatableException.java metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! +required_tag_file_not_found_error=Etiqueta de archivo requerida [{}] no fue encontrada\! #for EncodingChecker.java tag_files_not_encoded_with_utf8_warning=Archivos de etiqueta se codifican con [{}]. Recomendamos siempre usar UTF-8 en su lugar. @@ -78,7 +78,7 @@ different_case_warning=En manifiesto [{}], ruta [{}] es igual a otra excepto par manifest_line_violated_spec_error=Manifiesto contiene l\u00ednea [{}] la cual no sigue la forma especificada de md5sum_generated_line_warning=Ruta [{}] comienza con un *, lo cual significa que fue generado con una herramienta no bagit. Es recomendado remover el * para poder cumplir con las especificaciones bagit. cannot_access_parent_path_error=No se pudo acceder a la carpeta principal de [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +different_normalization_in_manifest_warning=Archivo [{}] tiene una diferente normalizaci\\u00f3n a lo que esta especificado en el manifiesto. bag_within_bag_warning=Recomendamos efusivamente no guardar un bag en un bag ya que se sabe que causa problemas. leading_dot_slash_warning=En manifiesto [{}] l\u00ednea [{}] es una ruta no normalizada. os_specific_files_warning=En manifiesto [{}] l\u00ednea [{}] contiene un archivo espec\u00edfico de SO. @@ -143,7 +143,7 @@ found_metadata_file=Encontrado archivo metadata [{}]. #for TagFileReader.java removing_asterisk=\u00a1Encontrada ruta que fue creada de una herramienta no-bagit. Removiendo * de ruta\!. Por favor, \u00a1quite todos los * de los archivos de manifiesto\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +blackslash_used_as_path_separator_error=\\u00a1[{}] es inv\\u00e1lido debido al uso del separador de ruta [\\\\]\\\! malicious_path_error=\u00a1[{}] est\u00e1 tratando de ser malicioso y acceder a un archivo fuera del bag\! invalid_url_format_error=\u00a1URL [{}] es inv\u00e1lido\! @@ -165,7 +165,7 @@ checking_checksums=Comprobando si nombre de archivo [{}] para ver si la suma de corrupt_checksum_error=Se supone que el archivo [{}] tiene un [{}] hash de [{}] pero fue computado como [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. +file_size_in_bytes=Archivo [{}] hash un tama\\u00f1o de [{}] bytes. #for MandatoryVerifier.java checking_fetch_items_exist=Comprobando si todos los \u00edtems [{}] en fetch.txt existen en el directorio [{}]. @@ -190,11 +190,11 @@ checking_file_in_at_least_one_manifest=Comprobar si todos los archivos de carga checking_file_in_all_manifests=Comprobar si todos los archivos de carga (archivos en directorio [{}]) est\u00e1n listado en todos los manifiestos. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +found_payload_oxum=Encontr\\u00f3 payload-oxum [{}] para bag [{}]. payload_oxum_missing_error=\u00a1Payload-Oxum no existe en bag\! parse_size_in_bytes=Analizando [{}] para el tama\u00f1o de bytes total de la payload-oxum. parse_number_of_files=Analizando [{}] para el n\u00famero de archivos a buscar en el directorio de carga. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Suministrar payload-oxum\\\: [{}], calcular payload-oxum\\\: [{}].{}], para directorio de carga [{}]. invalid_total_size_error=Tama\u00f1o total inv\u00e1lido. \u00a1Esperado [{}] pero calculado [{}]\! invalid_file_cound_error=N\u00famero de archivo inv\u00e1lido. \u00a1Esperado [{}] pero encontrado [{}]\! From 9871a67e4b1863af92a27c32fd09c670bfbe59c6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:25 -0500 Subject: [PATCH 018/201] New translations MessageBundle.properties (Afrikaans) --- .../resources/MessageBundle_af_ZA.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_af_ZA.properties diff --git a/src/main/resources/MessageBundle_af_ZA.properties b/src/main/resources/MessageBundle_af_ZA.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_af_ZA.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From cd6cd672e2a6040ace340dd2cfede4bddb7b572c Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:27 -0500 Subject: [PATCH 019/201] New translations MessageBundle.properties (Korean) --- .../resources/MessageBundle_ko_KR.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_ko_KR.properties diff --git a/src/main/resources/MessageBundle_ko_KR.properties b/src/main/resources/MessageBundle_ko_KR.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_ko_KR.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 51c1c2ba1f380a62bcb917388bc088c069190745 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:28 -0500 Subject: [PATCH 020/201] New translations MessageBundle.properties (Ukrainian) --- .../resources/MessageBundle_uk_UA.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_uk_UA.properties diff --git a/src/main/resources/MessageBundle_uk_UA.properties b/src/main/resources/MessageBundle_uk_UA.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_uk_UA.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From ceef850de0dd13b523fe25ba376d068401a1800b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:29 -0500 Subject: [PATCH 021/201] New translations MessageBundle.properties (Turkish) --- .../resources/MessageBundle_tr_TR.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_tr_TR.properties diff --git a/src/main/resources/MessageBundle_tr_TR.properties b/src/main/resources/MessageBundle_tr_TR.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_tr_TR.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 0411969c9b6541c87b4c8098a1a2859e5e4b4c4b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:31 -0500 Subject: [PATCH 022/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_sv_SE.properties diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 4fafaec2c35953a6e3d3e257b436a9dc1002a057 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:32 -0500 Subject: [PATCH 023/201] New translations MessageBundle.properties (Spanish) --- src/main/resources/MessageBundle_es_ES.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index 95eebb6d9..5c06b7a21 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -64,7 +64,7 @@ fetch_file_not_allowed_error=Archivo de respaldo fue encontrado en bag [{}]\! metadata_value_not_acceptable_error=Perfil especifica valores aceptables para [{}] son {} pero encontr\\u00f3 [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! +metadata_value_not_repeatable_error=Perfil especifica que el valor [{}] no es repetible, pero fue enumerado varias veces\! #for RequiredTagFileNotPresentException.java required_tag_file_not_found_error=Etiqueta de archivo requerida [{}] no fue encontrada\! From d29588916651c6c3b2f59d26f4749dfee5af5b59 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:33 -0500 Subject: [PATCH 024/201] New translations MessageBundle.properties (Serbian (Cyrillic)) --- .../resources/MessageBundle_sr_SP.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_sr_SP.properties diff --git a/src/main/resources/MessageBundle_sr_SP.properties b/src/main/resources/MessageBundle_sr_SP.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_sr_SP.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From deb588a328860c285f065f75f87697d18587f4fd Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:35 -0500 Subject: [PATCH 025/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- .../resources/MessageBundle_pt_BR.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_pt_BR.properties diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From c3db60c06e5bf687594ca5e2e8a139bceb50c491 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:36 -0500 Subject: [PATCH 026/201] New translations MessageBundle.properties (Polish) --- .../resources/MessageBundle_pl_PL.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_pl_PL.properties diff --git a/src/main/resources/MessageBundle_pl_PL.properties b/src/main/resources/MessageBundle_pl_PL.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_pl_PL.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 76adf03ad471aed1f1917a74864cce8feb005eae Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:38 -0500 Subject: [PATCH 027/201] New translations MessageBundle.properties (Norwegian) --- .../resources/MessageBundle_no_NO.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_no_NO.properties diff --git a/src/main/resources/MessageBundle_no_NO.properties b/src/main/resources/MessageBundle_no_NO.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_no_NO.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From f23b1a7dbbe57ea3a9a2a3df5fb196a8999ba556 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:39 -0500 Subject: [PATCH 028/201] New translations MessageBundle.properties (Indonesian) --- .../resources/MessageBundle_id_ID.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_id_ID.properties diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 31f81fdbf85f9201b7f54a786ff2a930ed95e023 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:40 -0500 Subject: [PATCH 029/201] New translations MessageBundle.properties (Catalan) --- .../resources/MessageBundle_ca_ES.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_ca_ES.properties diff --git a/src/main/resources/MessageBundle_ca_ES.properties b/src/main/resources/MessageBundle_ca_ES.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_ca_ES.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 38819fbc7ab9b00c5a18beaebadb506e1e0f01b5 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:42 -0500 Subject: [PATCH 030/201] New translations MessageBundle.properties (Hungarian) --- .../resources/MessageBundle_hu_HU.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_hu_HU.properties diff --git a/src/main/resources/MessageBundle_hu_HU.properties b/src/main/resources/MessageBundle_hu_HU.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_hu_HU.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 5a870770dc3338837738b3a64286fb1da122ee34 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:43 -0500 Subject: [PATCH 031/201] New translations MessageBundle.properties (Hebrew) --- .../resources/MessageBundle_he_IL.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_he_IL.properties diff --git a/src/main/resources/MessageBundle_he_IL.properties b/src/main/resources/MessageBundle_he_IL.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_he_IL.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From f6b31dabbbe234fdc2505156fc29be93cc093476 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:45 -0500 Subject: [PATCH 032/201] New translations MessageBundle.properties (Greek) --- .../resources/MessageBundle_el_GR.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_el_GR.properties diff --git a/src/main/resources/MessageBundle_el_GR.properties b/src/main/resources/MessageBundle_el_GR.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_el_GR.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From a02e8295d4d76a786fe50d47af4647faf37933db Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:46 -0500 Subject: [PATCH 033/201] New translations MessageBundle.properties (German) --- src/main/resources/MessageBundle_de_DE.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 2eb6dbb37..419f7ce1d 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -64,7 +64,7 @@ fetch_file_not_allowed_error=Fetch Datei konnte nicht in der bag [{}] gefunden w metadata_value_not_acceptable_error=Laut Profil sind g\\u00fcltige Werte f\\u00fcr die Eigenschaft [{}]\: {}. Der aufgef\\u00fchrte Wert [{}] befindet sich nicht darunter. #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! +metadata_value_not_repeatable_error=Profil legt fest, dass Wert [{] nicht wiederholbar ist, aber war mehrere Male aufgef\u00fchrt\! #for RequiredTagFileNotPresentException.java required_tag_file_not_found_error=Die ben\\u00f6tigte Tag Datei [{}] konnte nicht gefunden werden. From 96adef3082c6634ee207314c6760377345fe144f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:48 -0500 Subject: [PATCH 034/201] New translations MessageBundle.properties (Finnish) --- .../resources/MessageBundle_fi_FI.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_fi_FI.properties diff --git a/src/main/resources/MessageBundle_fi_FI.properties b/src/main/resources/MessageBundle_fi_FI.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_fi_FI.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 46e2f4996c420d043ea511d336bdc0b43d831a45 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:49 -0500 Subject: [PATCH 035/201] New translations MessageBundle.properties (English) --- .../resources/MessageBundle_en_US.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_en_US.properties diff --git a/src/main/resources/MessageBundle_en_US.properties b/src/main/resources/MessageBundle_en_US.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_en_US.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 6d0cf7be1a1291d5a39d3b699a8d7b0df742f030 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:50 -0500 Subject: [PATCH 036/201] New translations MessageBundle.properties (Dutch) --- .../resources/MessageBundle_nl_NL.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_nl_NL.properties diff --git a/src/main/resources/MessageBundle_nl_NL.properties b/src/main/resources/MessageBundle_nl_NL.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_nl_NL.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 0552233695a6007f26e9630c165b66c617ca9837 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:51 -0500 Subject: [PATCH 037/201] New translations MessageBundle.properties (Danish) --- .../resources/MessageBundle_da_DK.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_da_DK.properties diff --git a/src/main/resources/MessageBundle_da_DK.properties b/src/main/resources/MessageBundle_da_DK.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_da_DK.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From cd1d3c84e18299474108a716ded5fa1dc9f52283 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:53 -0500 Subject: [PATCH 038/201] New translations MessageBundle.properties (Czech) --- .../resources/MessageBundle_cs_CZ.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_cs_CZ.properties diff --git a/src/main/resources/MessageBundle_cs_CZ.properties b/src/main/resources/MessageBundle_cs_CZ.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_cs_CZ.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 8a206c4133525fd5140d95c4d672114e29f6a70b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:02:54 -0500 Subject: [PATCH 039/201] New translations MessageBundle.properties (Vietnamese) --- .../resources/MessageBundle_vi_VN.properties | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/main/resources/MessageBundle_vi_VN.properties diff --git a/src/main/resources/MessageBundle_vi_VN.properties b/src/main/resources/MessageBundle_vi_VN.properties new file mode 100644 index 000000000..d06a16094 --- /dev/null +++ b/src/main/resources/MessageBundle_vi_VN.properties @@ -0,0 +1,225 @@ +#X-Generator: crowdin.com +#default is English, United States (en_US). This is used to store all messages in bagit-java + +#for BagitProfileDeserializer.java +fetch_allowed=Are fetch files allowed? [{}] +serialization_allowed=Serialization is\: [{}] +parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +identifier=Identifier is [{}] +source_organization=Source-Organization is [{}] +contact_name=Contact-Name is [{}] +contact_email=Contact-Email is [{}] +external_description=External-Description is [{}] +version=Version is [{}] +parsing_bag_info=Parsing the Bag-Info section +required_manifest_types=Required manifest types {} +acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +required_tagmanifest_types=Required Tagmanifest types are {} +tag_files_required=Tag files required are {} +acceptable_bagit_versions=Acceptable bagit versions are {} + +#for BagitWarning.java +bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. +old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. +tag_files_encoding=It is recommended to always use UTF-8. +weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. + +#for BagLinter.java +checking_encoding_problems=Checking encoding problems. +checking_latest_version=Checking for latest version. +checking_manifest_problems=Checking manifests for problems. +checking_metadata_problems=Checking bag metadata for problems. +skipping_check_extra_lines=Skipping check for extra lines in bagit files. +checking_extra_lines=Checking if [{}] contains more than 2 lines. +extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. + +#for BagProfileChecker.java +checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +check_values_acceptable=Checking if all the values listed for [{}] are acceptable. +check_required_manifests_present=Checking if all the required manifests are present. +required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. +required_manifest_type_not_present=Required manifest type [{}] was not present. +checking_required_tag_file_exists=Checking if all the required tag files exist. + +#for BagitVersionIsNotAcceptableException.java +bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. + +#for RequiredMetadataFieldNotPresentException.java +required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! + +#for FetchFileNotAllowedException.java +fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! + +#for MetadataValueIsNotAcceptableException.java +metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! + +#for MetadataValueIsNotRepeatableException.java +metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! + +#for RequiredTagFileNotPresentException.java +required_tag_file_not_found_error=Required tag file [{}] was not found\! + +#for EncodingChecker.java +tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. + +#For ManifestChecker.java +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +cannot_access_parent_path_error=Could not access parent folder of [{}]. +different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. +bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. +os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. + +#for MetadataChecker.java +missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". + +#for VersionChecker.java +old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. + +#for AbstractCreateManifestVistor +skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. +skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. + +#for BagCreator.java +creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. +creating_payload_manifests=Creating payload manifest(s). +creating_tag_manifests=Creating tag manifest(s). +calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). + +#for Hasher.java +adding_checksum=Adding [{}] to manifest with hash [{}]. + +#for UnsupportedAlgorithmException.java +algorithm_not_supported_error=[{}] is not supported\! + +#for BagitTextFileReader.java +reading_version_and_encoding=Reading [{}] for version and encoding. +bagit_version=BagIt-Version is [{}]. +tag_file_encoding=Tag-File-Character-Encoding is [{}]. +invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. + +#for UnparsableVersionException.java +unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! + +#for FetchReader.java +reading_fetch_file=Attempting to read [{}]. +read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. +invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . + +#for KeyValueReader.java +read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. +found_indented_line=Found an indented line - merging it with key [{}]. +malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. + +#for ManifestReader.java +attempting_read_manifests=Attempting to find and read manifests. +found_tagmanifest=Found tag manifest [{}]. +found_payload_manifest=Found payload manifest [{}]. +reading_manifest=Reading manifest [{}]. + +#for MetadataReader.java +attempting_read_metadata=Attempting to read bag metadata file. +found_metadata_file=Found metadata file [{}]. + +#for TagFileReader.java +removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +invalid_url_format_error=URL [{}] is invalid\! + +#for BagVerifier.java +checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_payload_checksums=Checking payload manifest(s) checksums. +checking_tag_file_checksums=Checking tag manifest(s) checksums. +checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. + +#for CheckIfFileExistsTask.java +different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! + +#for CheckManifestHashesTask.java +checking_checksums=Checking file [{}] to see if checksum matches [{}]. + +#for CorruptChecksumException.java +corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. + +#for FileCoundAndTotalSizeVisitor.java +file_size_in_bytes=File [{}] has a size of [{}] bytes. + +#for MandatoryVerifier.java +checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +fetch_item_missing_error=Fetch item [{}] has not been fetched\! +file_should_exist_error=File [{}] should exist but it doesn't\! +checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). + +#for MissingPayloadManifestException.java +missing_payload_manifest_error=Bag does not contain a payload manifest file\! + +#for PayloadFileExistsInAllManifestsVistor.java +file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! +file_in_all_manifests=[{}] is in all manifests. +file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! + +#for PayloadVerifier.java +all_files_in_manifests=Getting all files listed in the manifest(s). +get_listing_in_manifest=Getting files and checksums listed in [{}]. +check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. +missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. + +#for QuickVerifier.java +found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. +payload_oxum_missing_error=Payload-Oxum does not exist in bag\! +parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! + +#for BagitFileWriter.java +write_bagit_file_to_path=Writing bagit.txt file to [{}] +writing_line_to_file=Writing line [{}] to [{}] + +#for BagWriter.java +writing_payload_files=Writing payload files. +upsert_payload_oxum=Upserting payload-oxum. +writing_bagit_file=Writing the bagit.txt file. +writing_payload_manifests=Writing the payload manifest(s). +writing_bag_metadata=Writing the bag metadata. +writing_fetch_file=Writing the fetch file. +writing_tag_manifests=Writing the tag manifest(s). + +#for FetchWriter.java +writing_fetch_file_to_path=Writing fetch.txt to [{}]. + +#for ManifestWriter.java +writing_manifest_to_path=Writing manifest to [{}]. + +#for MetadataWriter.java +writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. + +#for PayloadWriter.java +writing_payload_file_to_path=Writing payload file [{}] to [{}]. +skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 32edf79df3eb9741bf20c541a2e7d4f4ff99a246 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 07:51:27 -0500 Subject: [PATCH 040/201] New translations MessageBundle.properties (Indonesian) --- src/main/resources/MessageBundle_id_ID.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties index d06a16094..faba3ba55 100644 --- a/src/main/resources/MessageBundle_id_ID.properties +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -145,7 +145,7 @@ found_metadata_file=Found metadata file [{}]. removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! +invalid_url_format_error=URL [{}] Tidak cocok\! #for BagVerifier.java checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. From 84b89fabc5a713819df3a1a32e06cc2a14e89ae4 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 28 Feb 2018 08:05:33 -0500 Subject: [PATCH 041/201] New translations MessageBundle.properties (Indonesian) --- src/main/resources/MessageBundle_id_ID.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties index faba3ba55..584e6faad 100644 --- a/src/main/resources/MessageBundle_id_ID.properties +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -2,8 +2,8 @@ #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] +fetch_allowed=Apakah diperbolehkan untuk mengambil berkas? [{}] +serialization_allowed=Serialisasi adalah\: [{}] parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section identifier=Identifier is [{}] source_organization=Source-Organization is [{}] @@ -58,7 +58,7 @@ bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! +fetch_file_not_allowed_error=Berkas yang telah diambil ditemukan di dalam tas [{}]\! #for MetadataValueIsNotAcceptableException.java metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! @@ -77,7 +77,7 @@ bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. +cannot_access_parent_path_error=Folder utama tidak bisa di akses dari [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. From 4a8c23afa024b479a52771c6ada6608894b70865 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Sun, 4 Mar 2018 06:01:20 -0500 Subject: [PATCH 042/201] New translations MessageBundle.properties (Afrikaans) --- .../resources/MessageBundle_af_ZA.properties | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/resources/MessageBundle_af_ZA.properties b/src/main/resources/MessageBundle_af_ZA.properties index d06a16094..b8f1bcab4 100644 --- a/src/main/resources/MessageBundle_af_ZA.properties +++ b/src/main/resources/MessageBundle_af_ZA.properties @@ -2,21 +2,21 @@ #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] +fetch_allowed=Apakah mengambil berkas diizinkan? [{}] +serialization_allowed=Serialisasi adalah\: [{}] parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] +identifier=Pengenal adalah [{}] +source_organization=Organisasi Sumber adalah [{}] +contact_name=Nama Kontak adalah [{}] +contact_email=Surel Kontak adalah [{}] +external_description=Deskripsi Eksternal adalah [{}] +version=Versi adalah [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +acceptable_serialization_mime_types=Jenis MIME serialiasi yang dapat diterima adalah {} required_tagmanifest_types=Required Tagmanifest types are {} tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} +acceptable_bagit_versions=Versi bagit yang bisa diterima adalah {} #for BagitWarning.java bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. From 6a760871e0e2654bef857371a89b2f70ef37fb35 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:12:44 -0400 Subject: [PATCH 043/201] New translations MessageBundle.properties (Italian) --- .../resources/MessageBundle_it_IT.properties | 102 +++++++++--------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index d06a16094..91124966e 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -2,78 +2,78 @@ #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} +fetch_allowed=Recupero file sono ammessi? [{}] +serialization_allowed=La serializzazione \u00e8\: [{}] +parsing_bagit_profile_info_section=Analisi della sezione BagIt-profilo-Info +identifier=Identificatore \u00e8 [{}] +source_organization=Organizzazione di origine \u00e8 [{}] +contact_name=Contatto-nome \u00e8 [{}] +contact_email=E-mail di contatto \u00e8 [{}] +external_description=Esterno-Descrizione \u00e8 [{}] +version=Versione \u00e8 [{}] +parsing_bag_info=Analisi della sezione di borsa-Info +required_manifest_types=Tipi di manifesto richiesto {} +acceptable_serialization_mime_types=Tipi MIME accettabili di serializzazione sono {} +required_tagmanifest_types=Sono necessari tipi di Tagmanifest {} +tag_files_required=Contrassegnare i file richiesti sono {} +acceptable_bagit_versions=Sono accettabili bagit versioni {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +bag_within_a_bag=Una directory di dati pu\u00f2 contenere qualsiasi cosa, compreso un altro sacchetto. Tuttavia sarebbe meglio unire le borse. +different_case=La borsa contiene due file che differiscono solo nel caso. Questo pu\u00f2 causare problemi su un filesystem come quello utilizzato da apple (HFS). +different_normalization=La borsa contiene due file che differiscono solo per la normalizzazione. Ci\u00f2 pu\u00f2 causare verifica mancato su alcuni sistemi e la confusione generale dell'utente. +extra_lines_in_bagit_files=La specifica bagit dice che deve contenere solo 2 linee. Tuttavia, alcune implementazioni hanno deciso di ignorare ci\u00f2 che pu\u00f2 causare problemi di compatibilit\u00e0 +leading_dot_slash=Un manifesto elenca tutti i file di dati come relativo alla directory radice di borsa, \u00e8 superfluo specificarlo pertanto con un punto. +non_standard_algorithm=L'algoritmo di checksum utilizzato non vengono fornito con il runtime di Java. \u00c8 consigliabile utilizzare SHA-512. +md5sum_tool_generated_manifest=Il manifesto \u00e8 stato creato utilizzando l'utilit\u00e0 di checksum come quelli contenuti nel pacchetto GNU Coreutils (md5sum, sha1sum, ecc.), denominati collettivamente qui come 'md5sum'. Questo crea lievi differenze nei manifesti generati che possono causare problemi in alcune implementazioni. +missing_tag_manifest=Il manifesto di tag protezioni contro un manifesto di carico utile troncato come pure altri potenziali problemi ed \u00e8 sempre consigliato che essere inclusi. +old_bagit_version=La versione della specifica bagit non \u00e8 dei pi\u00f9 nuovi. Considerare la conversione alla versione pi\u00f9 recente. +os_specific_files=I file creati dal sistema operativo (OS) per il proprio usano. Essi sono non portabile tra versioni del sistema operativo e non devono essere inclusi in qualsiasi manifesto. Thumbs. DB esempi su Windows o. DS_Store su OS X +payload_oxum_missing=Si consiglia di includere sempre il Payload-Oxum nei metadati borsa poich\u00e9 permette per una verifica rapida del' della borsa. +tag_files_encoding=Si consiglia di utilizzare sempre UTF-8. +weak_checksum_algorithm=L'algoritmo di checksum utilizzato \u00e8 noto per essere debole. Raccomandiamo l'uso di SHA-512. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +checking_encoding_problems=Controllo dei problemi di codifica. +checking_latest_version=Controllo della versione pi\u00f9 recente. +checking_manifest_problems=Il controllo si manifesta per problemi. +checking_metadata_problems=Verifica dei metadati della borsa per problemi. +skipping_check_extra_lines=Ignorare il controllo di linee extra nei file Bagit. +checking_extra_lines=Verifica se [{}] contiene pi\u00f9 di 2 righe. +extra_lines_warning=La specifica bagit afferma che il file bagit.txt deve contenere esattamente 2 righe. Tuttavia abbiamo trovato [{}] linee, alcune implementazioni lo ignoreranno ma potrebbero causare problemi di incompatibilit\u00e0 con altri strumenti. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. +checking_fetch_file_allowed=Verifica se il file di recupero \u00e8 consentito per la borsa [{}]. +checking_metadata_entry_required=Verifica se [{}] \u00e8 richiesto nei metadati della borsa. +check_values_acceptable=Verifica se tutti i valori elencati per [{}] sono accettabili. +check_required_manifests_present=Verifica se sono presenti tutti i manifesti richiesti. +required_tag_manifest_type_not_present=Il tipo manifest del tag richiesto [{}] non era presente. +required_manifest_type_not_present=Il tipo manifest del tag richiesto [{}] non era presente. +checking_required_tag_file_exists=Verifica se esistono tutti i tag file richiesti. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. +bagit_version_not_acceptable_error=La versione [{}] non \u00e8 nell'elenco di {} accettabile. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! +required_metadata_field_not_present_error=Il profilo specifica il campo dei metadati [{}] \u00e8 richiesto ma non \u00e8 stato trovato\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! +fetch_file_not_allowed_error=Il file di recupero \u00e8 stato trovato nella borsa [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! +metadata_value_not_acceptable_error=Il profilo specifica che i valori accettabili per [{}] sono {} ma trovati [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! +metadata_value_not_repeatable_error=Il profilo specifica che il valore [{}] non \u00e8 ripetibile, ma \u00e8 stato elencato pi\u00f9 volte\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! +required_tag_file_not_found_error=Il file di tag richiesto [{}] non \u00e8 stato trovato\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. +tag_files_not_encoded_with_utf8_warning=I file di tag sono codificati con [{}]. Raccomandiamo sempre di utilizzare UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=La borsa [{}] non contiene un tag manifest, che \u00e8 sempre consigliato. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. @@ -152,7 +152,7 @@ checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. +checking_bag_is_complete=Verifica se il bag con la directory root [{}] \u00e8 completo. #for CheckIfFileExistsTask.java different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! From e8cbab25b0f7458602484f46f1fa1d16adb42ae0 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:21:55 -0400 Subject: [PATCH 044/201] New translations MessageBundle.properties (Italian) --- .../resources/MessageBundle_it_IT.properties | 70 +++++++++---------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index 91124966e..26e7152c2 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -155,64 +155,64 @@ checksums_not_matching_error=[{}] errors occured. At least one of the errors is checking_bag_is_complete=Verifica se il bag con la directory root [{}] \u00e8 completo. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! +different_normalization_on_filesystem_warning=Il nome file [{}] ha una diversa normalizzazione rispetto a ci\u00f2 che \u00e8 contenuto nel filesystem\! +error_reading_normalized_file=Errore durante il tentativo di leggere [{}] per vedere se tutti i file in quella directory corrispondono al nome file normalizzato di [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. +checking_checksums=Verifica del file [{}] per verificare se il checksum corrisponde a [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. +corrupt_checksum_error=Il file [{}] dovrebbe avere un [{}] hash di [{}] ma \u00e8 stato calcolato [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. +file_size_in_bytes=Il file [{}] ha una dimensione di [{}] byte. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). +checking_fetch_items_exist=Verifica se tutti gli elementi [{}] in fetch.txt esistono nella directory [{}]. +fetch_item_missing_error=L'elemento di recupero [{}] non \u00e8 stato recuperato\! +file_should_exist_error=Il file [{}] dovrebbe esistere ma non lo \u00e8\! +checking_payload_directory_exists=Verifica se esiste una directory di payload speciale (solo per la versione 0.97 e precedenti). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! +missing_payload_manifest_error=La borsa non contiene un file manifest payload\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! +file_not_in_manifest_error=Il file [{}] si trova nella directory del payload ma non \u00e8 elencato nel manifest manifest - {}. Txt\! +file_in_all_manifests=[{}] \u00e8 in tutti i manifesti. +file_not_in_any_manifest_error=Il file [{}] si trova nella directory del payload ma non \u00e8 elencato in alcun manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. +all_files_in_manifests=Ottenere tutti i file elencati nel manifest (s). +get_listing_in_manifest=Ottenere file e checksum elencati in [{}]. +check_all_files_in_manifests_exist=Verifica se esistono tutti i file elencati nel manifest. +missing_payload_files_error=Manifest (s) contiene file (s) {} ma non esistono\! +checking_file_in_at_least_one_manifest=Verifica se tutti i file di payload (file nella directory [{}]) sono elencati in almeno un manifest. +checking_file_in_all_manifests=Verifica se tutti i file di payload (file nella directory [{}]) sono elencati in tutti i manifesti. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! +found_payload_oxum=Trovato Payload-Oxum [{}] per la borsa [{}]. +payload_oxum_missing_error=Payload-Oxum non esiste in borsa\! +parse_size_in_bytes=Analisi [{}] per la dimensione totale del byte dell'ossido di payload. +parse_number_of_files=Analisi [{}] per il numero di file da trovare nella directory del payload. +compare_payload_oxums=Carico utile fornito\: [{}], carico utile calcolato\: [{}. {}], Per la directory del payload [{}]. +invalid_total_size_error=Dimensione totale non valida. Previsto [{}] ma calcolato [{}]\! +invalid_file_cound_error=Conteggio file non valido. Previsto [{}] ma trovato [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] +write_bagit_file_to_path=Scrivi il file bagit.txt su [{}] +writing_line_to_file=Linea di scrittura [{}] a [{}] #for BagWriter.java -writing_payload_files=Writing payload files. +writing_payload_files=Scrivere file di payload. upsert_payload_oxum=Upserting payload-oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). +writing_bagit_file=Scrivere il file bagit.txt. +writing_payload_manifests=Scrittura del manifest (i) carico (i). +writing_bag_metadata=Scrivere i metadati della borsa. +writing_fetch_file=Scrivere il file di recupero. +writing_tag_manifests=Scrivere i tag manifest (s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. +writing_fetch_file_to_path=Scrivi fetch.txt su [{}]. #for ManifestWriter.java writing_manifest_to_path=Writing manifest to [{}]. From 6c96ef1da4d650fe3728ff74d2720d14cf2fdd2b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:39:23 -0400 Subject: [PATCH 045/201] New translations MessageBundle.properties (Italian) --- .../resources/MessageBundle_it_IT.properties | 108 +++++++++--------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index 26e7152c2..d5a50f427 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -74,84 +74,84 @@ tag_files_not_encoded_with_utf8_warning=I file di tag sono codificati con [{}]. #For ManifestChecker.java bag_missing_tag_manifest_warning=La borsa [{}] non contiene un tag manifest, che \u00e8 sempre consigliato. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +different_case_warning=Nel manifest [{}], il percorso [{}] \u00e8 uguale a un altro percorso, ad eccezione del caso. Questo pu\u00f2 causare problemi se si sposta la borsa in un file system che non fa distinzione tra maiuscole e minuscole. +manifest_line_violated_spec_error=Manifest contiene la riga [{}] che non segue la forma specificata di +md5sum_generated_line_warning=Il percorso [{}] inizia con *, il che significa che \u00e8 stato generato con uno strumento non-bagit. Si consiglia di rimuovere * per conformarsi alle specifiche bagit. +cannot_access_parent_path_error=Impossibile accedere alla cartella principale di [{}]. +different_normalization_in_manifest_warning=Il file [{}] ha una diversa normalizzazione rispetto a quanto specificato nel manifest. +bag_within_bag_warning=Raccomandiamo vivamente di non conservare una borsa all'interno di una borsa poich\u00e9 \u00e8 noto che causa problemi. +leading_dot_slash_warning=In manifest [{}] line [{}] \u00e8 un percorso non normalizzato. +os_specific_files_warning=Nella riga manifest {{}] [{}] contiene un file specifico del sistema operativo. +weak_algorithm_warning=Rilevato un algoritmo debole noto [{}]. Con i grandi progressi nell'hardware dei computer, c'\u00e8 poco da fare per usare pi\u00f9 bit per calcolare il checksum. +non_standard_algorithm_warning=Algoritmo rilevato [{}] che non \u00e8 incluso di default in Java. Questo render\u00e0 pi\u00f9 difficile leggere questa borsa su alcuni sistemi. Prendi in considerazione la possibilit\u00e0 di cambiarlo in SHA-512. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". +missing_payload_oxum_warning=La chiave Payload-Oxum non \u00e8 stata trovata nei metadati della borsa. Ci\u00f2 impedir\u00e0 una "verifica rapida". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Versione trovata [{}] della specifica bagit ma l'ultima versione \u00e8 [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. +skipping_hidden_file=Salto [{}] poich\u00e9 ignoriamo i file nascosti. +skipping_ignored_directory=Salto [{}] poich\u00e9 ignoriamo le directory nascoste. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). +creating_bag=Creazione di una borsa con la versione\: [{}] nella directory\: [{}]. +creating_payload_manifests=Creazione di manifest (e) payload. +creating_tag_manifests=Creazione di tag manifest (s). +calculating_payload_oxum=Calcolo dell'ossido di payload nella directory dei dati [{}]. +creating_metadata_file=Creazione del file di metadati della borsa (bag-info.txt o package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. +adding_checksum=Aggiunta di [{}] a manifest con l'hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! +algorithm_not_supported_error=[{}] non \u00e8 supportato\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +reading_version_and_encoding=Lettura [{}] per versione e codifica. +bagit_version=BagIt-Versione \u00e8 [{}]. +tag_file_encoding=La codifica dei caratteri del file tag \u00e8 [{}]. +invalid_bagit_text_file_error=bagit.txt DEVE contenere voci "BagIt-Version" e "Tag-File-Character-Encoding"\! +bom_present_error=Il file [{}] contiene un byte order mark (BOM) che non \u00e8 consentito dalle specifiche bagit\! +strict_only_two_lines_error=Il file bagit.txt DEVE contenere solo 2 righe. Linee aggiuntive trovate\: [{}] +strict_first_line_error=La prima riga di bagit.txt deve seguire lo schema di\: [BagIt-Version\: ]. Ma trovato invece [{}]. Vedi le specifiche per maggiori informazioni. +strict_second_line_error=La seconda riga di bagit.txt deve seguire lo schema di\: [Tag-File-Character-Encoding\: ]. Ma trovato invece [{}]. Vedi le specifiche per maggiori informazioni. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! +unparsable_version_error=La versione deve essere in formato MAGGIORE.MINORE ma era [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . +reading_fetch_file=Tentativo di leggere [{}]. +read_fetch_file_line=Leggi URL [{}] lunghezza [{}] percorso [{}] dal file di recupero [{}]. +invalid_fetch_file_line_error=La linea [{}] non \u00e8 valida per fetch.txt. Ogni riga deve assumere la forma di . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +read_key_value_line=Valore chiave [{}] trovato [{}] nel file [{}] utilizzando la regex divisa [{}]. +found_indented_line=Trovato una linea rientrata - unendola con la chiave [{}]. +malformed_key_value_line_error=La linea [{}] non soddisfa le specifiche bagit per un file di tag bag. Forse intendevi indentarlo con uno spazio o una scheda? O forse non hai usato i due punti per separare la chiave dal valore? Deve seguire la forma di {} o se continuare da un'altra linea deve essere rientrato da uno spazio o una scheda. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. +attempting_read_manifests=Tentativo di trovare e leggere manifesti. +found_tagmanifest=Trovato tag manifest [{}]. +found_payload_manifest=Trovato manifest payload [{}]. +reading_manifest=Lettura del manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. +attempting_read_metadata=Tentativo di leggere il file dei metadati della borsa. +found_metadata_file=Trovato file di metadati [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! +removing_asterisk=Percorso incontrato creato dallo strumento non-bagit. Rimozione * dal percorso. Si prega di rimuovere tutti * dai file manifest\! +blackslash_used_as_path_separator_error=[{}] non \u00e8 valido a causa dell'uso del separatore di percorso [\\]\! +malicious_path_error=[{}] sta cercando di essere dannoso e accede a un file al di fuori della borsa\! +invalid_url_format_error=L'URL [{}] non \u00e8 valido\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checking_bag_is_valid=Verifica se il bag con la directory root [{}] \u00e8 valido. +checking_payload_checksums=Verifica dei checksum del manifest payload. +checking_tag_file_checksums=Controllo dei checksum del tag manifest (s). +checksums_not_matching_error=[{}] errori verificatisi. Almeno uno degli errori \u00e8 dovuto al fatto che gli hash non corrispondono. checking_bag_is_complete=Verifica se il bag con la directory root [{}] \u00e8 completo. #for CheckIfFileExistsTask.java @@ -215,11 +215,11 @@ writing_tag_manifests=Scrivere i tag manifest (s). writing_fetch_file_to_path=Scrivi fetch.txt su [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. +writing_manifest_to_path=Scrivi manifest su [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. +writing_metadata_to_path=File di metadati della borsa da scrittura [{}] a [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. +writing_payload_file_to_path=Scrittura del file del carico utile [{}] su [{}]. +skip_fetch_item_when_writing_payload=Salto del file di payload {} perch\u00e9 si trova nell'elenco di recupero. From f029a0c9ff6112f2ae5636ed2554417ee8d52ea6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:51:53 -0400 Subject: [PATCH 046/201] New translations MessageBundle.properties (Afrikaans) --- .../resources/MessageBundle_af_ZA.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_af_ZA.properties b/src/main/resources/MessageBundle_af_ZA.properties index b8f1bcab4..cc45f7255 100644 --- a/src/main/resources/MessageBundle_af_ZA.properties +++ b/src/main/resources/MessageBundle_af_ZA.properties @@ -14,7 +14,7 @@ version=Versi adalah [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Jenis MIME serialiasi yang dapat diterima adalah {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Versi bagit yang bisa diterima adalah {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Versi bagit yang bisa diterima adalah {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 68cd73fd94a09d04d40f61e3e47cb8fe945ee5ad Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:51:55 -0400 Subject: [PATCH 047/201] New translations MessageBundle.properties (Serbian (Cyrillic)) --- .../resources/MessageBundle_sr_SP.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_sr_SP.properties b/src/main/resources/MessageBundle_sr_SP.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_sr_SP.properties +++ b/src/main/resources/MessageBundle_sr_SP.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 233ef58b66302caa02548c704af3eb73c3c8602b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:51:56 -0400 Subject: [PATCH 048/201] New translations MessageBundle.properties (Romanian) --- .../resources/MessageBundle_ro_RO.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_ro_RO.properties b/src/main/resources/MessageBundle_ro_RO.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_ro_RO.properties +++ b/src/main/resources/MessageBundle_ro_RO.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From e04abaf28bc82aefa5835a8bb71eef403181e2a8 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:51:57 -0400 Subject: [PATCH 049/201] New translations MessageBundle.properties (Portuguese) --- .../resources/MessageBundle_pt_PT.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_pt_PT.properties b/src/main/resources/MessageBundle_pt_PT.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_pt_PT.properties +++ b/src/main/resources/MessageBundle_pt_PT.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From fa0886cfabdfec0574b17d02cf5bbf8f20a4b7d3 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:51:59 -0400 Subject: [PATCH 050/201] New translations MessageBundle.properties (Japanese) --- .../resources/MessageBundle_ja_JP.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_ja_JP.properties b/src/main/resources/MessageBundle_ja_JP.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_ja_JP.properties +++ b/src/main/resources/MessageBundle_ja_JP.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 02a9ff7eaa9797329ff57e952ea0af9f0ab9d5dc Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:01 -0400 Subject: [PATCH 051/201] New translations MessageBundle.properties (French) --- .../resources/MessageBundle_fr_FR.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_fr_FR.properties b/src/main/resources/MessageBundle_fr_FR.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_fr_FR.properties +++ b/src/main/resources/MessageBundle_fr_FR.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From b2f7846a261b922aa0937c0855dd31304528013b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:03 -0400 Subject: [PATCH 052/201] New translations MessageBundle.properties (Chinese Traditional) --- .../resources/MessageBundle_zh_TW.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_zh_TW.properties b/src/main/resources/MessageBundle_zh_TW.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_zh_TW.properties +++ b/src/main/resources/MessageBundle_zh_TW.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 2158ed08a108a4b79262969647c6718e6e2d299c Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:05 -0400 Subject: [PATCH 053/201] New translations MessageBundle.properties (Chinese Simplified) --- .../resources/MessageBundle_zh_CN.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_zh_CN.properties b/src/main/resources/MessageBundle_zh_CN.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_zh_CN.properties +++ b/src/main/resources/MessageBundle_zh_CN.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From feee8c20cdae56212394bf3044acf16c4108c297 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:07 -0400 Subject: [PATCH 054/201] New translations MessageBundle.properties (Arabic) --- .../resources/MessageBundle_ar_SA.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_ar_SA.properties b/src/main/resources/MessageBundle_ar_SA.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_ar_SA.properties +++ b/src/main/resources/MessageBundle_ar_SA.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 122ae2f0a8168608be3b194fda5a78cf91ac346a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:08 -0400 Subject: [PATCH 055/201] New translations MessageBundle.properties (Italian) --- .../resources/MessageBundle_it_IT.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index d5a50f427..23bf68ace 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -14,7 +14,7 @@ version=Versione \u00e8 [{}] parsing_bag_info=Analisi della sezione di borsa-Info required_manifest_types=Tipi di manifesto richiesto {} acceptable_serialization_mime_types=Tipi MIME accettabili di serializzazione sono {} -required_tagmanifest_types=Sono necessari tipi di Tagmanifest {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Contrassegnare i file richiesti sono {} acceptable_bagit_versions=Sono accettabili bagit versioni {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Sono accettabili bagit versioni {} bag_within_a_bag=Una directory di dati pu\u00f2 contenere qualsiasi cosa, compreso un altro sacchetto. Tuttavia sarebbe meglio unire le borse. different_case=La borsa contiene due file che differiscono solo nel caso. Questo pu\u00f2 causare problemi su un filesystem come quello utilizzato da apple (HFS). different_normalization=La borsa contiene due file che differiscono solo per la normalizzazione. Ci\u00f2 pu\u00f2 causare verifica mancato su alcuni sistemi e la confusione generale dell'utente. -extra_lines_in_bagit_files=La specifica bagit dice che deve contenere solo 2 linee. Tuttavia, alcune implementazioni hanno deciso di ignorare ci\u00f2 che pu\u00f2 causare problemi di compatibilit\u00e0 +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=Un manifesto elenca tutti i file di dati come relativo alla directory radice di borsa, \u00e8 superfluo specificarlo pertanto con un punto. non_standard_algorithm=L'algoritmo di checksum utilizzato non vengono fornito con il runtime di Java. \u00c8 consigliabile utilizzare SHA-512. md5sum_tool_generated_manifest=Il manifesto \u00e8 stato creato utilizzando l'utilit\u00e0 di checksum come quelli contenuti nel pacchetto GNU Coreutils (md5sum, sha1sum, ecc.), denominati collettivamente qui come 'md5sum'. Questo crea lievi differenze nei manifesti generati che possono causare problemi in alcune implementazioni. -missing_tag_manifest=Il manifesto di tag protezioni contro un manifesto di carico utile troncato come pure altri potenziali problemi ed \u00e8 sempre consigliato che essere inclusi. -old_bagit_version=La versione della specifica bagit non \u00e8 dei pi\u00f9 nuovi. Considerare la conversione alla versione pi\u00f9 recente. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=I file creati dal sistema operativo (OS) per il proprio usano. Essi sono non portabile tra versioni del sistema operativo e non devono essere inclusi in qualsiasi manifesto. Thumbs. DB esempi su Windows o. DS_Store su OS X payload_oxum_missing=Si consiglia di includere sempre il Payload-Oxum nei metadati borsa poich\u00e9 permette per una verifica rapida del' della borsa. tag_files_encoding=Si consiglia di utilizzare sempre UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Il controllo si manifesta per problemi. checking_metadata_problems=Verifica dei metadati della borsa per problemi. skipping_check_extra_lines=Ignorare il controllo di linee extra nei file Bagit. checking_extra_lines=Verifica se [{}] contiene pi\u00f9 di 2 righe. -extra_lines_warning=La specifica bagit afferma che il file bagit.txt deve contenere esattamente 2 righe. Tuttavia abbiamo trovato [{}] linee, alcune implementazioni lo ignoreranno ma potrebbero causare problemi di incompatibilit\u00e0 con altri strumenti. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Verifica se il file di recupero \u00e8 consentito per la borsa [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=I file di tag sono codificati con [{}]. bag_missing_tag_manifest_warning=La borsa [{}] non contiene un tag manifest, che \u00e8 sempre consigliato. different_case_warning=Nel manifest [{}], il percorso [{}] \u00e8 uguale a un altro percorso, ad eccezione del caso. Questo pu\u00f2 causare problemi se si sposta la borsa in un file system che non fa distinzione tra maiuscole e minuscole. manifest_line_violated_spec_error=Manifest contiene la riga [{}] che non segue la forma specificata di -md5sum_generated_line_warning=Il percorso [{}] inizia con *, il che significa che \u00e8 stato generato con uno strumento non-bagit. Si consiglia di rimuovere * per conformarsi alle specifiche bagit. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Impossibile accedere alla cartella principale di [{}]. different_normalization_in_manifest_warning=Il file [{}] ha una diversa normalizzazione rispetto a quanto specificato nel manifest. -bag_within_bag_warning=Raccomandiamo vivamente di non conservare una borsa all'interno di una borsa poich\u00e9 \u00e8 noto che causa problemi. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] \u00e8 un percorso non normalizzato. os_specific_files_warning=Nella riga manifest {{}] [{}] contiene un file specifico del sistema operativo. weak_algorithm_warning=Rilevato un algoritmo debole noto [{}]. Con i grandi progressi nell'hardware dei computer, c'\u00e8 poco da fare per usare pi\u00f9 bit per calcolare il checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Algoritmo rilevato [{}] che non \u00e8 incluso di missing_payload_oxum_warning=La chiave Payload-Oxum non \u00e8 stata trovata nei metadati della borsa. Ci\u00f2 impedir\u00e0 una "verifica rapida". #for VersionChecker.java -old_version_warning=Versione trovata [{}] della specifica bagit ma l'ultima versione \u00e8 [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Salto [{}] poich\u00e9 ignoriamo i file nascosti. @@ -115,8 +115,8 @@ tag_file_encoding=La codifica dei caratteri del file tag \u00e8 [{}]. invalid_bagit_text_file_error=bagit.txt DEVE contenere voci "BagIt-Version" e "Tag-File-Character-Encoding"\! bom_present_error=Il file [{}] contiene un byte order mark (BOM) che non \u00e8 consentito dalle specifiche bagit\! strict_only_two_lines_error=Il file bagit.txt DEVE contenere solo 2 righe. Linee aggiuntive trovate\: [{}] -strict_first_line_error=La prima riga di bagit.txt deve seguire lo schema di\: [BagIt-Version\: ]. Ma trovato invece [{}]. Vedi le specifiche per maggiori informazioni. -strict_second_line_error=La seconda riga di bagit.txt deve seguire lo schema di\: [Tag-File-Character-Encoding\: ]. Ma trovato invece [{}]. Vedi le specifiche per maggiori informazioni. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=La versione deve essere in formato MAGGIORE.MINORE ma era [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=La linea [{}] non \u00e8 valida per fetch.txt. Ogn #for KeyValueReader.java read_key_value_line=Valore chiave [{}] trovato [{}] nel file [{}] utilizzando la regex divisa [{}]. found_indented_line=Trovato una linea rientrata - unendola con la chiave [{}]. -malformed_key_value_line_error=La linea [{}] non soddisfa le specifiche bagit per un file di tag bag. Forse intendevi indentarlo con uno spazio o una scheda? O forse non hai usato i due punti per separare la chiave dal valore? Deve seguire la forma di {} o se continuare da un'altra linea deve essere rientrato da uno spazio o una scheda. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Tentativo di trovare e leggere manifesti. @@ -151,7 +151,7 @@ invalid_url_format_error=L'URL [{}] non \u00e8 valido\! checking_bag_is_valid=Verifica se il bag con la directory root [{}] \u00e8 valido. checking_payload_checksums=Verifica dei checksum del manifest payload. checking_tag_file_checksums=Controllo dei checksum del tag manifest (s). -checksums_not_matching_error=[{}] errori verificatisi. Almeno uno degli errori \u00e8 dovuto al fatto che gli hash non corrispondono. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Verifica se il bag con la directory root [{}] \u00e8 completo. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Verifica se tutti i file di payload (file nella d #for QuickVerifier.java found_payload_oxum=Trovato Payload-Oxum [{}] per la borsa [{}]. payload_oxum_missing_error=Payload-Oxum non esiste in borsa\! -parse_size_in_bytes=Analisi [{}] per la dimensione totale del byte dell'ossido di payload. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Analisi [{}] per il numero di file da trovare nella directory del payload. -compare_payload_oxums=Carico utile fornito\: [{}], carico utile calcolato\: [{}. {}], Per la directory del payload [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Dimensione totale non valida. Previsto [{}] ma calcolato [{}]\! invalid_file_cound_error=Conteggio file non valido. Previsto [{}] ma trovato [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Linea di scrittura [{}] a [{}] #for BagWriter.java writing_payload_files=Scrivere file di payload. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Scrivere il file bagit.txt. writing_payload_manifests=Scrittura del manifest (i) carico (i). writing_bag_metadata=Scrivere i metadati della borsa. @@ -223,3 +223,4 @@ writing_metadata_to_path=File di metadati della borsa da scrittura [{}] a [{}]. #for PayloadWriter.java writing_payload_file_to_path=Scrittura del file del carico utile [{}] su [{}]. skip_fetch_item_when_writing_payload=Salto del file di payload {} perch\u00e9 si trova nell'elenco di recupero. + From 1145ed70d0a26853cbf09ba1ce61834d90869c9a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:09 -0400 Subject: [PATCH 056/201] New translations MessageBundle.properties (Vietnamese) --- .../resources/MessageBundle_vi_VN.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_vi_VN.properties b/src/main/resources/MessageBundle_vi_VN.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_vi_VN.properties +++ b/src/main/resources/MessageBundle_vi_VN.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 0ff6fcb0aafa7a304196a5777dc34bfd8375c5ef Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:12 -0400 Subject: [PATCH 057/201] New translations MessageBundle.properties (Ukrainian) --- .../resources/MessageBundle_uk_UA.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_uk_UA.properties b/src/main/resources/MessageBundle_uk_UA.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_uk_UA.properties +++ b/src/main/resources/MessageBundle_uk_UA.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 5f67c821df5e3b81748c2d2fa43c1c9daa583434 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:13 -0400 Subject: [PATCH 058/201] New translations MessageBundle.properties (Turkish) --- .../resources/MessageBundle_tr_TR.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_tr_TR.properties b/src/main/resources/MessageBundle_tr_TR.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_tr_TR.properties +++ b/src/main/resources/MessageBundle_tr_TR.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 6559de7a22322b5a5a20d6fd43a00d44834ccad9 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:14 -0400 Subject: [PATCH 059/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From aff52b2388fa3a845fc7f298e6f7c56795d5f0c0 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:15 -0400 Subject: [PATCH 060/201] New translations MessageBundle.properties (Spanish) --- .../resources/MessageBundle_es_ES.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index 5c06b7a21..ea498f97d 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -14,7 +14,7 @@ version=La versi\u00f3n es [{}] parsing_bag_info=An\u00e1lisis de la secci\u00f3n de la bag-info required_manifest_types=Requerido tipos manifestados {} acceptable_serialization_mime_types=Tipos de serializaci\u00f3n MIME aceptable son {} -required_tagmanifest_types=Los tipos de Tagmanifest requeridos son {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Archivos de la etiqueta requeridos son {} acceptable_bagit_versions=Versiones aceptables de bagit son {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Versiones aceptables de bagit son {} bag_within_a_bag=Un directorio de data puede contener cualquier cosa, incluyendo otro bag. Sin embargo, ser\u00eda mejor fusionar bags juntas. different_case=El bag contiene dos archivos que difieren s\u00f3lo en caso. Esto puede causar problemas con los archivos del sistema como el usado por apple (HFS). different_normalization=El bag contiene dos archivos que difieren s\u00f3lo en la normalizaci\u00f3n. Esto puede causar que la verificaci\u00f3n falle en algunos sistemas, y confusi\u00f3n del usuario general. -extra_lines_in_bagit_files=Las especificaciones bagits dicen que s\u00f3lo deben contener 2 l\u00edneas. Sin embargo, algunas implementaciones han decidido ignorar esto lo que puede causar problemas de compatibilidad +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=Un manifiesto lista todos los archivos de data como relativo al directorio ra\u00edz de bolsa, es in\u00fatil por lo tanto especificarlo con un punto. non_standard_algorithm=El algoritmo de suma de comprobaci\\u00f3n usado no viene de un est\\u00e1ndar con una rutina de Java. Considera usar SHA512 en su lugar. md5sum_tool_generated_manifest=El manifiesto fue creado usando utilidades de suma de comprobaci\\u00f3n tales como las contenidas en el paquete GNU Coreutils (md5sum, sh1sum, etc), colectivamente referido aqu\\u00ed como 'md5sum'. Esto crea peque\\u00f1as diferencias en los manifestos generados lo que puede causar problemas en algunas implementaciones. -missing_tag_manifest=El manifiesto de etiqueta protege contra un manifiesto de carga truncada as\\u00ed como otros problemas potenciales y siempre es recomendado que sea incluido. -old_bagit_version=La versi\u00f3n especificaci\u00f3n bagit no es la m\u00e1s nueva. Considera convertir a la \u00faltima versi\u00f3n. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Archivos creados por el sistema operativo (SO) para su propio uso. Esos son no-portables a trav\u00e9s de la versiones SO y no deber\u00edan ser incluidas en ning\u00fan manifiesto. Ejemplos son Thumb.db en Windows o .DS_Store en OS X payload_oxum_missing=Es recomendado siempre incluir la Carga-Oxum en el metadata bag debido a que permite para una "r\u00e1pida verificaci\u00f3n" del bag. tag_files_encoding=Es recomendado siempre usar UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Comprobando manifiestos por problemas. checking_metadata_problems=Comprobando metadata bag por problemas. skipping_check_extra_lines=Saltar verificaci\\u00f3n de extra lineas en archivos bagit. checking_extra_lines=Comprobar si [{}] contiene m\\u00e1s de dos l\\u00edneas. -extra_lines_warning=La especificaciones bagit dice que el archivo bagit.txt debe contener exactamente 2 l\u00edneas. Sin embargo, encontramos [{}] l\u00edneas, algunas implementaciones ignorar\u00e1n esto pero puede causar problemas incompatibilidad con otras herramientas. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Comprobar si el archivo de recuperaci\u00f3n es permitido para bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Archivos de etiqueta se codifican con [{ bag_missing_tag_manifest_warning=Bag [{}] no contiene un manifiesto tag, lo cual siempre es recomendado. different_case_warning=En manifiesto [{}], ruta [{}] es igual a otra excepto para el caso. Esto puede causar problemas si mueve el bag a un archivo de sistemas que es caso sensitivo. manifest_line_violated_spec_error=Manifiesto contiene l\u00ednea [{}] la cual no sigue la forma especificada de -md5sum_generated_line_warning=Ruta [{}] comienza con un *, lo cual significa que fue generado con una herramienta no bagit. Es recomendado remover el * para poder cumplir con las especificaciones bagit. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=No se pudo acceder a la carpeta principal de [{}]. different_normalization_in_manifest_warning=Archivo [{}] tiene una diferente normalizaci\\u00f3n a lo que esta especificado en el manifiesto. -bag_within_bag_warning=Recomendamos efusivamente no guardar un bag en un bag ya que se sabe que causa problemas. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=En manifiesto [{}] l\u00ednea [{}] es una ruta no normalizada. os_specific_files_warning=En manifiesto [{}] l\u00ednea [{}] contiene un archivo espec\u00edfico de SO. weak_algorithm_warning=Detectado un algoritmo d\u00e9bil conocido [{}]. Con los grandes avances en hardware hay poco problema en usar m\u00e1s bits para calcular la suma de comprobaci\u00f3n. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Algoritmo detectado [{}] el cual no es incluido p missing_payload_oxum_warning=La clave Payload-Oxum no fue encontrada en la metadata bag. Esto evitar\u00e1 una "verificaci\u00f3n r\u00e1pida". #for VersionChecker.java -old_version_warning=Versi\u00f3n encontrada [{}] de la especificaci\u00f3n bagit pero la \u00faltima versi\u00f3n es [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Saltar [{}] ya que estamos ignorando archivos ocultos. @@ -115,8 +115,8 @@ tag_file_encoding=Etiqueta de codificaci\u00f3n de caracteres de archivo es [{}] invalid_bagit_text_file_error=\u00a1bagit.txt DEBE contener entradas\: 'Versi\u00f3n-Bagit' y 'Etiqueta de codificaci\u00f3n de caracteres de archivo'\! bom_present_error=\u00a1Archivo [{}] contiene un marca de orden byte (BOM, por sus siglas en ingl\u00e9s) lo cual no es permitido por las especificaciones de bagit\! strict_only_two_lines_error=El bagit.txt DEBE contener solamente 2 l\u00edneas. Extra l\u00edneas encontradas en\: [{}] -strict_first_line_error=La primera l\u00ednea del bagit.txt debe seguir el patr\u00f3n de\: [Versi\u00f3n-Bagit\: ]. Pero en su lugar encontr\u00f3 [{}]. Ver especificaciones para m\u00e1s informaci\u00f3n. -strict_second_line_error=La segunda l\u00ednea del bagit.txt debe seguir el siguiente patr\u00f3n de\: [Etiqueta de archivo de codificaci\u00f3n de caracteres\: ]. Pero encontr\u00f3 en su lugar\: [{}]. Ver las especificaciones para m\u00e1s informaci\u00f3n. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=\u00a1La versi\u00f3n debe estar en formato MAJOR.MINOR pero estaba [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=La l\u00ednea [{}] es inv\u00e1lida para fetch.txt #for KeyValueReader.java read_key_value_line=Encontr\u00f3 clave [{}] valor [{}] en archivo [{}] usando split regex [{}]. found_indented_line=Encontr\u00f3 una l\u00ednea marcada- fusionando con su llave [{}]. -malformed_key_value_line_error=L\u00ednea [{}] no cumple con las especificaciones bagit para un archivo de etiqueta bag. \u00bfTal vez quisiste marcarla con un espacio o una sangr\u00eda? \u00bfO quiz\u00e1s no usaste dos puntos para separar la clave de su valor? Debe seguir la forma de {} o si contin\u00faa de otra l\u00ednea debe ser marcada por un espacio o una sangr\u00eda. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Intentando encontrar y leer manifiestos. @@ -151,7 +151,7 @@ invalid_url_format_error=\u00a1URL [{}] es inv\u00e1lido\! checking_bag_is_valid=Comprobando si bag con directorio root [{}] es v\u00e1lido. checking_payload_checksums=Comprobando que suma de comprobaci\u00f3n de manifiesto de carga. checking_tag_file_checksums=Comprobando suma de comprobaci\u00f3n de manifiesto(s) de etiqueta. -checksums_not_matching_error=Errores [{}] ocurrieron. Al menos uno de esos errores se debe a los hashes que no coinciden. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Comprobando si el bag con directorio root [{}] est\u00e1 completo. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Comprobar si todos los archivos de carga (archivo #for QuickVerifier.java found_payload_oxum=Encontr\\u00f3 payload-oxum [{}] para bag [{}]. payload_oxum_missing_error=\u00a1Payload-Oxum no existe en bag\! -parse_size_in_bytes=Analizando [{}] para el tama\u00f1o de bytes total de la payload-oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Analizando [{}] para el n\u00famero de archivos a buscar en el directorio de carga. -compare_payload_oxums=Suministrar payload-oxum\\\: [{}], calcular payload-oxum\\\: [{}].{}], para directorio de carga [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Tama\u00f1o total inv\u00e1lido. \u00a1Esperado [{}] pero calculado [{}]\! invalid_file_cound_error=N\u00famero de archivo inv\u00e1lido. \u00a1Esperado [{}] pero encontrado [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Escribiendo linea [{}] a [{}] #for BagWriter.java writing_payload_files=Escribiendo archivos de carga. -upsert_payload_oxum=Ingresar y actualizar payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Escribiendo el archivo bagit.txt. writing_payload_manifests=Escribiendo manifiesto(s) de carga(s). writing_bag_metadata=Escribiendo el metadata bag. @@ -223,3 +223,4 @@ writing_metadata_to_path=Escribiendo el archivo de metadata bag de [{}] a [{}]. #for PayloadWriter.java writing_payload_file_to_path=Escribiendo archivo de carga de [{}] a [{}]. skip_fetch_item_when_writing_payload=Saltar archivo de carga {} porque est\u00e1 en la lista de recuperados. + From 4b894793d330c8b19c5875c031eadb1d0954f1e2 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:17 -0400 Subject: [PATCH 061/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- .../resources/MessageBundle_pt_BR.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_pt_BR.properties +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 5efbe28aa47355dc477b58bc6bcc32aada4e03ec Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:18 -0400 Subject: [PATCH 062/201] New translations MessageBundle.properties (Catalan) --- .../resources/MessageBundle_ca_ES.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_ca_ES.properties b/src/main/resources/MessageBundle_ca_ES.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_ca_ES.properties +++ b/src/main/resources/MessageBundle_ca_ES.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From c72bb67e59b084aab4ae1d08aac8b2245eb7ae02 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:20 -0400 Subject: [PATCH 063/201] New translations MessageBundle.properties (Polish) --- .../resources/MessageBundle_pl_PL.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_pl_PL.properties b/src/main/resources/MessageBundle_pl_PL.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_pl_PL.properties +++ b/src/main/resources/MessageBundle_pl_PL.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From e961b02acc77bf083c02d3783faef9636534e6e8 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:21 -0400 Subject: [PATCH 064/201] New translations MessageBundle.properties (Norwegian) --- .../resources/MessageBundle_no_NO.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_no_NO.properties b/src/main/resources/MessageBundle_no_NO.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_no_NO.properties +++ b/src/main/resources/MessageBundle_no_NO.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 472e443dfd14b6efd53ed310b9d40ad7708778d4 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:23 -0400 Subject: [PATCH 065/201] New translations MessageBundle.properties (Korean) --- .../resources/MessageBundle_ko_KR.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_ko_KR.properties b/src/main/resources/MessageBundle_ko_KR.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_ko_KR.properties +++ b/src/main/resources/MessageBundle_ko_KR.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From ae82a0e06d695feefb276ee45c6e076d73219eb1 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:24 -0400 Subject: [PATCH 066/201] New translations MessageBundle.properties (Indonesian) --- .../resources/MessageBundle_id_ID.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties index 584e6faad..ef18910ae 100644 --- a/src/main/resources/MessageBundle_id_ID.properties +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Folder utama tidak bisa di akses dari [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] Tidak cocok\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 2320848c6eca72e8347ebd0a1ded59e387b6f375 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:26 -0400 Subject: [PATCH 067/201] New translations MessageBundle.properties (Hungarian) --- .../resources/MessageBundle_hu_HU.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_hu_HU.properties b/src/main/resources/MessageBundle_hu_HU.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_hu_HU.properties +++ b/src/main/resources/MessageBundle_hu_HU.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 2f16a21c7310dd6f181fd06d03d328c447fee679 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:27 -0400 Subject: [PATCH 068/201] New translations MessageBundle.properties (Hebrew) --- .../resources/MessageBundle_he_IL.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_he_IL.properties b/src/main/resources/MessageBundle_he_IL.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_he_IL.properties +++ b/src/main/resources/MessageBundle_he_IL.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 537804b3a47cc4cd6a49f86f94d1c6925a54ad44 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:29 -0400 Subject: [PATCH 069/201] New translations MessageBundle.properties (Greek) --- .../resources/MessageBundle_el_GR.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_el_GR.properties b/src/main/resources/MessageBundle_el_GR.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_el_GR.properties +++ b/src/main/resources/MessageBundle_el_GR.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From cd2b64f425e8ca30ac441615773580d95f3def3c Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:30 -0400 Subject: [PATCH 070/201] New translations MessageBundle.properties (German) --- .../resources/MessageBundle_de_DE.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 419f7ce1d..829ee5293 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -14,7 +14,7 @@ version=Version hat den Wert [{}] parsing_bag_info=Lese Abschnitt Bag-Info required_manifest_types=Erforderliche Manifeste {} acceptable_serialization_mime_types=Akzeptierte MIME Typen f\\u00fcr die Serialisierung sind {} -required_tagmanifest_types=Erforderliche Tag Manifeste sind {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Erforderliche Tag Dateien sind {} acceptable_bagit_versions=Akzeptierte bagit Versionen sind {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Akzeptierte bagit Versionen sind {} bag_within_a_bag=Das Verzeichnis data kann alles beinhalten, inklusive einer anderen bag. Es wird allerdings empfohlen, mehrere bags zusammenzufassen. different_case=Eine bag kann mehrere Dateien mit unterschiedlicher Gro\\u00df- und Kleinschreibung enthalten. Dies kann zu Problemen mit bestimmten Dateisystemen f\\u00fchren, z.B. mit dem von Apple verwendeten HFS. different_normalization=Eine bag kann mehrere Dateien mit unterschiedlicher Normalisierung enthalten. Dies kann bei einigen Dateisystemen zu Problemen bei der Verifizierung f\\u00fchren und den Benutzer verwirren. -extra_lines_in_bagit_files=Laut bagit Spezifikation d\\u00fcrfen nur 2 Zeilen enthalten sein. Dennoch haben sich einige Implementierungen daf\\u00fcr entschieden dies zu ignorieren, was zu Kompatibilit\\u00e4tsproblemen f\\u00fchren kann. +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=Eine Manifest Datei f\\u00fchrt alle Dateien im Verzeichnis data relativ zum Wurzelverzeichnis der bag auf. Daher ist es nicht notwendig, die Dateipfade mit einem Punkt zu beginnen. non_standard_algorithm=Der verwendete Algorithmus zur Pr\\u00fcfsummenberechnung ist nicht Teil der Standard Java Laufzeitumgebung. Die Verwendung von SHA512 wird empfohlen. md5sum_tool_generated_manifest=Das Manifest wurde mit Hilfe von Werkzeugen zur Pr\\u00fcfsummenberechnung erstellt, die z.B. Teil des GNU Coreutils Paketes sind (md5sum, sha1sum, etc.), hier als 'md5sum' bezeichnet. Diese erzeugen minimale Unterschiede in den erstellten Manifesten, was zu Problemen mit einigen Implementierungen f\\u00fchren kann. -missing_tag_manifest=Das Tag Manifest verhindert unvollst\\u00e4ndige Payload Manifeste sowie andere potentielle Probleme. Daher wird empfohlen, dass es Teil jeder bag ist. -old_bagit_version=Die verwendete Version der bagit Spezifikation ist veraltet. Es wird empfohlen, auf die aktuellste Version zu umzusteigen. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Dateien die vom Betriebssystem f\\u00fcr eigene Zwecke erzeugt wurden. Diese sind nicht zwischen verschiedenen Betriebssystemversionen portierbar und sollten nicht im Manifest aufgef\\u00fchrt werden. Beispiele hierf\\u00fcr sind Thumbs.db unter Windows oder .DS_Store unter OS X. payload_oxum_missing=Es wird empfohlen, die Eigenschaft Payload-Oxum in den Metadaten jeder bag zu hinterlegen, da diese eine schnelle \\u00dcberpr\\u00fcfung der bag erlaubt. tag_files_encoding=Es wird empfohlen UTF-8 zu verwenden. @@ -40,7 +40,7 @@ checking_manifest_problems=Pr\\u00fcfe Manifeste auf Probleme. checking_metadata_problems=Pr\\u00fcfe bag Metadaten auf Probleme. skipping_check_extra_lines=\\u00dcberspringe Pr\\u00fcfung auf Extrazeilen in bagit Dateien. checking_extra_lines=Pr\\u00fcfe ob [{}] mehr als 2 Zeilen enth\\u00e4lt. -extra_lines_warning=The bagit Spezifikation sagt aus, dass bagit.txt genau 2 Zeilen enthalten darf. Die vorliegende bagit.txt enth\\u00e4lt [{}] Zeilen. Dies kann von einigen Implementierungen ignoriert werden oder zu Kombatibilit\\u00e4tsproblemen f\\u00fchren. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Pr\\u00fcfe ob Fetch Dateien f\\u00fcr die bag [{}] erlaubt sind. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag Dateien sind [{}] kodiert. Wir empfe bag_missing_tag_manifest_warning=Die bag [{}] enth\\u00e4lt kein Tag Manifest, welches f\\u00fcr jede bag empfohlen wird. different_case_warning=Im Manifest [{}] wird der Pfad [{}] mit unterschiedlicher Gro\\u00df- und Kleinschreibung aufgef\\u00fchrt. Dies kann bei einigen Dateisystemen zu Problemen f\\u00fchren. manifest_line_violated_spec_error=Das Manifest enth\\u00e4lt die Zeile [{}], welche nicht dem geforderten Schema folgt. -md5sum_generated_line_warning=Der Pfad [{}] beginnt mit einem *, was bedeutet, dass der Eintrag nicht mit einem bagit-Werkzeug erstellt wurde. Es wird empfohlen, den * entsprechend der bagit Spezifikation zu entfernen. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Zugriff auf \\u00fcbergeordnetes Verzeichnis von [{}] nicht m\\u00f6glich. different_normalization_in_manifest_warning=Die Datei [{}] ist anders normalisiert f\\u00fcr die Manifest Datei erforderlich. -bag_within_bag_warning=Wir empfehlen keine bag innerhalb einer anderen bag zu speichern, da dies bekannterma\\u00dfen zu Problemen f\\u00fchren kann. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] einen nicht normalisierten Pfad. os_specific_files_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] eine betriebssystemspezifische Datei. weak_algorithm_warning=Pr\\u00fcfsummenalgorithmus [{}] ist als angreifbar bekannt. Dank der Fortschritte aktueller Computersysteme verursacht die Erzeugung einer st\\u00e4rkeren Pr\\u00fcfsumme nur minimale Verz\\u00f6gerung. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Der verwendete Pr\\u00fcfsummenalgorithmus [{}] i missing_payload_oxum_warning=Die Eigenschaft Payload-Oxum wurde nicht in den bag Metadaten gefunden. Dies verhindert eine schnelle \\u00dcberpr\\u00fcfung der bag. #for VersionChecker.java -old_version_warning=Die verwendete bagit Version [{}] ist veraltet. Die akuelle Version ist [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=\\u00dcberspringe [{}] da versteckte Dateien ignoriert werden. @@ -115,8 +115,8 @@ tag_file_encoding=Zeichenkodierung in Tag Datei ist [{}]. invalid_bagit_text_file_error=bagit.txt MUSS die Eigenschaften 'BagIt-Version' UND 'Tag-File-Character-Encoding' enthalten\! bom_present_error=Datei [{}] enth\\u00e4lt eine Byte-Reihenfolge-Markierung, was laut bagit Spezifikation nicht zul\\u00e4ssig ist\! strict_only_two_lines_error=bagit.txt MUSS genau 2 Zeilen enthalten. Zus\\u00e4tzliche gefundene Zeile(n)\: [{}] -strict_first_line_error=Die erste Zeile in bagit.txt muss dem Schema [BagIt-Version\: ] entsprechen. Stattdessen wurde die Zeile [{}] gefunden. Mehr Informationen findet man in der bagit Spezifikation. -strict_second_line_error=Die zweite Zeile in bagit.txt muss dem Schema [Tag-File-Character-Encoding\: ] entsprechen. Stattdessen wurde die Zeile [{}] gefunden. Mehr Informationen findet man in der bagit Spezifikation. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version muss im Format MAJOR.MINOR angegeben werden. Stattdessen wurde der Wert [{}] gefunden. @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=Zeile [{}] ist kein g\\u00fcltiger fetch.txt Eintr #for KeyValueReader.java read_key_value_line=Schl\\u00fcssel [{}] mit Wert [{}] in Datei [{}] gefunden. Verwende regul\\u00e4ren Ausdruck [{}] f\\u00fcr die Aufspaltung. found_indented_line=Einger\\u00fcckte Zeile gefunden - f\\u00fcge sie mit Schl\\u00fcssel [{}] zusammen. -malformed_key_value_line_error=Zeile [{}] entspricht nicht der bagit Spezifikation f\\u00fcr eine Tag Datei. M\\u00f6glicherweise sollte die Zeile per Leerzeichen oder Tab einger\\u00fcckt werden oder es wurde kein Doppelpunkt verwendet, um einen Schl\\u00fcssel von einem Wert zu trennen? Es muss das Schema {} verwendet werden. Falls ein Wert in einer neuen Zeile fortgesetzt wird, muss diese per Leerzeichen oder Tab einger\\u00fcckt werden. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Versuche die Manifeste zu finden und zu lesen. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is ung\\u00fcltig\! checking_bag_is_valid=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] g\\u00fcltig ist. checking_payload_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Payload Manifeste(s). checking_tag_file_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Tag Manifeste(s). -checksums_not_matching_error=[{}] Fehler gefunden. Mindestens ein Fehler ist auf fehlerhafte Pr\\u00fcfsummen zur\\u00fcckzuf\\u00fchren. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] vollst\\u00e4ndig ist. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Pr\\u00fcfe ob alle Payload Dateien (Dateien im V #for QuickVerifier.java found_payload_oxum=Eigenschaft Payload-Oxum [{}] f\\u00fcr bag [{}] gefunden. payload_oxum_missing_error=Eigenschaft Payload-Oxum nicht in den bag metadaten gefunden\! -parse_size_in_bytes=Suche in Wert [{}] nach der Gesamtanzahl an Bytes. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Suche in Wert [{}] nach der Gesamtanzahl an Dateien im Payload Verzeichnis. -compare_payload_oxums=Angegebener Wert der Eigenschaft Payload-Oxum \: [{}], berechneter Wert von Payload-Oxum \: [{}.{}] f\\u00fcr das Payload Verzeichnis [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Ung\\u00fcltige Gesamtanzahl an Bytes. Ertwartet wurde [{}], berechnet wurde [{}]\! invalid_file_cound_error=Ung\\u00fcltige Gesamtanzahl an Dateien. Erwartet wurde [{}], berechnet wurde [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Schreibe Zeile [{}] nach [{}] #for BagWriter.java writing_payload_files=Schreibe Payload Dateien. -upsert_payload_oxum=F\\u00fcge Eigenschaft Payload-Oxum hinzu. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Schreibe Datei bagit.txt. writing_payload_manifests=Schreibe das/die Payload Manifest(e). writing_bag_metadata=Schreibe bag Metadaten. @@ -223,3 +223,4 @@ writing_metadata_to_path=Schreibe bag Metdaten Datei [{}] nach [{}]. #for PayloadWriter.java writing_payload_file_to_path=Schreibe Payload Datei [{}] nach [{}]. skip_fetch_item_when_writing_payload=\\u00dcberspringe Payload Datei {} da sie sich in der Fetch Liste befindet. + From c94038350804ba373144d8c1dc142987a482416e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:31 -0400 Subject: [PATCH 071/201] New translations MessageBundle.properties (Finnish) --- .../resources/MessageBundle_fi_FI.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_fi_FI.properties b/src/main/resources/MessageBundle_fi_FI.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_fi_FI.properties +++ b/src/main/resources/MessageBundle_fi_FI.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 20134fb57da3eaba86aed2e7a4de852419a05841 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:33 -0400 Subject: [PATCH 072/201] New translations MessageBundle.properties (English) --- .../resources/MessageBundle_en_US.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_en_US.properties b/src/main/resources/MessageBundle_en_US.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_en_US.properties +++ b/src/main/resources/MessageBundle_en_US.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From cacfcedc489134df75158b35a1847d95c95a92e5 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:35 -0400 Subject: [PATCH 073/201] New translations MessageBundle.properties (Dutch) --- .../resources/MessageBundle_nl_NL.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_nl_NL.properties b/src/main/resources/MessageBundle_nl_NL.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_nl_NL.properties +++ b/src/main/resources/MessageBundle_nl_NL.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From df55c5660d8cc8d310995e280f92e23494a44a34 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:36 -0400 Subject: [PATCH 074/201] New translations MessageBundle.properties (Danish) --- .../resources/MessageBundle_da_DK.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_da_DK.properties b/src/main/resources/MessageBundle_da_DK.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_da_DK.properties +++ b/src/main/resources/MessageBundle_da_DK.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From e3afe429605231a15f15dd64b4fe34f00c1ce0ef Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:38 -0400 Subject: [PATCH 075/201] New translations MessageBundle.properties (Czech) --- .../resources/MessageBundle_cs_CZ.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_cs_CZ.properties b/src/main/resources/MessageBundle_cs_CZ.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_cs_CZ.properties +++ b/src/main/resources/MessageBundle_cs_CZ.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 732cce9f6e3d012b8c258d0c916f8231e4290301 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 12 Mar 2018 10:52:39 -0400 Subject: [PATCH 076/201] New translations MessageBundle.properties (Russian) --- .../resources/MessageBundle_ru_RU.properties | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/main/resources/MessageBundle_ru_RU.properties b/src/main/resources/MessageBundle_ru_RU.properties index d06a16094..383213541 100644 --- a/src/main/resources/MessageBundle_ru_RU.properties +++ b/src/main/resources/MessageBundle_ru_RU.properties @@ -14,7 +14,7 @@ version=Version is [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tagmanifest types are {} +required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Tag files required are {} acceptable_bagit_versions=Acceptable bagit versions are {} @@ -22,12 +22,12 @@ acceptable_bagit_versions=Acceptable bagit versions are {} bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommened that it be included. -old_bagit_version=The bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. +old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. @@ -40,7 +40,7 @@ checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -76,10 +76,10 @@ tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We reco bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the bagit specification. +md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We stronger recommend not storing a bag within a bag as it is known to cause problems. +bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. @@ -89,7 +89,7 @@ non_standard_algorithm_warning=Detected algorithm [{}] which is not included by missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the bagit specification but the latest version is [{}]. +old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. @@ -115,8 +115,8 @@ tag_file_encoding=Tag-File-Character-Encoding is [{}]. invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specifcation for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specifcation for more information. +strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. +strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line #for KeyValueReader.java read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Attempting to find and read manifests. @@ -151,7 +151,7 @@ invalid_url_format_error=URL [{}] is invalid\! checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occured. At least one of the errors is due to hashes not matching. +checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java @@ -192,9 +192,9 @@ checking_file_in_all_manifests=Checking if all payload files (files in [{}] dire #for QuickVerifier.java found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the payload oxum. +parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated payload-oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! @@ -204,7 +204,7 @@ writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting payload-oxum. +upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Writing the bagit.txt file. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. @@ -223,3 +223,4 @@ writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java writing_payload_file_to_path=Writing payload file [{}] to [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. + From 28f49fb45fdef4611804c6917e9a267c89f2275a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 30 May 2018 09:21:50 -0400 Subject: [PATCH 077/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 383213541..6e52b632b 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -49,7 +49,7 @@ check_values_acceptable=Checking if all the values listed for [{}] are acceptabl check_required_manifests_present=Checking if all the required manifests are present. required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. +checking_required_tag_file_exists=Kontrollerar om alla obligatoriska m\u00e4rkfiler finns. #for BagitVersionIsNotAcceptableException.java bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. @@ -78,8 +78,8 @@ different_case_warning=In manifest [{}], path [{}] is the same as another path e manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. +different_normalization_in_manifest_warning=Filen [{}] har en annan normalisering \u00e4n vad som \u00e4r specificerat i manifestet. +bag_within_bag_warning=Det \u00e4r en stark rekommendation att inte lagra en bag inom en bag d\u00e5 det \u00e4r k\u00e4nt att skapa problem. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. From 2dbd9ab4224fa6fdbf41e9761883d1dd8a29b013 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 02:30:29 -0400 Subject: [PATCH 078/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 6e52b632b..a3108214d 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -28,14 +28,14 @@ non_standard_algorithm=The checksum algorithm used does not come standard with t md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X +os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skull. Dessa fungerar inte i alla OS-versioner och ska inte inkluderas i n\u00e5got manifest. Exempel\: Thumbs.db eller .DS_Store i OS X payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. #for BagLinter.java checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. +checking_latest_version=Letar efter senaste versionen. checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. From bd1216f7a1b66302492923b365f10dce5b00c776 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 03:13:25 -0400 Subject: [PATCH 079/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index a3108214d..2c766b738 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -29,12 +29,12 @@ md5sum_tool_generated_manifest=The manifest was created using checksum utilities missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skull. Dessa fungerar inte i alla OS-versioner och ska inte inkluderas i n\u00e5got manifest. Exempel\: Thumbs.db eller .DS_Store i OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +payload_oxum_missing=Det rekommenderas att alltid inkludera Payload-Oxum i bagens metadata eftersom det m\u00f6jligg\u00f6r en 'snabbverifiering' av bagen. +tag_files_encoding=Det rekommenderas att alltid anv\u00e4nda UTF-8. +weak_checksum_algorithm=Algoritmen f\u00f6r checksumman \u00e4r bristf\u00e4llig. Vi rekommenderar anv\u00e4ndning av SHA-512. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. +checking_encoding_problems=Letar efter kodproblem. checking_latest_version=Letar efter senaste versionen. checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. From b678b1f5f168e26ef05840b0723a88fbc9a12f74 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 05:22:28 -0400 Subject: [PATCH 080/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 2c766b738..7e05d692e 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -199,28 +199,28 @@ invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] +write_bagit_file_to_path=Skriver bagit.txt till [{}] writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. +writing_payload_files=Skriver payload-filer. upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. +writing_bagit_file=Skriver bagit.txt filen. writing_payload_manifests=Writing the payload manifest(s). writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). +writing_fetch_file=Skriver fetch-fil. +writing_tag_manifests=Skriver tag-manifest(en). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. +writing_fetch_file_to_path=Skriver fetch.txt till [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. +writing_manifest_to_path=Skriver manifest till [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. +writing_metadata_to_path=Skriver bag-metadatafil [{}] till [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. +writing_payload_file_to_path=Skriver payload-fil [{}] till [{}]. skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 4cdecac221f847002c8f1aa4cb71d84964aa8d73 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 05:31:38 -0400 Subject: [PATCH 081/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 7e05d692e..b244386db 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -2,21 +2,21 @@ #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] +fetch_allowed=\u00c4r fetch-filer till\u00e5tna? [{}] +serialization_allowed=Serialisering \u00e4r\: [{}] parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] +identifier=Identifierare \u00e4r [{}] source_organization=Source-Organization is [{}] contact_name=Contact-Name is [{}] contact_email=Contact-Email is [{}] external_description=External-Description is [{}] -version=Version is [{}] +version=Version \u00e4r [{}] parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} +required_manifest_types=Obligatoriska manifest-typer {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} +required_tagmanifest_types=Obligatoriska Tag-manifest-typer \u00e4r {} +tag_files_required=Obligatoriska Tag-filer \u00e4r {} +acceptable_bagit_versions=Accepterade bagit-versioner \u00e4r {} #for BagitWarning.java bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. @@ -195,19 +195,19 @@ payload_oxum_missing_error=Payload-Oxum does not exist in bag\! parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! +invalid_total_size_error=Ogiltlig total storlek. F\u00f6rv\u00e4ntade [{}] men ber\u00e4knade [{}]\! invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java write_bagit_file_to_path=Skriver bagit.txt till [{}] -writing_line_to_file=Writing line [{}] to [{}] +writing_line_to_file=Skriver rad [{}] till [{}] #for BagWriter.java writing_payload_files=Skriver payload-filer. upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Skriver bagit.txt filen. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. +writing_payload_manifests=Skriver payload-manifest(en). +writing_bag_metadata=Skriver bag-metadatan. writing_fetch_file=Skriver fetch-fil. writing_tag_manifests=Skriver tag-manifest(en). From fabd4f1f111f0dcf53ef8ca4b0a37cc98553513f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 05:43:48 -0400 Subject: [PATCH 082/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index b244386db..bcae04026 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -39,8 +39,8 @@ checking_latest_version=Letar efter senaste versionen. checking_manifest_problems=Checking manifests for problems. checking_metadata_problems=Checking bag metadata for problems. skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. +checking_extra_lines=Kontrollerar om [{}] inneh\u00e5ller mer \u00e4n 2 rader. +extra_lines_warning=Bagit-specifikationen anger att filen bagit.txt m\u00e5ste best\u00e5 av exakt 2 rader. Vi uppt\u00e4ckte emellertid [{}] rader, vissa implementationer ignorerar detta men det kan orsaka kompatiblitetsproblem med andra verktyg. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. @@ -58,7 +58,7 @@ bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! +fetch_file_not_allowed_error=Fetch-filen kunde inte hittas i bag [{}]\! #for MetadataValueIsNotAcceptableException.java metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! @@ -67,10 +67,10 @@ metadata_value_not_acceptable_error=Profile specifies that acceptable values for metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! +required_tag_file_not_found_error=Obligatorisk tag-fil [{}] kunde inte hittas\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. +tag_files_not_encoded_with_utf8_warning=Tag-filer \u00e4r kodade med [{}]. Vi rekommenderar att ist\u00e4llet alltid anv\u00e4nda UTF-8. #For ManifestChecker.java bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. From 95602361a1f79e620c84d77782bf1538622561c8 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 13:51:08 -0400 Subject: [PATCH 083/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index bcae04026..5ad992314 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -6,8 +6,8 @@ fetch_allowed=\u00c4r fetch-filer till\u00e5tna? [{}] serialization_allowed=Serialisering \u00e4r\: [{}] parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section identifier=Identifierare \u00e4r [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] +source_organization=Source-Organization \u00e4r [{}] +contact_name=Contact-Name \u00e4r [{}] contact_email=Contact-Email is [{}] external_description=External-Description is [{}] version=Version \u00e4r [{}] From 2d10f375bb05c8bf5d25e9099809b95346163233 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 14:02:38 -0400 Subject: [PATCH 084/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 5ad992314..6f616f38f 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -8,8 +8,8 @@ parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section identifier=Identifierare \u00e4r [{}] source_organization=Source-Organization \u00e4r [{}] contact_name=Contact-Name \u00e4r [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] +contact_email=Contact-Email \u00e4r [{}] +external_description=External-Description \u00e4r [{}] version=Version \u00e4r [{}] parsing_bag_info=Parsing the Bag-Info section required_manifest_types=Obligatoriska manifest-typer {} @@ -26,8 +26,8 @@ extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 l leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. +missing_tag_manifest=Tag-manifestet skyddar mot ett styckat payload-manifest. Det rekommenderas att alltid inkludera det. +old_bagit_version=Versionen av bagit-specifikationen \u00e4r inte den senaste. \u00d6verv\u00e4g att konvertera till den senaste versionen. os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skull. Dessa fungerar inte i alla OS-versioner och ska inte inkluderas i n\u00e5got manifest. Exempel\: Thumbs.db eller .DS_Store i OS X payload_oxum_missing=Det rekommenderas att alltid inkludera Payload-Oxum i bagens metadata eftersom det m\u00f6jligg\u00f6r en 'snabbverifiering' av bagen. tag_files_encoding=Det rekommenderas att alltid anv\u00e4nda UTF-8. From c49e744a32b99de0bef9e30760183bd200d75b8f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 17:21:28 -0400 Subject: [PATCH 085/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 6f616f38f..7b90bc47c 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -19,10 +19,10 @@ tag_files_required=Obligatoriska Tag-filer \u00e4r {} acceptable_bagit_versions=Accepterade bagit-versioner \u00e4r {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. +bag_within_a_bag=En datakatalog kan inneh\u00e5lla vad som helst, \u00e4ven en annan bag. Det \u00e4r emmelertid b\u00e4ttre att sammanfoga dem. different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues +extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. @@ -36,15 +36,15 @@ weak_checksum_algorithm=Algoritmen f\u00f6r checksumman \u00e4r bristf\u00e4llig #for BagLinter.java checking_encoding_problems=Letar efter kodproblem. checking_latest_version=Letar efter senaste versionen. -checking_manifest_problems=Checking manifests for problems. +checking_manifest_problems=Letar efter problem i manifesten. checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. +skipping_check_extra_lines=Hoppar \u00f6ver kontroll efter extra rader i bagit-filer. checking_extra_lines=Kontrollerar om [{}] inneh\u00e5ller mer \u00e4n 2 rader. extra_lines_warning=Bagit-specifikationen anger att filen bagit.txt m\u00e5ste best\u00e5 av exakt 2 rader. Vi uppt\u00e4ckte emellertid [{}] rader, vissa implementationer ignorerar detta men det kan orsaka kompatiblitetsproblem med andra verktyg. #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. +checking_metadata_entry_required=Kontrollerar om [{}] kr\u00e4vs i bag-metadatan. check_values_acceptable=Checking if all the values listed for [{}] are acceptable. check_required_manifests_present=Checking if all the required manifests are present. required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. From b45abfeb6aa1e4194c0a2b556bf15b6f23b9dff4 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 17:30:46 -0400 Subject: [PATCH 086/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 7b90bc47c..ae61653fe 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -45,8 +45,8 @@ extra_lines_warning=Bagit-specifikationen anger att filen bagit.txt m\u00e5ste b #for BagProfileChecker.java checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. checking_metadata_entry_required=Kontrollerar om [{}] kr\u00e4vs i bag-metadatan. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. +check_values_acceptable=Kontrollerar om samtliga v\u00e4rden angivna f\u00f6r [{}] \u00e4r godtagbara. +check_required_manifests_present=Kontrollerar om samtliga obligatoriska manifest finns. required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. required_manifest_type_not_present=Required manifest type [{}] was not present. checking_required_tag_file_exists=Kontrollerar om alla obligatoriska m\u00e4rkfiler finns. @@ -55,7 +55,7 @@ checking_required_tag_file_exists=Kontrollerar om alla obligatoriska m\u00e4rkfi bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! +required_metadata_field_not_present_error=Profilen anger att metadataf\u00e4ltet [{}} \u00e4r obligatoriskt men det kunde inte hittas\! #for FetchFileNotAllowedException.java fetch_file_not_allowed_error=Fetch-filen kunde inte hittas i bag [{}]\! @@ -139,13 +139,13 @@ reading_manifest=Reading manifest [{}]. #for MetadataReader.java attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. +found_metadata_file=Hittade metadatafil [{}]. #for TagFileReader.java removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! +invalid_url_format_error=URL [{}] \u00e4r ogiltig\! #for BagVerifier.java checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. From 6ccfbe9857f0917f15afebe7be00f66d92641f66 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Thu, 31 May 2018 17:40:26 -0400 Subject: [PATCH 087/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index ae61653fe..54eefd1fa 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -148,14 +148,14 @@ malicious_path_error=[{}] is trying to be malicious and access a file outside th invalid_url_format_error=URL [{}] \u00e4r ogiltig\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. +checking_bag_is_valid=Kontrollerar om bagen med rotkatalogen [{}] validerar. checking_payload_checksums=Checking payload manifest(s) checksums. checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. +checksums_not_matching_error=[{}] fel intr\u00e4ffade. Minst ett av felen beror p\u00e5 att kontrollsummor inte \u00f6verensst\u00e4mmer. +checking_bag_is_complete=Kontrollerar om bagen med rotkatalog [{}] \u00e4r komplett. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! +different_normalization_on_filesystem_warning=Filnamnet [{}] har en annan normalisering \u00e4n vad som finns i filsystemet\! error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java From 7cd869b73b81dd459a25c91a43497cf04d5254e1 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 5 Jun 2018 06:21:42 -0400 Subject: [PATCH 088/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 54eefd1fa..1870c2a31 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -110,19 +110,19 @@ algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! +bagit_version=BagIt-Versionen \u00e4r [{}]. +tag_file_encoding=Tag-File-Character-Encoding \u00e4r [{}]. +invalid_bagit_text_file_error=bagit.txt M\u00c5STE inneh\u00e5lla posterna 'Bagit-Version' OCH 'Tag-File-Character-Encoding'\! bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. +strict_only_two_lines_error=bagit.txt f\u00e5r endast inneh\u00e5lla 2 rader. Extra rader hittade\:[{}] +strict_first_line_error=Den f\u00f6rsta raden i bagit.txt m\u00e5ste f\u00f6lja m\u00f6nstret\: [BagIt-Version\: ]. Hittade [{}]. Se specifikationen f\u00f6r mer information. +strict_second_line_error=Den andra raden i bagit.txt m\u00e5ste f\u00f6lja m\u00f6nstret\: [Tag-File-Character-Encoding\: ].Hittade [{}]. Se specifikationen f\u00f6r mer information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! +unparsable_version_error=Version m\u00e5ste vara i formatet MAJOR.MINOR men var [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. +reading_fetch_file=F\u00f6rs\u00f6ker att l\u00e4sa [{}]. read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . From 98f3fd6bd4314b81ae18220def60ec748dc766cc Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 5 Jun 2018 06:31:05 -0400 Subject: [PATCH 089/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 1870c2a31..e1262ddb9 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -4,14 +4,14 @@ #for BagitProfileDeserializer.java fetch_allowed=\u00c4r fetch-filer till\u00e5tna? [{}] serialization_allowed=Serialisering \u00e4r\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section +parsing_bagit_profile_info_section=Parsar Bagit-Profile-Info sektionen identifier=Identifierare \u00e4r [{}] source_organization=Source-Organization \u00e4r [{}] contact_name=Contact-Name \u00e4r [{}] contact_email=Contact-Email \u00e4r [{}] external_description=External-Description \u00e4r [{}] version=Version \u00e4r [{}] -parsing_bag_info=Parsing the Bag-Info section +parsing_bag_info=Parsar Bagit-Profile-Info sektionen required_manifest_types=Obligatoriska manifest-typer {} acceptable_serialization_mime_types=Acceptable serialization MIME types are {} required_tagmanifest_types=Obligatoriska Tag-manifest-typer \u00e4r {} @@ -123,12 +123,12 @@ unparsable_version_error=Version m\u00e5ste vara i formatet MAJOR.MINOR men var #for FetchReader.java reading_fetch_file=F\u00f6rs\u00f6ker att l\u00e4sa [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . +read_fetch_file_line=L\u00e4ser URL [{}] l\u00e4ngd [{}] s\u00f6kv\u00e4g [{}] fr\u00e5n fetch-file [{}]. +invalid_fetch_file_line_error=Raden [{}] \u00e4r ogiltigt f\u00f6r fetch.txt. Varje rad m\u00e5ste ta utformas som . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. +read_key_value_line=Hittade nyckeln [{}] v\u00e4rde [{}] i filen [{}] med split regex [{}]. +found_indented_line=Hittade en indragen rad - sl\u00e5r samman det med nyckel [{}]. malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java From 4ce34fc028145cb1fd06ce3f3b829e78e5181ed9 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 5 Jun 2018 06:52:28 -0400 Subject: [PATCH 090/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index e1262ddb9..eb4e24020 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -20,7 +20,7 @@ acceptable_bagit_versions=Accepterade bagit-versioner \u00e4r {} #for BagitWarning.java bag_within_a_bag=En datakatalog kan inneh\u00e5lla vad som helst, \u00e4ven en annan bag. Det \u00e4r emmelertid b\u00e4ttre att sammanfoga dem. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). +different_case=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig skiftl\u00e4ge. Detta kan orsaka problem med filsystem likt de som anv\u00e4nds av apple(HFS). different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. @@ -135,7 +135,7 @@ malformed_key_value_line_error=Line [{}] does not meet the Bagit specification f attempting_read_manifests=Attempting to find and read manifests. found_tagmanifest=Found tag manifest [{}]. found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. +reading_manifest=L\u00e4ser manifest [{}]. #for MetadataReader.java attempting_read_metadata=Attempting to read bag metadata file. From 4e5009e57aebaa784a9ad389eca65e84df83b159 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 5 Jun 2018 07:01:11 -0400 Subject: [PATCH 091/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index eb4e24020..0fb129e06 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -106,7 +106,7 @@ creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-i adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! +algorithm_not_supported_error=[{}] st\u00f6ds inte\! #for BagitTextFileReader.java reading_version_and_encoding=Reading [{}] for version and encoding. @@ -132,13 +132,13 @@ found_indented_line=Hittade en indragen rad - sl\u00e5r samman det med nyckel [{ malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. +attempting_read_manifests=F\u00f6rs\u00f6ker hitta och l\u00e4sa manifest. +found_tagmanifest=Hittade tag-manifest [{}]. +found_payload_manifest=Hittade payload-manifest [{}]. reading_manifest=L\u00e4ser manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. +attempting_read_metadata=F\u00f6rs\u00f6ker l\u00e4sa bag-metadata-fil. found_metadata_file=Hittade metadatafil [{}]. #for TagFileReader.java From 9c95cfb661a4754ea5e775c35b1a273fb3de9f27 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 5 Jun 2018 07:11:19 -0400 Subject: [PATCH 092/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 0fb129e06..cde415cbc 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -142,15 +142,15 @@ attempting_read_metadata=F\u00f6rs\u00f6ker l\u00e4sa bag-metadata-fil. found_metadata_file=Hittade metadatafil [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! +removing_asterisk=St\u00f6tte p\u00e5 s\u00f6kv\u00e4g som skapats av ett annat verktyg \u00e4n bagit. Tar bort * fr\u00e5n s\u00f6kv\u00e4g. Var god ta bort all * fr\u00e5n manifest-filerna\! blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! invalid_url_format_error=URL [{}] \u00e4r ogiltig\! #for BagVerifier.java checking_bag_is_valid=Kontrollerar om bagen med rotkatalogen [{}] validerar. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. +checking_payload_checksums=Kontrollerar payload-manifest(ens) kontrollsummor. +checking_tag_file_checksums=Kontrollerar tag-manifest(ens) kontrollsummor. checksums_not_matching_error=[{}] fel intr\u00e4ffade. Minst ett av felen beror p\u00e5 att kontrollsummor inte \u00f6verensst\u00e4mmer. checking_bag_is_complete=Kontrollerar om bagen med rotkatalog [{}] \u00e4r komplett. @@ -159,16 +159,16 @@ different_normalization_on_filesystem_warning=Filnamnet [{}] har en annan normal error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. +checking_checksums=Kontrollerar filen [{}] f\u00f6r att som om kontrollsumma matchar [{}]. #for CorruptChecksumException.java corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. +file_size_in_bytes=Filen [{}] har en storlek av [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. +checking_fetch_items_exist=Kontrollerar om alla [{}] objekt i fetch.txt finns i katalogen [{}]. fetch_item_missing_error=Fetch item [{}] has not been fetched\! file_should_exist_error=File [{}] should exist but it doesn't\! checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). @@ -187,12 +187,12 @@ get_listing_in_manifest=Getting files and checksums listed in [{}]. check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. +checking_file_in_all_manifests=Kontrollerar om alla payload-filer (filer i katalogen [{}]) listas i samtliga manifest. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. +found_payload_oxum=Hittade Payload-Oxum [{}] f\u00f6r bag [{}]. +payload_oxum_missing_error=Payload-Oxum finns inte i bagen\! +parse_size_in_bytes=Parsar [{}] f\u00f6r den totala bytestorleken av Payload Oxum. parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Ogiltlig total storlek. F\u00f6rv\u00e4ntade [{}] men ber\u00e4knade [{}]\! From 2894bb693c64a74df6083a26ef1b9fa1f6ee6002 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 5 Jun 2018 07:23:19 -0400 Subject: [PATCH 093/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index cde415cbc..9edab7bce 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -196,7 +196,7 @@ parse_size_in_bytes=Parsar [{}] f\u00f6r den totala bytestorleken av Payload Oxu parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Ogiltlig total storlek. F\u00f6rv\u00e4ntade [{}] men ber\u00e4knade [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! +invalid_file_cound_error=Ogiltig antal filer. F\u00f6rv\u00e4ntade [{}] men hittade [{}]\! #for BagitFileWriter.java write_bagit_file_to_path=Skriver bagit.txt till [{}] @@ -222,5 +222,5 @@ writing_metadata_to_path=Skriver bag-metadatafil [{}] till [{}]. #for PayloadWriter.java writing_payload_file_to_path=Skriver payload-fil [{}] till [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. +skip_fetch_item_when_writing_payload=Hoppar \u00f6ver payload-fil {} eftersom den finns i fetchlistan. From e027c1f896b6bda91476ed4e6170e562bb6a22a2 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 05:01:07 -0400 Subject: [PATCH 094/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 9edab7bce..46e7a75a1 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -92,14 +92,14 @@ missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metad old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. +skipping_hidden_file=Hoppar \u00f6ver [{}] eftersom vi ignorerar dolda filer. +skipping_ignored_directory=Hoppar \u00f6ver [{}] eftersom vi ignorerar dolda kataloger. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. +creating_bag=Skapar en bag med version\: [{}] i katalog\: [{}]. +creating_payload_manifests=Skapar payload-manifest(en). +creating_tag_manifests=Skapar tag-manifest(en). +calculating_payload_oxum=Ber\u00e4knar payload-oxum p\u00e5 datakatalogen [{}]. creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java From d226bbf51a6bd1e61d07b14c074f37fbcb8bfc19 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 05:11:02 -0400 Subject: [PATCH 095/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 46e7a75a1..0c8617fef 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -24,7 +24,7 @@ different_case=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig skift different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. +non_standard_algorithm=Kontrollsumma-algoritmen som anv\u00e4nds \u00e4r inte en del av Javas standardexekvering. \u00d6verv\u00e4g att anv\u00e4nda SHA-512 ist\u00e4llet. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. missing_tag_manifest=Tag-manifestet skyddar mot ett styckat payload-manifest. Det rekommenderas att alltid inkludera det. old_bagit_version=Versionen av bagit-specifikationen \u00e4r inte den senaste. \u00d6verv\u00e4g att konvertera till den senaste versionen. @@ -100,20 +100,20 @@ creating_bag=Skapar en bag med version\: [{}] i katalog\: [{}]. creating_payload_manifests=Skapar payload-manifest(en). creating_tag_manifests=Skapar tag-manifest(en). calculating_payload_oxum=Ber\u00e4knar payload-oxum p\u00e5 datakatalogen [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). +creating_metadata_file=Skapar bag-metadatafil (bag-info.txt eller package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. +adding_checksum=L\u00e4gger till [{}] i manifest med hashv\u00e4rde [{}]. #for UnsupportedAlgorithmException.java algorithm_not_supported_error=[{}] st\u00f6ds inte\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. +reading_version_and_encoding=L\u00e4ser [{}] f\u00f6r att fastsl\u00e5 version och teckenkodning. bagit_version=BagIt-Versionen \u00e4r [{}]. tag_file_encoding=Tag-File-Character-Encoding \u00e4r [{}]. invalid_bagit_text_file_error=bagit.txt M\u00c5STE inneh\u00e5lla posterna 'Bagit-Version' OCH 'Tag-File-Character-Encoding'\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! +bom_present_error=Filen inneh\u00e5ller ett byteordningsm\u00e4rke (BOM), vilket inte \u00e4r till\u00e5tet i bagit-specifikationen\! strict_only_two_lines_error=bagit.txt f\u00e5r endast inneh\u00e5lla 2 rader. Extra rader hittade\:[{}] strict_first_line_error=Den f\u00f6rsta raden i bagit.txt m\u00e5ste f\u00f6lja m\u00f6nstret\: [BagIt-Version\: ]. Hittade [{}]. Se specifikationen f\u00f6r mer information. strict_second_line_error=Den andra raden i bagit.txt m\u00e5ste f\u00f6lja m\u00f6nstret\: [Tag-File-Character-Encoding\: ].Hittade [{}]. Se specifikationen f\u00f6r mer information. From 61bf960998a6b848d8344f9b1d68dda90ebca71e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 07:01:43 -0400 Subject: [PATCH 096/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 0c8617fef..cf13e53a3 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -86,10 +86,10 @@ weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great adva non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". +missing_payload_oxum_warning=Payload-Oxum-nyckel hittades inte i bag-metadatan. Detta f\u00f6rhindrar en "snabbverifiering". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. +old_version_warning=Hittade version [{}] av bagit-specifikationen men den senaste versionen \u00e4r [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Hoppar \u00f6ver [{}] eftersom vi ignorerar dolda filer. @@ -186,14 +186,14 @@ all_files_in_manifests=Getting all files listed in the manifest(s). get_listing_in_manifest=Getting files and checksums listed in [{}]. check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. +checking_file_in_at_least_one_manifest=Kontrollerar om alla payload-filer (filer i katalogen [{}]) \u00e4r uppr\u00e4knade i minst ett manifest. checking_file_in_all_manifests=Kontrollerar om alla payload-filer (filer i katalogen [{}]) listas i samtliga manifest. #for QuickVerifier.java found_payload_oxum=Hittade Payload-Oxum [{}] f\u00f6r bag [{}]. payload_oxum_missing_error=Payload-Oxum finns inte i bagen\! parse_size_in_bytes=Parsar [{}] f\u00f6r den totala bytestorleken av Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. +parse_number_of_files=Parsar [{}] f\u00f6r antalet filer att hitta i payload-katalogen. compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Ogiltlig total storlek. F\u00f6rv\u00e4ntade [{}] men ber\u00e4knade [{}]\! invalid_file_cound_error=Ogiltig antal filer. F\u00f6rv\u00e4ntade [{}] men hittade [{}]\! From ce048bbdfb263822e108efff92c0e49afb4f2d85 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 07:11:15 -0400 Subject: [PATCH 097/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index cf13e53a3..69260cc39 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -129,7 +129,7 @@ invalid_fetch_file_line_error=Raden [{}] \u00e4r ogiltigt f\u00f6r fetch.txt. Va #for KeyValueReader.java read_key_value_line=Hittade nyckeln [{}] v\u00e4rde [{}] i filen [{}] med split regex [{}]. found_indented_line=Hittade en indragen rad - sl\u00e5r samman det med nyckel [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. +malformed_key_value_line_error=Raden [{}] uppfyller inte kraven i Bagit-specifikatioenen f\u00f6r en bag-tag-file. Kanske t\u00e4nkte du identera den med ett blanksteg eller tabb? Eller s\u00e5 kanske du inte anv\u00e4nde ett kolon f\u00f6r att skilja nyckeln fr\u00e5n v\u00e4rdet? Det m\u00e5ste f\u00f6lja konventionen av {} eller om den forts\u00e4tter fr\u00e5n en annan rad identerad av blanksteg eller tabb. #for ManifestReader.java attempting_read_manifests=F\u00f6rs\u00f6ker hitta och l\u00e4sa manifest. @@ -156,13 +156,13 @@ checking_bag_is_complete=Kontrollerar om bagen med rotkatalog [{}] \u00e4r kompl #for CheckIfFileExistsTask.java different_normalization_on_filesystem_warning=Filnamnet [{}] har en annan normalisering \u00e4n vad som finns i filsystemet\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! +error_reading_normalized_file=Fel vid f\u00f6rs\u00f6k att l\u00e4sa [{}] f\u00f6r att se om n\u00e5gon fil i den katalogen matchar det normaliserade filnamnet [{}]\! #for CheckManifestHashesTask.java checking_checksums=Kontrollerar filen [{}] f\u00f6r att som om kontrollsumma matchar [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. +corrupt_checksum_error=Filen [{}] f\u00f6rv\u00e4ntas ha f\u00f6ljande hashv\u00e4rde\: [{}] men ber\u00e4knades till [{}]. #for FileCoundAndTotalSizeVisitor.java file_size_in_bytes=Filen [{}] har en storlek av [{}] bytes. @@ -170,15 +170,15 @@ file_size_in_bytes=Filen [{}] har en storlek av [{}] bytes. #for MandatoryVerifier.java checking_fetch_items_exist=Kontrollerar om alla [{}] objekt i fetch.txt finns i katalogen [{}]. fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). +file_should_exist_error=Filen [{}] borde finnas med det g\u00f6r den inte\! +checking_payload_directory_exists=Kontrollerar om en s\u00e4rskild payload-katalog finns (endast f\u00f6r version 0.97 och tidigare). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! +missing_payload_manifest_error=Bagen inneh\u00e5ller inte en payload-manifest-fil\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. +file_not_in_manifest_error=Filen [{}] finns i payload-katalogen men \u00e4r inte angiven i manifestet manifest-{}.txt\! +file_in_all_manifests=[{}] finns i alla manifest. file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java From fb7b8450926282d66e011068753eea5c848a06de Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 07:22:23 -0400 Subject: [PATCH 098/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 69260cc39..7a243b054 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -21,7 +21,7 @@ acceptable_bagit_versions=Accepterade bagit-versioner \u00e4r {} #for BagitWarning.java bag_within_a_bag=En datakatalog kan inneh\u00e5lla vad som helst, \u00e4ven en annan bag. Det \u00e4r emmelertid b\u00e4ttre att sammanfoga dem. different_case=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig skiftl\u00e4ge. Detta kan orsaka problem med filsystem likt de som anv\u00e4nds av apple(HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +different_normalization=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig \u00e5t i normalisering. Detta kan orsaka att verifieringen misslyckas p\u00e5 vissa system, och skapa allm\u00e4n f\u00f6rvirring hos anv\u00e4ndarna. extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=Kontrollsumma-algoritmen som anv\u00e4nds \u00e4r inte en del av Javas standardexekvering. \u00d6verv\u00e4g att anv\u00e4nda SHA-512 ist\u00e4llet. @@ -77,13 +77,13 @@ bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. +cannot_access_parent_path_error=Kunde inte f\u00e5 \u00e5tkomst till \u00f6verordnad katalog [{}]. different_normalization_in_manifest_warning=Filen [{}] har en annan normalisering \u00e4n vad som \u00e4r specificerat i manifestet. bag_within_bag_warning=Det \u00e4r en stark rekommendation att inte lagra en bag inom en bag d\u00e5 det \u00e4r k\u00e4nt att skapa problem. leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +non_standard_algorithm_warning=Uppt\u00e4ckte algoritm [{}] som inte ing\u00e5r som standard i Java. Detta kommer att g\u00f6ra det sv\u00e5rare att l\u00e4sa denna bag p\u00e5 vissa system. \u00d6verv\u00e4ga att \u00e4ndra det till SHA-512. #for MetadataChecker.java missing_payload_oxum_warning=Payload-Oxum-nyckel hittades inte i bag-metadatan. Detta f\u00f6rhindrar en "snabbverifiering". @@ -143,7 +143,7 @@ found_metadata_file=Hittade metadatafil [{}]. #for TagFileReader.java removing_asterisk=St\u00f6tte p\u00e5 s\u00f6kv\u00e4g som skapats av ett annat verktyg \u00e4n bagit. Tar bort * fr\u00e5n s\u00f6kv\u00e4g. Var god ta bort all * fr\u00e5n manifest-filerna\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! +blackslash_used_as_path_separator_error=[{}] \u00e4r ogiltig p\u00e5 grund av anv\u00e4ndningen av s\u00f6kv\u00e4gseparatorn [\\]\! malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! invalid_url_format_error=URL [{}] \u00e4r ogiltig\! @@ -169,7 +169,7 @@ file_size_in_bytes=Filen [{}] har en storlek av [{}] bytes. #for MandatoryVerifier.java checking_fetch_items_exist=Kontrollerar om alla [{}] objekt i fetch.txt finns i katalogen [{}]. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! +fetch_item_missing_error=Fetch-objektet [{}] har inte h\u00e4mtats\! file_should_exist_error=Filen [{}] borde finnas med det g\u00f6r den inte\! checking_payload_directory_exists=Kontrollerar om en s\u00e4rskild payload-katalog finns (endast f\u00f6r version 0.97 och tidigare). @@ -179,13 +179,13 @@ missing_payload_manifest_error=Bagen inneh\u00e5ller inte en payload-manifest-fi #for PayloadFileExistsInAllManifestsVistor.java file_not_in_manifest_error=Filen [{}] finns i payload-katalogen men \u00e4r inte angiven i manifestet manifest-{}.txt\! file_in_all_manifests=[{}] finns i alla manifest. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! +file_not_in_any_manifest_error=Filen [{}] finns i payload-katalogen men \u00e4r inte angiven i n\u00e5got manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! +all_files_in_manifests=L\u00e4ser alla filer som anges i manifest(en). +get_listing_in_manifest=L\u00e4ser alla filer och kontrollsummor som anges i [{}]. +check_all_files_in_manifests_exist=Kontollerar om alla filer som anges i manifest(en) finns. +missing_payload_files_error=Manifest(en) inneh\u00e5ller fil(er) {} men de finns inte\! checking_file_in_at_least_one_manifest=Kontrollerar om alla payload-filer (filer i katalogen [{}]) \u00e4r uppr\u00e4knade i minst ett manifest. checking_file_in_all_manifests=Kontrollerar om alla payload-filer (filer i katalogen [{}]) listas i samtliga manifest. From fa06219dae51467ab295bd9ee218567990c6fd10 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 07:33:34 -0400 Subject: [PATCH 099/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 7a243b054..05c8ee9f8 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -80,8 +80,8 @@ md5sum_generated_line_warning=Path [{}] starts with a *, which means it was gene cannot_access_parent_path_error=Kunde inte f\u00e5 \u00e5tkomst till \u00f6verordnad katalog [{}]. different_normalization_in_manifest_warning=Filen [{}] har en annan normalisering \u00e4n vad som \u00e4r specificerat i manifestet. bag_within_bag_warning=Det \u00e4r en stark rekommendation att inte lagra en bag inom en bag d\u00e5 det \u00e4r k\u00e4nt att skapa problem. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. +leading_dot_slash_warning=I manifestet [{}] rad [{}] \u00e4r en icke-normaliserad s\u00f6kv\u00e4g. +os_specific_files_warning=I manifestet [{}] rad [{}] inneh\u00e5ller en fil specifik f\u00f6r operativsystemet. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Uppt\u00e4ckte algoritm [{}] som inte ing\u00e5r som standard i Java. Detta kommer att g\u00f6ra det sv\u00e5rare att l\u00e4sa denna bag p\u00e5 vissa system. \u00d6verv\u00e4ga att \u00e4ndra det till SHA-512. From 33097b8a1f978df98d1a8e37e6b738bdbe281007 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 07:52:08 -0400 Subject: [PATCH 100/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 05c8ee9f8..466b3f1c3 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -13,7 +13,7 @@ external_description=External-Description \u00e4r [{}] version=Version \u00e4r [{}] parsing_bag_info=Parsar Bagit-Profile-Info sektionen required_manifest_types=Obligatoriska manifest-typer {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} +acceptable_serialization_mime_types=Accepterade MIME-typer f\u00f6r serialisering \u00e4r {} required_tagmanifest_types=Obligatoriska Tag-manifest-typer \u00e4r {} tag_files_required=Obligatoriska Tag-filer \u00e4r {} acceptable_bagit_versions=Accepterade bagit-versioner \u00e4r {} @@ -23,7 +23,7 @@ bag_within_a_bag=En datakatalog kan inneh\u00e5lla vad som helst, \u00e4ven en a different_case=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig skiftl\u00e4ge. Detta kan orsaka problem med filsystem likt de som anv\u00e4nds av apple(HFS). different_normalization=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig \u00e5t i normalisering. Detta kan orsaka att verifieringen misslyckas p\u00e5 vissa system, och skapa allm\u00e4n f\u00f6rvirring hos anv\u00e4ndarna. extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. +leading_dot_slash=Ett manifest listar alla datafiler som relativa till bagens rotkatalog, det \u00e4r \u00f6verfl\u00f6digt att specificera det med en punkt. non_standard_algorithm=Kontrollsumma-algoritmen som anv\u00e4nds \u00e4r inte en del av Javas standardexekvering. \u00d6verv\u00e4g att anv\u00e4nda SHA-512 ist\u00e4llet. md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. missing_tag_manifest=Tag-manifestet skyddar mot ett styckat payload-manifest. Det rekommenderas att alltid inkludera det. @@ -37,18 +37,18 @@ weak_checksum_algorithm=Algoritmen f\u00f6r checksumman \u00e4r bristf\u00e4llig checking_encoding_problems=Letar efter kodproblem. checking_latest_version=Letar efter senaste versionen. checking_manifest_problems=Letar efter problem i manifesten. -checking_metadata_problems=Checking bag metadata for problems. +checking_metadata_problems=Letar efter problem i bag-metadatan. skipping_check_extra_lines=Hoppar \u00f6ver kontroll efter extra rader i bagit-filer. checking_extra_lines=Kontrollerar om [{}] inneh\u00e5ller mer \u00e4n 2 rader. extra_lines_warning=Bagit-specifikationen anger att filen bagit.txt m\u00e5ste best\u00e5 av exakt 2 rader. Vi uppt\u00e4ckte emellertid [{}] rader, vissa implementationer ignorerar detta men det kan orsaka kompatiblitetsproblem med andra verktyg. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. +checking_fetch_file_allowed=Kontrollerar om fetch-filen \u00e4r till\u00e5ten f\u00f6r bagen [{}]. checking_metadata_entry_required=Kontrollerar om [{}] kr\u00e4vs i bag-metadatan. check_values_acceptable=Kontrollerar om samtliga v\u00e4rden angivna f\u00f6r [{}] \u00e4r godtagbara. check_required_manifests_present=Kontrollerar om samtliga obligatoriska manifest finns. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. +required_tag_manifest_type_not_present=Den obligatoriska tag-manifest-typen [{}] fanns inte. +required_manifest_type_not_present=Den obligatoriska manifest-typen [{}] fanns inte. checking_required_tag_file_exists=Kontrollerar om alla obligatoriska m\u00e4rkfiler finns. #for BagitVersionIsNotAcceptableException.java @@ -82,7 +82,7 @@ different_normalization_in_manifest_warning=Filen [{}] har en annan normaliserin bag_within_bag_warning=Det \u00e4r en stark rekommendation att inte lagra en bag inom en bag d\u00e5 det \u00e4r k\u00e4nt att skapa problem. leading_dot_slash_warning=I manifestet [{}] rad [{}] \u00e4r en icke-normaliserad s\u00f6kv\u00e4g. os_specific_files_warning=I manifestet [{}] rad [{}] inneh\u00e5ller en fil specifik f\u00f6r operativsystemet. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. +weak_algorithm_warning=Uppt\u00e4ckte en k\u00e4nt svag algoritm [{}]. Med de fantastiska framstegen inom h\u00e5rdvaruutveckling kostar det inte mycket att anv\u00e4nda fler bits f\u00f6r att ber\u00e4kna kontrollsumman. non_standard_algorithm_warning=Uppt\u00e4ckte algoritm [{}] som inte ing\u00e5r som standard i Java. Detta kommer att g\u00f6ra det sv\u00e5rare att l\u00e4sa denna bag p\u00e5 vissa system. \u00d6verv\u00e4ga att \u00e4ndra det till SHA-512. #for MetadataChecker.java From f7b9391e51b8f68e55563f2cfcf72e967392d4f6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:31:28 -0400 Subject: [PATCH 101/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 466b3f1c3..a2a9ee2b3 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -52,7 +52,7 @@ required_manifest_type_not_present=Den obligatoriska manifest-typen [{}] fanns i checking_required_tag_file_exists=Kontrollerar om alla obligatoriska m\u00e4rkfiler finns. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. +bagit_version_not_acceptable_error=Version [{}] finns inte i listan \u00f6ver accepterad versioner {}. #for RequiredMetadataFieldNotPresentException.java required_metadata_field_not_present_error=Profilen anger att metadataf\u00e4ltet [{}} \u00e4r obligatoriskt men det kunde inte hittas\! @@ -144,7 +144,7 @@ found_metadata_file=Hittade metadatafil [{}]. #for TagFileReader.java removing_asterisk=St\u00f6tte p\u00e5 s\u00f6kv\u00e4g som skapats av ett annat verktyg \u00e4n bagit. Tar bort * fr\u00e5n s\u00f6kv\u00e4g. Var god ta bort all * fr\u00e5n manifest-filerna\! blackslash_used_as_path_separator_error=[{}] \u00e4r ogiltig p\u00e5 grund av anv\u00e4ndningen av s\u00f6kv\u00e4gseparatorn [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! +malicious_path_error=[{}] f\u00f6rs\u00f6ker f\u00e5 \u00e5tkomst till en fil utanf\u00f6r bagen\! invalid_url_format_error=URL [{}] \u00e4r ogiltig\! #for BagVerifier.java From 4a931de7c39586eefcfe20451aa1924cec7b07e2 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:41:24 -0400 Subject: [PATCH 102/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index a2a9ee2b3..067445c15 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -61,10 +61,10 @@ required_metadata_field_not_present_error=Profilen anger att metadataf\u00e4ltet fetch_file_not_allowed_error=Fetch-filen kunde inte hittas i bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! +metadata_value_not_acceptable_error=Profilen specificerar att accepterade v\u00e4rden f\u00f6r [{}] \u00e4r {} hittade ist\u00e4llet [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! +metadata_value_not_repeatable_error=Profilen specificerar att v\u00e4rdet [{}] inte \u00e4r upprepningsbart men har angetts flera g\u00e5nger\! #for RequiredTagFileNotPresentException.java required_tag_file_not_found_error=Obligatorisk tag-fil [{}] kunde inte hittas\! From 512f40ccdf0c7dd64a5f625ff71e0a0fa738ecea Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:46 -0400 Subject: [PATCH 103/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 067445c15..00416d0d8 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -73,10 +73,10 @@ required_tag_file_not_found_error=Obligatorisk tag-fil [{}] kunde inte hittas\! tag_files_not_encoded_with_utf8_warning=Tag-filer \u00e4r kodade med [{}]. Vi rekommenderar att ist\u00e4llet alltid anv\u00e4nda UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. +md5sum_generated_line_warning=S\u00f6kv\u00e4gen b\u00f6rjar med ett *, vilket inneb\u00e4r att det genererades med ett annat verktyg \u00e4n bagit. Det rekommenderas att ta bort * f\u00f6r att m\u00f6ta kraven i bagit-specifikationen. cannot_access_parent_path_error=Kunde inte f\u00e5 \u00e5tkomst till \u00f6verordnad katalog [{}]. different_normalization_in_manifest_warning=Filen [{}] har en annan normalisering \u00e4n vad som \u00e4r specificerat i manifestet. bag_within_bag_warning=Det \u00e4r en stark rekommendation att inte lagra en bag inom en bag d\u00e5 det \u00e4r k\u00e4nt att skapa problem. From 2a04c72c080ed505041d2f9e97867b63e2eca779 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:48 -0400 Subject: [PATCH 104/201] New translations MessageBundle.properties (Indonesian) --- src/main/resources/MessageBundle_id_ID.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties index ef18910ae..623d64c9c 100644 --- a/src/main/resources/MessageBundle_id_ID.properties +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From cbb10263820c21d6c90d60f185bc9f948552d10d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:49 -0400 Subject: [PATCH 105/201] New translations MessageBundle.properties (Ukrainian) --- src/main/resources/MessageBundle_uk_UA.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_uk_UA.properties b/src/main/resources/MessageBundle_uk_UA.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_uk_UA.properties +++ b/src/main/resources/MessageBundle_uk_UA.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 16c291537194c2ad290c2c5904147d92582570df Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:50 -0400 Subject: [PATCH 106/201] New translations MessageBundle.properties (Turkish) --- src/main/resources/MessageBundle_tr_TR.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_tr_TR.properties b/src/main/resources/MessageBundle_tr_TR.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_tr_TR.properties +++ b/src/main/resources/MessageBundle_tr_TR.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 410be320fdbb46ccde6dbb9fa1bd02f27cbde387 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:52 -0400 Subject: [PATCH 107/201] New translations MessageBundle.properties (Spanish) --- src/main/resources/MessageBundle_es_ES.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index ea498f97d..bf09df4eb 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Etiqueta de archivo requerida [{}] no fue enco tag_files_not_encoded_with_utf8_warning=Archivos de etiqueta se codifican con [{}]. Recomendamos siempre usar UTF-8 en su lugar. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] no contiene un manifiesto tag, lo cual siempre es recomendado. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=En manifiesto [{}], ruta [{}] es igual a otra excepto para el caso. Esto puede causar problemas si mueve el bag a un archivo de sistemas que es caso sensitivo. manifest_line_violated_spec_error=Manifiesto contiene l\u00ednea [{}] la cual no sigue la forma especificada de md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From b16a5be70e6b70e9c15a99701beb07f72e494426 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:53 -0400 Subject: [PATCH 108/201] New translations MessageBundle.properties (Serbian (Cyrillic)) --- src/main/resources/MessageBundle_sr_SP.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_sr_SP.properties b/src/main/resources/MessageBundle_sr_SP.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_sr_SP.properties +++ b/src/main/resources/MessageBundle_sr_SP.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 044bf7612c4cf4ef08e4e9322cfa856bb859cdd3 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:55 -0400 Subject: [PATCH 109/201] New translations MessageBundle.properties (Russian) --- src/main/resources/MessageBundle_ru_RU.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_ru_RU.properties b/src/main/resources/MessageBundle_ru_RU.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_ru_RU.properties +++ b/src/main/resources/MessageBundle_ru_RU.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 9430c43b80288d2ad094107fe9fe2b9013c459eb Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:56 -0400 Subject: [PATCH 110/201] New translations MessageBundle.properties (Romanian) --- src/main/resources/MessageBundle_ro_RO.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_ro_RO.properties b/src/main/resources/MessageBundle_ro_RO.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_ro_RO.properties +++ b/src/main/resources/MessageBundle_ro_RO.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From b0d9066bc5c74f503aa5248aa595d7e8e6377740 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:57 -0400 Subject: [PATCH 111/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- src/main/resources/MessageBundle_pt_BR.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_pt_BR.properties +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 97568a8f5617da0f9af34109eab97026ef1999d1 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:51:59 -0400 Subject: [PATCH 112/201] New translations MessageBundle.properties (Portuguese) --- src/main/resources/MessageBundle_pt_PT.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_pt_PT.properties b/src/main/resources/MessageBundle_pt_PT.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_pt_PT.properties +++ b/src/main/resources/MessageBundle_pt_PT.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 14168cc518d9fb61b1b4a32cf44fa6464b24ddca Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:00 -0400 Subject: [PATCH 113/201] New translations MessageBundle.properties (Polish) --- src/main/resources/MessageBundle_pl_PL.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_pl_PL.properties b/src/main/resources/MessageBundle_pl_PL.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_pl_PL.properties +++ b/src/main/resources/MessageBundle_pl_PL.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 5774eb6995ee876146df6b693bd8d83c3a589e76 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:01 -0400 Subject: [PATCH 114/201] New translations MessageBundle.properties (Norwegian) --- src/main/resources/MessageBundle_no_NO.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_no_NO.properties b/src/main/resources/MessageBundle_no_NO.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_no_NO.properties +++ b/src/main/resources/MessageBundle_no_NO.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 9cb6584b6b59fc37cc1020aef960a7602e1b1256 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:03 -0400 Subject: [PATCH 115/201] New translations MessageBundle.properties (Korean) --- src/main/resources/MessageBundle_ko_KR.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_ko_KR.properties b/src/main/resources/MessageBundle_ko_KR.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_ko_KR.properties +++ b/src/main/resources/MessageBundle_ko_KR.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 8451d1072d0e76d7faa090a500fdb0adb29ab25a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:04 -0400 Subject: [PATCH 116/201] New translations MessageBundle.properties (Japanese) --- src/main/resources/MessageBundle_ja_JP.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_ja_JP.properties b/src/main/resources/MessageBundle_ja_JP.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_ja_JP.properties +++ b/src/main/resources/MessageBundle_ja_JP.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 9c13f2d7c16fa8fb4fcf7c673999cb8178d44f85 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:05 -0400 Subject: [PATCH 117/201] New translations MessageBundle.properties (Italian) --- src/main/resources/MessageBundle_it_IT.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index 23bf68ace..a11789b73 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Il file di tag richiesto [{}] non \u00e8 stato tag_files_not_encoded_with_utf8_warning=I file di tag sono codificati con [{}]. Raccomandiamo sempre di utilizzare UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=La borsa [{}] non contiene un tag manifest, che \u00e8 sempre consigliato. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=Nel manifest [{}], il percorso [{}] \u00e8 uguale a un altro percorso, ad eccezione del caso. Questo pu\u00f2 causare problemi se si sposta la borsa in un file system che non fa distinzione tra maiuscole e minuscole. manifest_line_violated_spec_error=Manifest contiene la riga [{}] che non segue la forma specificata di md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From d3eb7f07be4f68881687c262f8145de75f7e4d9e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:07 -0400 Subject: [PATCH 118/201] New translations MessageBundle.properties (Hungarian) --- src/main/resources/MessageBundle_hu_HU.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_hu_HU.properties b/src/main/resources/MessageBundle_hu_HU.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_hu_HU.properties +++ b/src/main/resources/MessageBundle_hu_HU.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From da5531e317ba92d85d928451b716847f7f69fa4f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:08 -0400 Subject: [PATCH 119/201] New translations MessageBundle.properties (Afrikaans) --- src/main/resources/MessageBundle_af_ZA.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_af_ZA.properties b/src/main/resources/MessageBundle_af_ZA.properties index cc45f7255..1d20b2661 100644 --- a/src/main/resources/MessageBundle_af_ZA.properties +++ b/src/main/resources/MessageBundle_af_ZA.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From fd0907c7d56f5cd944c79bdb1390b6c869f4c26a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:10 -0400 Subject: [PATCH 120/201] New translations MessageBundle.properties (Hebrew) --- src/main/resources/MessageBundle_he_IL.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_he_IL.properties b/src/main/resources/MessageBundle_he_IL.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_he_IL.properties +++ b/src/main/resources/MessageBundle_he_IL.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 2d5d9757f74c69680f5c597f37fd08e9bc661da9 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:12 -0400 Subject: [PATCH 121/201] New translations MessageBundle.properties (Greek) --- src/main/resources/MessageBundle_el_GR.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_el_GR.properties b/src/main/resources/MessageBundle_el_GR.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_el_GR.properties +++ b/src/main/resources/MessageBundle_el_GR.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 186dcadd29e94c42a281c3c86a65de319da6450d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:14 -0400 Subject: [PATCH 122/201] New translations MessageBundle.properties (German) --- src/main/resources/MessageBundle_de_DE.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 829ee5293..9c1b698a4 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Die ben\\u00f6tigte Tag Datei [{}] konnte nich tag_files_not_encoded_with_utf8_warning=Tag Dateien sind [{}] kodiert. Wir empfehlen stattdessen die Verwendung von UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Die bag [{}] enth\\u00e4lt kein Tag Manifest, welches f\\u00fcr jede bag empfohlen wird. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=Im Manifest [{}] wird der Pfad [{}] mit unterschiedlicher Gro\\u00df- und Kleinschreibung aufgef\\u00fchrt. Dies kann bei einigen Dateisystemen zu Problemen f\\u00fchren. manifest_line_violated_spec_error=Das Manifest enth\\u00e4lt die Zeile [{}], welche nicht dem geforderten Schema folgt. md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From a38bba19823195a0709d0a872d980250dce3b66d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:15 -0400 Subject: [PATCH 123/201] New translations MessageBundle.properties (French) --- src/main/resources/MessageBundle_fr_FR.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_fr_FR.properties b/src/main/resources/MessageBundle_fr_FR.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_fr_FR.properties +++ b/src/main/resources/MessageBundle_fr_FR.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From f41eb7196642791eab21cb5c6b01e111b29bbc4a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:16 -0400 Subject: [PATCH 124/201] New translations MessageBundle.properties (Finnish) --- src/main/resources/MessageBundle_fi_FI.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_fi_FI.properties b/src/main/resources/MessageBundle_fi_FI.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_fi_FI.properties +++ b/src/main/resources/MessageBundle_fi_FI.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 6482662711160e043e17a1d771da387243dc5e5b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:17 -0400 Subject: [PATCH 125/201] New translations MessageBundle.properties (English) --- src/main/resources/MessageBundle_en_US.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_en_US.properties b/src/main/resources/MessageBundle_en_US.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_en_US.properties +++ b/src/main/resources/MessageBundle_en_US.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 874e834ab54d36d6c2c55e8585ec3fadc38da52d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:18 -0400 Subject: [PATCH 126/201] New translations MessageBundle.properties (Dutch) --- src/main/resources/MessageBundle_nl_NL.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_nl_NL.properties b/src/main/resources/MessageBundle_nl_NL.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_nl_NL.properties +++ b/src/main/resources/MessageBundle_nl_NL.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 35694b98a211f5d55eab536132393afe5442160f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:20 -0400 Subject: [PATCH 127/201] New translations MessageBundle.properties (Danish) --- src/main/resources/MessageBundle_da_DK.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_da_DK.properties b/src/main/resources/MessageBundle_da_DK.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_da_DK.properties +++ b/src/main/resources/MessageBundle_da_DK.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 6c18ca8c8edd8700f7785d9edfdf3f9e3752acf6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:21 -0400 Subject: [PATCH 128/201] New translations MessageBundle.properties (Czech) --- src/main/resources/MessageBundle_cs_CZ.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_cs_CZ.properties b/src/main/resources/MessageBundle_cs_CZ.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_cs_CZ.properties +++ b/src/main/resources/MessageBundle_cs_CZ.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 6cded1a0d3895803b959276318849736bb0fc4b6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:23 -0400 Subject: [PATCH 129/201] New translations MessageBundle.properties (Chinese Traditional) --- src/main/resources/MessageBundle_zh_TW.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_zh_TW.properties b/src/main/resources/MessageBundle_zh_TW.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_zh_TW.properties +++ b/src/main/resources/MessageBundle_zh_TW.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 1b6c52306809db5bbb6c17af0f53db859a8bd094 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:24 -0400 Subject: [PATCH 130/201] New translations MessageBundle.properties (Chinese Simplified) --- src/main/resources/MessageBundle_zh_CN.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_zh_CN.properties b/src/main/resources/MessageBundle_zh_CN.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_zh_CN.properties +++ b/src/main/resources/MessageBundle_zh_CN.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 301933aad985a55a9777c20894403f28b90f6696 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:25 -0400 Subject: [PATCH 131/201] New translations MessageBundle.properties (Catalan) --- src/main/resources/MessageBundle_ca_ES.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_ca_ES.properties b/src/main/resources/MessageBundle_ca_ES.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_ca_ES.properties +++ b/src/main/resources/MessageBundle_ca_ES.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From abe8e22697846098ffc3e02eb993441ca8c259af Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:27 -0400 Subject: [PATCH 132/201] New translations MessageBundle.properties (Arabic) --- src/main/resources/MessageBundle_ar_SA.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_ar_SA.properties b/src/main/resources/MessageBundle_ar_SA.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_ar_SA.properties +++ b/src/main/resources/MessageBundle_ar_SA.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 80a9f1696cb552599a5d4989e41113bb7015c962 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 08:52:28 -0400 Subject: [PATCH 133/201] New translations MessageBundle.properties (Vietnamese) --- src/main/resources/MessageBundle_vi_VN.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_vi_VN.properties b/src/main/resources/MessageBundle_vi_VN.properties index 383213541..cb86591b1 100644 --- a/src/main/resources/MessageBundle_vi_VN.properties +++ b/src/main/resources/MessageBundle_vi_VN.properties @@ -73,7 +73,7 @@ required_tag_file_not_found_error=Required tag file [{}] was not found\! tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest, which is always recommended. +bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. From 09d121bdced53fabee8df49f002d16cdc067277e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 09:01:59 -0400 Subject: [PATCH 134/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 00416d0d8..45c066a58 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -25,7 +25,7 @@ different_normalization=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem leading_dot_slash=Ett manifest listar alla datafiler som relativa till bagens rotkatalog, det \u00e4r \u00f6verfl\u00f6digt att specificera det med en punkt. non_standard_algorithm=Kontrollsumma-algoritmen som anv\u00e4nds \u00e4r inte en del av Javas standardexekvering. \u00d6verv\u00e4g att anv\u00e4nda SHA-512 ist\u00e4llet. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. +md5sum_tool_generated_manifest=Manifestet skapades med hj\u00e4lp av verktyg f\u00f6r kontrollsummahantering s\u00e5som de som ing\u00e5r i GNU Coreutils package (md5sum, sha1sum, etc.), h\u00e4r gemensamt refererat till 'md5sum'. Detta skapar sm\u00e5 skillnader i genererade manifest vilket kan skapa problem i vissa implementationer. missing_tag_manifest=Tag-manifestet skyddar mot ett styckat payload-manifest. Det rekommenderas att alltid inkludera det. old_bagit_version=Versionen av bagit-specifikationen \u00e4r inte den senaste. \u00d6verv\u00e4g att konvertera till den senaste versionen. os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skull. Dessa fungerar inte i alla OS-versioner och ska inte inkluderas i n\u00e5got manifest. Exempel\: Thumbs.db eller .DS_Store i OS X @@ -74,7 +74,7 @@ tag_files_not_encoded_with_utf8_warning=Tag-filer \u00e4r kodade med [{}]. Vi re #For ManifestChecker.java bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. +different_case_warning=I manifestet [{}], \u00e4r s\u00f6kv\u00e4gen samma som en annan s\u00f6kv\u00e4g med undantag f\u00f6r skiftesl\u00e4ge. Detta kan skapa problem om bagen flyttas till ett filsystem som \u00e4r ok\u00e4nsligt f\u00f6r skiftesl\u00e4ge. manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of md5sum_generated_line_warning=S\u00f6kv\u00e4gen b\u00f6rjar med ett *, vilket inneb\u00e4r att det genererades med ett annat verktyg \u00e4n bagit. Det rekommenderas att ta bort * f\u00f6r att m\u00f6ta kraven i bagit-specifikationen. cannot_access_parent_path_error=Kunde inte f\u00e5 \u00e5tkomst till \u00f6verordnad katalog [{}]. From 09baec4208ed9ac1f9ab29ef24821dde745e0403 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 8 Jun 2018 09:20:26 -0400 Subject: [PATCH 135/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 45c066a58..fb5f27001 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -73,9 +73,9 @@ required_tag_file_not_found_error=Obligatorisk tag-fil [{}] kunde inte hittas\! tag_files_not_encoded_with_utf8_warning=Tag-filer \u00e4r kodade med [{}]. Vi rekommenderar att ist\u00e4llet alltid anv\u00e4nda UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. +bag_missing_tag_manifest_warning=Bagen[{}] inneh\u00e5ller inget tag-manifest. Det \u00e4r alltid rekommenderat att inkludera ett tag-manifest. different_case_warning=I manifestet [{}], \u00e4r s\u00f6kv\u00e4gen samma som en annan s\u00f6kv\u00e4g med undantag f\u00f6r skiftesl\u00e4ge. Detta kan skapa problem om bagen flyttas till ett filsystem som \u00e4r ok\u00e4nsligt f\u00f6r skiftesl\u00e4ge. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of +manifest_line_violated_spec_error=Manifestet inneh\u00e5ller raden [{}] vilket inte f\u00f6ljer konventionen md5sum_generated_line_warning=S\u00f6kv\u00e4gen b\u00f6rjar med ett *, vilket inneb\u00e4r att det genererades med ett annat verktyg \u00e4n bagit. Det rekommenderas att ta bort * f\u00f6r att m\u00f6ta kraven i bagit-specifikationen. cannot_access_parent_path_error=Kunde inte f\u00e5 \u00e5tkomst till \u00f6verordnad katalog [{}]. different_normalization_in_manifest_warning=Filen [{}] har en annan normalisering \u00e4n vad som \u00e4r specificerat i manifestet. @@ -194,7 +194,7 @@ found_payload_oxum=Hittade Payload-Oxum [{}] f\u00f6r bag [{}]. payload_oxum_missing_error=Payload-Oxum finns inte i bagen\! parse_size_in_bytes=Parsar [{}] f\u00f6r den totala bytestorleken av Payload Oxum. parse_number_of_files=Parsar [{}] f\u00f6r antalet filer att hitta i payload-katalogen. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. +compare_payload_oxums=Medskickad payload-oxum\: [{}], Ber\u00e4knad Payload-Oxum\:[{}.{}], f\u00f6r payload-katalog [{}]. invalid_total_size_error=Ogiltlig total storlek. F\u00f6rv\u00e4ntade [{}] men ber\u00e4knade [{}]\! invalid_file_cound_error=Ogiltig antal filer. F\u00f6rv\u00e4ntade [{}] men hittade [{}]\! From ccecf6545f316c500ee7ff944fc1ba82b716b3b4 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 11 Jun 2018 02:00:41 -0400 Subject: [PATCH 136/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index fb5f27001..6b06c53d8 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -204,7 +204,7 @@ writing_line_to_file=Skriver rad [{}] till [{}] #for BagWriter.java writing_payload_files=Skriver payload-filer. -upsert_payload_oxum=Upserting Payload-Oxum. +upsert_payload_oxum=L\u00e4gger till/uppdaterar oxumchecksumma p\u00e5 inneh\u00e5ll. writing_bagit_file=Skriver bagit.txt filen. writing_payload_manifests=Skriver payload-manifest(en). writing_bag_metadata=Skriver bag-metadatan. From ae0eb0d3453a20016ae19371808f83bbd6a75f9e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:24 -0400 Subject: [PATCH 137/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 6b06c53d8..0841eeecb 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -32,6 +32,7 @@ os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skul payload_oxum_missing=Det rekommenderas att alltid inkludera Payload-Oxum i bagens metadata eftersom det m\u00f6jligg\u00f6r en 'snabbverifiering' av bagen. tag_files_encoding=Det rekommenderas att alltid anv\u00e4nda UTF-8. weak_checksum_algorithm=Algoritmen f\u00f6r checksumman \u00e4r bristf\u00e4llig. Vi rekommenderar anv\u00e4ndning av SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Letar efter kodproblem. @@ -84,6 +85,7 @@ leading_dot_slash_warning=I manifestet [{}] rad [{}] \u00e4r en icke-normalisera os_specific_files_warning=I manifestet [{}] rad [{}] inneh\u00e5ller en fil specifik f\u00f6r operativsystemet. weak_algorithm_warning=Uppt\u00e4ckte en k\u00e4nt svag algoritm [{}]. Med de fantastiska framstegen inom h\u00e5rdvaruutveckling kostar det inte mycket att anv\u00e4nda fler bits f\u00f6r att ber\u00e4kna kontrollsumman. non_standard_algorithm_warning=Uppt\u00e4ckte algoritm [{}] som inte ing\u00e5r som standard i Java. Detta kommer att g\u00f6ra det sv\u00e5rare att l\u00e4sa denna bag p\u00e5 vissa system. \u00d6verv\u00e4ga att \u00e4ndra det till SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=Payload-Oxum-nyckel hittades inte i bag-metadatan. Detta f\u00f6rhindrar en "snabbverifiering". From b9b58557d3c9ec7012a07495ffd0245ca48d13d9 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:25 -0400 Subject: [PATCH 138/201] New translations MessageBundle.properties (Indonesian) --- src/main/resources/MessageBundle_id_ID.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties index 623d64c9c..c550930c5 100644 --- a/src/main/resources/MessageBundle_id_ID.properties +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 8f9e7abc2bf3cda673880a4b5570d13630c2669b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:27 -0400 Subject: [PATCH 139/201] New translations MessageBundle.properties (Ukrainian) --- src/main/resources/MessageBundle_uk_UA.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_uk_UA.properties b/src/main/resources/MessageBundle_uk_UA.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_uk_UA.properties +++ b/src/main/resources/MessageBundle_uk_UA.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 3af2a0165abc2136f42e10637822b09ca02ec255 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:28 -0400 Subject: [PATCH 140/201] New translations MessageBundle.properties (Turkish) --- src/main/resources/MessageBundle_tr_TR.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_tr_TR.properties b/src/main/resources/MessageBundle_tr_TR.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_tr_TR.properties +++ b/src/main/resources/MessageBundle_tr_TR.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 0b38e909b466f213863895a4572c669c363082f9 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:30 -0400 Subject: [PATCH 141/201] New translations MessageBundle.properties (Spanish) --- src/main/resources/MessageBundle_es_ES.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index bf09df4eb..544014d54 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -32,6 +32,7 @@ os_specific_files=Archivos creados por el sistema operativo (SO) para su propio payload_oxum_missing=Es recomendado siempre incluir la Carga-Oxum en el metadata bag debido a que permite para una "r\u00e1pida verificaci\u00f3n" del bag. tag_files_encoding=Es recomendado siempre usar UTF-8. weak_checksum_algorithm=El algoritmo de suma de verificaci\\u00f3n usado es conocido por ser d\\u00e9bil. Recomendamos usar SHA512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Comprobando problemas de codificaci\u00f3n. @@ -84,6 +85,7 @@ leading_dot_slash_warning=En manifiesto [{}] l\u00ednea [{}] es una ruta no norm os_specific_files_warning=En manifiesto [{}] l\u00ednea [{}] contiene un archivo espec\u00edfico de SO. weak_algorithm_warning=Detectado un algoritmo d\u00e9bil conocido [{}]. Con los grandes avances en hardware hay poco problema en usar m\u00e1s bits para calcular la suma de comprobaci\u00f3n. non_standard_algorithm_warning=Algoritmo detectado [{}] el cual no es incluido por defecto en Java. Esto lo har\u00e1 m\u00e1s dif\u00edcil de leer en este bag en algunos sistemas. Considera cambiarlo a SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=La clave Payload-Oxum no fue encontrada en la metadata bag. Esto evitar\u00e1 una "verificaci\u00f3n r\u00e1pida". From 869c0f6171c8f704b4a1385eb9df97c3717ed957 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:31 -0400 Subject: [PATCH 142/201] New translations MessageBundle.properties (Serbian (Cyrillic)) --- src/main/resources/MessageBundle_sr_SP.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_sr_SP.properties b/src/main/resources/MessageBundle_sr_SP.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_sr_SP.properties +++ b/src/main/resources/MessageBundle_sr_SP.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 51bb9048ae2d3d070502700740f3956156794edd Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:33 -0400 Subject: [PATCH 143/201] New translations MessageBundle.properties (Russian) --- src/main/resources/MessageBundle_ru_RU.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_ru_RU.properties b/src/main/resources/MessageBundle_ru_RU.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_ru_RU.properties +++ b/src/main/resources/MessageBundle_ru_RU.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 1ed9967f31ab8897ec504987f84ad7b17cb10d7e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:34 -0400 Subject: [PATCH 144/201] New translations MessageBundle.properties (Romanian) --- src/main/resources/MessageBundle_ro_RO.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_ro_RO.properties b/src/main/resources/MessageBundle_ro_RO.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_ro_RO.properties +++ b/src/main/resources/MessageBundle_ro_RO.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 0ada3e6926c7c6e7c9dc964e30ed12fa78c43db8 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:36 -0400 Subject: [PATCH 145/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- src/main/resources/MessageBundle_pt_BR.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_pt_BR.properties +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From cbbe70ef55809d1ebc41fa689ca8a700342b1c9f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:37 -0400 Subject: [PATCH 146/201] New translations MessageBundle.properties (Portuguese) --- src/main/resources/MessageBundle_pt_PT.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_pt_PT.properties b/src/main/resources/MessageBundle_pt_PT.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_pt_PT.properties +++ b/src/main/resources/MessageBundle_pt_PT.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 7e06ccf9cef7066a610f4fe14eb45da63a65eaf0 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:38 -0400 Subject: [PATCH 147/201] New translations MessageBundle.properties (Polish) --- src/main/resources/MessageBundle_pl_PL.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_pl_PL.properties b/src/main/resources/MessageBundle_pl_PL.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_pl_PL.properties +++ b/src/main/resources/MessageBundle_pl_PL.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From aee7cabb16a0666310a281cbf50b7b3200a86636 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:40 -0400 Subject: [PATCH 148/201] New translations MessageBundle.properties (Norwegian) --- src/main/resources/MessageBundle_no_NO.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_no_NO.properties b/src/main/resources/MessageBundle_no_NO.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_no_NO.properties +++ b/src/main/resources/MessageBundle_no_NO.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 079d480097acfe5358946aa4d6639c00a574b62a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:41 -0400 Subject: [PATCH 149/201] New translations MessageBundle.properties (Korean) --- src/main/resources/MessageBundle_ko_KR.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_ko_KR.properties b/src/main/resources/MessageBundle_ko_KR.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_ko_KR.properties +++ b/src/main/resources/MessageBundle_ko_KR.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 92a9e5d220263a0c28ba9d84b21777666fd2cc6d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:44 -0400 Subject: [PATCH 150/201] New translations MessageBundle.properties (Japanese) --- src/main/resources/MessageBundle_ja_JP.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_ja_JP.properties b/src/main/resources/MessageBundle_ja_JP.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_ja_JP.properties +++ b/src/main/resources/MessageBundle_ja_JP.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From e76b17008acb3e27cf356ddb97d8f0d957e90834 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:45 -0400 Subject: [PATCH 151/201] New translations MessageBundle.properties (Italian) --- src/main/resources/MessageBundle_it_IT.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index a11789b73..e3704c3fd 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -32,6 +32,7 @@ os_specific_files=I file creati dal sistema operativo (OS) per il proprio usano. payload_oxum_missing=Si consiglia di includere sempre il Payload-Oxum nei metadati borsa poich\u00e9 permette per una verifica rapida del' della borsa. tag_files_encoding=Si consiglia di utilizzare sempre UTF-8. weak_checksum_algorithm=L'algoritmo di checksum utilizzato \u00e8 noto per essere debole. Raccomandiamo l'uso di SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Controllo dei problemi di codifica. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] \u00e8 un percorso non norm os_specific_files_warning=Nella riga manifest {{}] [{}] contiene un file specifico del sistema operativo. weak_algorithm_warning=Rilevato un algoritmo debole noto [{}]. Con i grandi progressi nell'hardware dei computer, c'\u00e8 poco da fare per usare pi\u00f9 bit per calcolare il checksum. non_standard_algorithm_warning=Algoritmo rilevato [{}] che non \u00e8 incluso di default in Java. Questo render\u00e0 pi\u00f9 difficile leggere questa borsa su alcuni sistemi. Prendi in considerazione la possibilit\u00e0 di cambiarlo in SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=La chiave Payload-Oxum non \u00e8 stata trovata nei metadati della borsa. Ci\u00f2 impedir\u00e0 una "verifica rapida". From 842e70d24ee873e3bdce19c22e01b1d73b021ecc Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:46 -0400 Subject: [PATCH 152/201] New translations MessageBundle.properties (Hungarian) --- src/main/resources/MessageBundle_hu_HU.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_hu_HU.properties b/src/main/resources/MessageBundle_hu_HU.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_hu_HU.properties +++ b/src/main/resources/MessageBundle_hu_HU.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 5645dbb9092e52a2a72c408c047ecc89167e2659 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:48 -0400 Subject: [PATCH 153/201] New translations MessageBundle.properties (Afrikaans) --- src/main/resources/MessageBundle_af_ZA.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_af_ZA.properties b/src/main/resources/MessageBundle_af_ZA.properties index 1d20b2661..6e0805ad0 100644 --- a/src/main/resources/MessageBundle_af_ZA.properties +++ b/src/main/resources/MessageBundle_af_ZA.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 43d8562063c6f59837269574c34490a974ba5d7b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:50 -0400 Subject: [PATCH 154/201] New translations MessageBundle.properties (Hebrew) --- src/main/resources/MessageBundle_he_IL.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_he_IL.properties b/src/main/resources/MessageBundle_he_IL.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_he_IL.properties +++ b/src/main/resources/MessageBundle_he_IL.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 3630ba4908b9855d101c6ee6652c2c2e7dd4e21c Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:51 -0400 Subject: [PATCH 155/201] New translations MessageBundle.properties (Greek) --- src/main/resources/MessageBundle_el_GR.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_el_GR.properties b/src/main/resources/MessageBundle_el_GR.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_el_GR.properties +++ b/src/main/resources/MessageBundle_el_GR.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 842ccf64fb81c079c3bfb539cd2a3a9c41c5c668 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:52 -0400 Subject: [PATCH 156/201] New translations MessageBundle.properties (German) --- src/main/resources/MessageBundle_de_DE.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 9c1b698a4..71544ba32 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -32,6 +32,7 @@ os_specific_files=Dateien die vom Betriebssystem f\\u00fcr eigene Zwecke erzeugt payload_oxum_missing=Es wird empfohlen, die Eigenschaft Payload-Oxum in den Metadaten jeder bag zu hinterlegen, da diese eine schnelle \\u00dcberpr\\u00fcfung der bag erlaubt. tag_files_encoding=Es wird empfohlen UTF-8 zu verwenden. weak_checksum_algorithm=Der verwendete Algorithmus zur Pr\\u00fcfsummenerzeugung ist angreifbar. Wir empfehlen die Verwendung von SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Pr\\u00fcfe auf Probleme mit der Zeichenkodierung. @@ -84,6 +85,7 @@ leading_dot_slash_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] einen nicht os_specific_files_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] eine betriebssystemspezifische Datei. weak_algorithm_warning=Pr\\u00fcfsummenalgorithmus [{}] ist als angreifbar bekannt. Dank der Fortschritte aktueller Computersysteme verursacht die Erzeugung einer st\\u00e4rkeren Pr\\u00fcfsumme nur minimale Verz\\u00f6gerung. non_standard_algorithm_warning=Der verwendete Pr\\u00fcfsummenalgorithmus [{}] ist nicht Teil der Standard Java Laufzeitumgebung. Dies erschwert das Lesen der bag auf einigen Systemen. Die Verwendung von SHA-512 wird empfohlen. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=Die Eigenschaft Payload-Oxum wurde nicht in den bag Metadaten gefunden. Dies verhindert eine schnelle \\u00dcberpr\\u00fcfung der bag. From 2d2db0e7f068c1f23740bbde81737645b3780481 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:54 -0400 Subject: [PATCH 157/201] New translations MessageBundle.properties (French) --- src/main/resources/MessageBundle_fr_FR.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_fr_FR.properties b/src/main/resources/MessageBundle_fr_FR.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_fr_FR.properties +++ b/src/main/resources/MessageBundle_fr_FR.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 2b57b31f949a91191194e40c7a0dd284bf18286a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:55 -0400 Subject: [PATCH 158/201] New translations MessageBundle.properties (Finnish) --- src/main/resources/MessageBundle_fi_FI.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_fi_FI.properties b/src/main/resources/MessageBundle_fi_FI.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_fi_FI.properties +++ b/src/main/resources/MessageBundle_fi_FI.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 55f3ae879ea4bc89f170e3b09772dc18df917197 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:57 -0400 Subject: [PATCH 159/201] New translations MessageBundle.properties (English) --- src/main/resources/MessageBundle_en_US.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_en_US.properties b/src/main/resources/MessageBundle_en_US.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_en_US.properties +++ b/src/main/resources/MessageBundle_en_US.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 74e43b17b6acbfefd78dcbad173c8f02f3b610fc Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:58 -0400 Subject: [PATCH 160/201] New translations MessageBundle.properties (Dutch) --- src/main/resources/MessageBundle_nl_NL.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_nl_NL.properties b/src/main/resources/MessageBundle_nl_NL.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_nl_NL.properties +++ b/src/main/resources/MessageBundle_nl_NL.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 2cfe284a1412a19eeb37805971b5113ad1df78fc Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:11:59 -0400 Subject: [PATCH 161/201] New translations MessageBundle.properties (Danish) --- src/main/resources/MessageBundle_da_DK.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_da_DK.properties b/src/main/resources/MessageBundle_da_DK.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_da_DK.properties +++ b/src/main/resources/MessageBundle_da_DK.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 3e2b886e95a6c782b0ac351f05e0c54971676347 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:12:01 -0400 Subject: [PATCH 162/201] New translations MessageBundle.properties (Czech) --- src/main/resources/MessageBundle_cs_CZ.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_cs_CZ.properties b/src/main/resources/MessageBundle_cs_CZ.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_cs_CZ.properties +++ b/src/main/resources/MessageBundle_cs_CZ.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 04d7dfb8339f134f20f499fa3efa290a8389ba3b Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:12:02 -0400 Subject: [PATCH 163/201] New translations MessageBundle.properties (Chinese Traditional) --- src/main/resources/MessageBundle_zh_TW.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_zh_TW.properties b/src/main/resources/MessageBundle_zh_TW.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_zh_TW.properties +++ b/src/main/resources/MessageBundle_zh_TW.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 4e8eaffa7dd07ab97ad702adec2535a1e1de6154 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:12:04 -0400 Subject: [PATCH 164/201] New translations MessageBundle.properties (Chinese Simplified) --- src/main/resources/MessageBundle_zh_CN.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_zh_CN.properties b/src/main/resources/MessageBundle_zh_CN.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_zh_CN.properties +++ b/src/main/resources/MessageBundle_zh_CN.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From e2fad609b64649dc999400eacda7260059fa5b6d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:12:05 -0400 Subject: [PATCH 165/201] New translations MessageBundle.properties (Catalan) --- src/main/resources/MessageBundle_ca_ES.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_ca_ES.properties b/src/main/resources/MessageBundle_ca_ES.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_ca_ES.properties +++ b/src/main/resources/MessageBundle_ca_ES.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 852a2de3a7fe164835419998cff8c4b5b01d7ee7 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:12:07 -0400 Subject: [PATCH 166/201] New translations MessageBundle.properties (Arabic) --- src/main/resources/MessageBundle_ar_SA.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_ar_SA.properties b/src/main/resources/MessageBundle_ar_SA.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_ar_SA.properties +++ b/src/main/resources/MessageBundle_ar_SA.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From adcd57cd650b3d12f3a4f100ff0c3e0b5169e518 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 19 Jun 2018 09:12:08 -0400 Subject: [PATCH 167/201] New translations MessageBundle.properties (Vietnamese) --- src/main/resources/MessageBundle_vi_VN.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/MessageBundle_vi_VN.properties b/src/main/resources/MessageBundle_vi_VN.properties index cb86591b1..30db54fc6 100644 --- a/src/main/resources/MessageBundle_vi_VN.properties +++ b/src/main/resources/MessageBundle_vi_VN.properties @@ -32,6 +32,7 @@ os_specific_files=Files created by the operating system (OS) for its own use. Th payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. tag_files_encoding=It is recommended to always use UTF-8. weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. +manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Checking encoding problems. @@ -84,6 +85,7 @@ leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. +manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". From 7924d4925460a8c330297867079cecf4a89a64c6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Wed, 20 Jun 2018 04:38:42 -0400 Subject: [PATCH 168/201] New translations MessageBundle.properties (Swedish) --- src/main/resources/MessageBundle_sv_SE.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index 0841eeecb..fe6352e34 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -32,7 +32,7 @@ os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skul payload_oxum_missing=Det rekommenderas att alltid inkludera Payload-Oxum i bagens metadata eftersom det m\u00f6jligg\u00f6r en 'snabbverifiering' av bagen. tag_files_encoding=Det rekommenderas att alltid anv\u00e4nda UTF-8. weak_checksum_algorithm=Algoritmen f\u00f6r checksumman \u00e4r bristf\u00e4llig. Vi rekommenderar anv\u00e4ndning av SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. +manifest_file_sets_differ_between_algorithms=Fr\u00e5n och med bagit version 1.0 \u00e4r det rekommenderat att samtliga payload-manifest inneh\u00e5ller samma upps\u00e4ttning filer som i andra payload-manifest. Det \u00e4r ocks\u00e5 rekommenderat att alla tag-manifest inneh\u00e5ller samma upps\u00e4ttning filer som i andra tag-manifest. #for BagLinter.java checking_encoding_problems=Letar efter kodproblem. @@ -85,7 +85,7 @@ leading_dot_slash_warning=I manifestet [{}] rad [{}] \u00e4r en icke-normalisera os_specific_files_warning=I manifestet [{}] rad [{}] inneh\u00e5ller en fil specifik f\u00f6r operativsystemet. weak_algorithm_warning=Uppt\u00e4ckte en k\u00e4nt svag algoritm [{}]. Med de fantastiska framstegen inom h\u00e5rdvaruutveckling kostar det inte mycket att anv\u00e4nda fler bits f\u00f6r att ber\u00e4kna kontrollsumman. non_standard_algorithm_warning=Uppt\u00e4ckte algoritm [{}] som inte ing\u00e5r som standard i Java. Detta kommer att g\u00f6ra det sv\u00e5rare att l\u00e4sa denna bag p\u00e5 vissa system. \u00d6verv\u00e4ga att \u00e4ndra det till SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. +manifest_fileset_differ=Manifestet [{}] inneh\u00e5ller inte samma upps\u00e4ttning filer som manifestet [{}], det rekommenderas att de \u00e4r likalydande. #for MetadataChecker.java missing_payload_oxum_warning=Payload-Oxum-nyckel hittades inte i bag-metadatan. Detta f\u00f6rhindrar en "snabbverifiering". From ec7108110b14290a86a6e129f9926316f1e3f7cb Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 05:23:06 -0400 Subject: [PATCH 169/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- src/main/resources/MessageBundle_pt_BR.properties | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties index 30db54fc6..73c10a984 100644 --- a/src/main/resources/MessageBundle_pt_BR.properties +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -1,12 +1,11 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] +fetch_allowed=Os arquivos de busca s\u00e3o permitidos? [{}] +serialization_allowed=Serializa\u00e7\u00e3o \u00e9\: [{}] +parsing_bagit_profile_info_section=Analisando a se\u00e7\u00e3o Baglt-Profile-Info +identifier=Identificador \u00e9 [{}] +source_organization=A Organiza\u00e7\u00e3o-Fonte \u00e9 [{}] contact_name=Contact-Name is [{}] contact_email=Contact-Email is [{}] external_description=External-Description is [{}] From a50010d75aff03bffd284f33709bb157b03dd278 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 05:35:03 -0400 Subject: [PATCH 170/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- .../resources/MessageBundle_pt_BR.properties | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties index 73c10a984..1291095a0 100644 --- a/src/main/resources/MessageBundle_pt_BR.properties +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -6,21 +6,21 @@ serialization_allowed=Serializa\u00e7\u00e3o \u00e9\: [{}] parsing_bagit_profile_info_section=Analisando a se\u00e7\u00e3o Baglt-Profile-Info identifier=Identificador \u00e9 [{}] source_organization=A Organiza\u00e7\u00e3o-Fonte \u00e9 [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} +contact_name=Nome-Contato \u00e9 [{}] +contact_email=Email-Contato \u00e9 [{}] +external_description=Descri\u00e7\u00e3o-Externa \u00e9 [{}] +version=Vers\u00e3o \u00e9 [{}] +parsing_bag_info=Analisando a se\u00e7\u00e3o Bag-Info +required_manifest_types=Tipos de manifesto obrigat\u00f3rios {} +acceptable_serialization_mime_types=Os tipos MIME de serializa\u00e7\u00e3o aceit\u00e1veis s\u00e3o {} +required_tagmanifest_types=Tipos de tags de manifesto obrigat\u00f3rios s\u00e3o {} +tag_files_required=Tag dos arquivos obrigat\u00f3rias s\u00e3o {} +acceptable_bagit_versions=Vers\u00f5es aceit\u00e1veis do bagit s\u00e3o {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. +bag_within_a_bag=Um diret\u00f3rio de dados pode conter qualquer coisa, incluindo outra mochila. Entretanto, seria melhor mesclar as mochilas juntas. +different_case=A mochila cont\u00e9m dois arquivos que diferem apenas em caso. Isso pode causar problemas no sistema de arquivos igual o primeiro utilizado pela apple (HFS). +different_normalization=A mochila contem dois arquivos que diferem apenas na normaliza\u00e7\u00e3o. Isso pode causar falhas na verifica\u00e7\u00e3o em alguns sistemas, em geral confus\u00e3o dos usu\u00e1rio. extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. From caf21e1a96a9b21e1659e338ba0298af43d1f430 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:28 -0400 Subject: [PATCH 171/201] New translations MessageBundle.properties (Arabic) --- .../resources/MessageBundle_ar_SA.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_ar_SA.properties b/src/main/resources/MessageBundle_ar_SA.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_ar_SA.properties +++ b/src/main/resources/MessageBundle_ar_SA.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 898b7dfbb1c7eec783bf4b93345adebd10e5940e Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:30 -0400 Subject: [PATCH 172/201] New translations MessageBundle.properties (Catalan) --- .../resources/MessageBundle_ca_ES.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_ca_ES.properties b/src/main/resources/MessageBundle_ca_ES.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_ca_ES.properties +++ b/src/main/resources/MessageBundle_ca_ES.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 2f58f6448256191136edbb2a8b98168568653c96 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:31 -0400 Subject: [PATCH 173/201] New translations MessageBundle.properties (Chinese Simplified) --- .../resources/MessageBundle_zh_CN.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_zh_CN.properties b/src/main/resources/MessageBundle_zh_CN.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_zh_CN.properties +++ b/src/main/resources/MessageBundle_zh_CN.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From d992f3c62474e439f3fe3a5aa142072919f8d783 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:32 -0400 Subject: [PATCH 174/201] New translations MessageBundle.properties (Chinese Traditional) --- .../resources/MessageBundle_zh_TW.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_zh_TW.properties b/src/main/resources/MessageBundle_zh_TW.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_zh_TW.properties +++ b/src/main/resources/MessageBundle_zh_TW.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 4aa6650b0d5fab31e69d8f632b62b8c283110111 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:37 -0400 Subject: [PATCH 175/201] New translations MessageBundle.properties (Afrikaans) --- .../resources/MessageBundle_af_ZA.properties | 134 ------------------ 1 file changed, 134 deletions(-) diff --git a/src/main/resources/MessageBundle_af_ZA.properties b/src/main/resources/MessageBundle_af_ZA.properties index 6e0805ad0..99f3802fb 100644 --- a/src/main/resources/MessageBundle_af_ZA.properties +++ b/src/main/resources/MessageBundle_af_ZA.properties @@ -1,228 +1,94 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java fetch_allowed=Apakah mengambil berkas diizinkan? [{}] serialization_allowed=Serialisasi adalah\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section identifier=Pengenal adalah [{}] source_organization=Organisasi Sumber adalah [{}] contact_name=Nama Kontak adalah [{}] contact_email=Surel Kontak adalah [{}] external_description=Deskripsi Eksternal adalah [{}] version=Versi adalah [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} acceptable_serialization_mime_types=Jenis MIME serialiasi yang dapat diterima adalah {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} acceptable_bagit_versions=Versi bagit yang bisa diterima adalah {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 49ce28d5e3c84e124df566ac8a5bf371175e4fb2 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:38 -0400 Subject: [PATCH 176/201] New translations MessageBundle.properties (Portuguese, Brazilian) --- .../resources/MessageBundle_pt_BR.properties | 143 ------------------ 1 file changed, 143 deletions(-) diff --git a/src/main/resources/MessageBundle_pt_BR.properties b/src/main/resources/MessageBundle_pt_BR.properties index 1291095a0..e29060182 100644 --- a/src/main/resources/MessageBundle_pt_BR.properties +++ b/src/main/resources/MessageBundle_pt_BR.properties @@ -1,227 +1,84 @@ #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Os arquivos de busca s\u00e3o permitidos? [{}] -serialization_allowed=Serializa\u00e7\u00e3o \u00e9\: [{}] -parsing_bagit_profile_info_section=Analisando a se\u00e7\u00e3o Baglt-Profile-Info -identifier=Identificador \u00e9 [{}] -source_organization=A Organiza\u00e7\u00e3o-Fonte \u00e9 [{}] -contact_name=Nome-Contato \u00e9 [{}] -contact_email=Email-Contato \u00e9 [{}] -external_description=Descri\u00e7\u00e3o-Externa \u00e9 [{}] -version=Vers\u00e3o \u00e9 [{}] -parsing_bag_info=Analisando a se\u00e7\u00e3o Bag-Info -required_manifest_types=Tipos de manifesto obrigat\u00f3rios {} -acceptable_serialization_mime_types=Os tipos MIME de serializa\u00e7\u00e3o aceit\u00e1veis s\u00e3o {} -required_tagmanifest_types=Tipos de tags de manifesto obrigat\u00f3rios s\u00e3o {} -tag_files_required=Tag dos arquivos obrigat\u00f3rias s\u00e3o {} -acceptable_bagit_versions=Vers\u00f5es aceit\u00e1veis do bagit s\u00e3o {} #for BagitWarning.java -bag_within_a_bag=Um diret\u00f3rio de dados pode conter qualquer coisa, incluindo outra mochila. Entretanto, seria melhor mesclar as mochilas juntas. -different_case=A mochila cont\u00e9m dois arquivos que diferem apenas em caso. Isso pode causar problemas no sistema de arquivos igual o primeiro utilizado pela apple (HFS). -different_normalization=A mochila contem dois arquivos que diferem apenas na normaliza\u00e7\u00e3o. Isso pode causar falhas na verifica\u00e7\u00e3o em alguns sistemas, em geral confus\u00e3o dos usu\u00e1rio. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 40a89e199846d3cac68d5cbae3eaa9118f3cd151 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:40 -0400 Subject: [PATCH 177/201] New translations MessageBundle.properties (Russian) --- .../resources/MessageBundle_ru_RU.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_ru_RU.properties b/src/main/resources/MessageBundle_ru_RU.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_ru_RU.properties +++ b/src/main/resources/MessageBundle_ru_RU.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From a299ac68fb1ec69ab4973eb96668fdf3a7800b70 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:42 -0400 Subject: [PATCH 178/201] New translations MessageBundle.properties (Polish) --- .../resources/MessageBundle_pl_PL.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_pl_PL.properties b/src/main/resources/MessageBundle_pl_PL.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_pl_PL.properties +++ b/src/main/resources/MessageBundle_pl_PL.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From bfb237c521a002a4a7280af9b808c7b4f118d035 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:43 -0400 Subject: [PATCH 179/201] New translations MessageBundle.properties (Portuguese) --- .../resources/MessageBundle_pt_PT.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_pt_PT.properties b/src/main/resources/MessageBundle_pt_PT.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_pt_PT.properties +++ b/src/main/resources/MessageBundle_pt_PT.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From d1e8fa322ea39f84dc98f7fed002ae2f9e8cc108 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:45 -0400 Subject: [PATCH 180/201] New translations MessageBundle.properties (Romanian) --- .../resources/MessageBundle_ro_RO.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_ro_RO.properties b/src/main/resources/MessageBundle_ro_RO.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_ro_RO.properties +++ b/src/main/resources/MessageBundle_ro_RO.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From d15a8cc98a716b6caccfe7c5ef00d28e2426211d Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:46 -0400 Subject: [PATCH 181/201] New translations MessageBundle.properties (Swedish) --- .../resources/MessageBundle_sv_SE.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_sv_SE.properties b/src/main/resources/MessageBundle_sv_SE.properties index fe6352e34..e29060182 100644 --- a/src/main/resources/MessageBundle_sv_SE.properties +++ b/src/main/resources/MessageBundle_sv_SE.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=\u00c4r fetch-filer till\u00e5tna? [{}] -serialization_allowed=Serialisering \u00e4r\: [{}] -parsing_bagit_profile_info_section=Parsar Bagit-Profile-Info sektionen -identifier=Identifierare \u00e4r [{}] -source_organization=Source-Organization \u00e4r [{}] -contact_name=Contact-Name \u00e4r [{}] -contact_email=Contact-Email \u00e4r [{}] -external_description=External-Description \u00e4r [{}] -version=Version \u00e4r [{}] -parsing_bag_info=Parsar Bagit-Profile-Info sektionen -required_manifest_types=Obligatoriska manifest-typer {} -acceptable_serialization_mime_types=Accepterade MIME-typer f\u00f6r serialisering \u00e4r {} -required_tagmanifest_types=Obligatoriska Tag-manifest-typer \u00e4r {} -tag_files_required=Obligatoriska Tag-filer \u00e4r {} -acceptable_bagit_versions=Accepterade bagit-versioner \u00e4r {} #for BagitWarning.java -bag_within_a_bag=En datakatalog kan inneh\u00e5lla vad som helst, \u00e4ven en annan bag. Det \u00e4r emmelertid b\u00e4ttre att sammanfoga dem. -different_case=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig skiftl\u00e4ge. Detta kan orsaka problem med filsystem likt de som anv\u00e4nds av apple(HFS). -different_normalization=Bagen inneh\u00e5ller tv\u00e5 filer som endast skiljer sig \u00e5t i normalisering. Detta kan orsaka att verifieringen misslyckas p\u00e5 vissa system, och skapa allm\u00e4n f\u00f6rvirring hos anv\u00e4ndarna. -extra_lines_in_bagit_files=Bagit-specifikationen s\u00e4ger att den m\u00e5ste inneh\u00e5lla 2 rader. Vissa implementeringar har emellertid valt att ignorera detta vilket kan orsaka kompatibilitetsproblem -leading_dot_slash=Ett manifest listar alla datafiler som relativa till bagens rotkatalog, det \u00e4r \u00f6verfl\u00f6digt att specificera det med en punkt. -non_standard_algorithm=Kontrollsumma-algoritmen som anv\u00e4nds \u00e4r inte en del av Javas standardexekvering. \u00d6verv\u00e4g att anv\u00e4nda SHA-512 ist\u00e4llet. -md5sum_tool_generated_manifest=Manifestet skapades med hj\u00e4lp av verktyg f\u00f6r kontrollsummahantering s\u00e5som de som ing\u00e5r i GNU Coreutils package (md5sum, sha1sum, etc.), h\u00e4r gemensamt refererat till 'md5sum'. Detta skapar sm\u00e5 skillnader i genererade manifest vilket kan skapa problem i vissa implementationer. -missing_tag_manifest=Tag-manifestet skyddar mot ett styckat payload-manifest. Det rekommenderas att alltid inkludera det. -old_bagit_version=Versionen av bagit-specifikationen \u00e4r inte den senaste. \u00d6verv\u00e4g att konvertera till den senaste versionen. -os_specific_files=Filer skapade av operativsystemet (OS) f\u00f6r dess egen skull. Dessa fungerar inte i alla OS-versioner och ska inte inkluderas i n\u00e5got manifest. Exempel\: Thumbs.db eller .DS_Store i OS X -payload_oxum_missing=Det rekommenderas att alltid inkludera Payload-Oxum i bagens metadata eftersom det m\u00f6jligg\u00f6r en 'snabbverifiering' av bagen. -tag_files_encoding=Det rekommenderas att alltid anv\u00e4nda UTF-8. -weak_checksum_algorithm=Algoritmen f\u00f6r checksumman \u00e4r bristf\u00e4llig. Vi rekommenderar anv\u00e4ndning av SHA-512. -manifest_file_sets_differ_between_algorithms=Fr\u00e5n och med bagit version 1.0 \u00e4r det rekommenderat att samtliga payload-manifest inneh\u00e5ller samma upps\u00e4ttning filer som i andra payload-manifest. Det \u00e4r ocks\u00e5 rekommenderat att alla tag-manifest inneh\u00e5ller samma upps\u00e4ttning filer som i andra tag-manifest. #for BagLinter.java -checking_encoding_problems=Letar efter kodproblem. -checking_latest_version=Letar efter senaste versionen. -checking_manifest_problems=Letar efter problem i manifesten. -checking_metadata_problems=Letar efter problem i bag-metadatan. -skipping_check_extra_lines=Hoppar \u00f6ver kontroll efter extra rader i bagit-filer. -checking_extra_lines=Kontrollerar om [{}] inneh\u00e5ller mer \u00e4n 2 rader. -extra_lines_warning=Bagit-specifikationen anger att filen bagit.txt m\u00e5ste best\u00e5 av exakt 2 rader. Vi uppt\u00e4ckte emellertid [{}] rader, vissa implementationer ignorerar detta men det kan orsaka kompatiblitetsproblem med andra verktyg. #for BagProfileChecker.java -checking_fetch_file_allowed=Kontrollerar om fetch-filen \u00e4r till\u00e5ten f\u00f6r bagen [{}]. -checking_metadata_entry_required=Kontrollerar om [{}] kr\u00e4vs i bag-metadatan. -check_values_acceptable=Kontrollerar om samtliga v\u00e4rden angivna f\u00f6r [{}] \u00e4r godtagbara. -check_required_manifests_present=Kontrollerar om samtliga obligatoriska manifest finns. -required_tag_manifest_type_not_present=Den obligatoriska tag-manifest-typen [{}] fanns inte. -required_manifest_type_not_present=Den obligatoriska manifest-typen [{}] fanns inte. -checking_required_tag_file_exists=Kontrollerar om alla obligatoriska m\u00e4rkfiler finns. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] finns inte i listan \u00f6ver accepterad versioner {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profilen anger att metadataf\u00e4ltet [{}} \u00e4r obligatoriskt men det kunde inte hittas\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch-filen kunde inte hittas i bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profilen specificerar att accepterade v\u00e4rden f\u00f6r [{}] \u00e4r {} hittade ist\u00e4llet [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profilen specificerar att v\u00e4rdet [{}] inte \u00e4r upprepningsbart men har angetts flera g\u00e5nger\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Obligatorisk tag-fil [{}] kunde inte hittas\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag-filer \u00e4r kodade med [{}]. Vi rekommenderar att ist\u00e4llet alltid anv\u00e4nda UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bagen[{}] inneh\u00e5ller inget tag-manifest. Det \u00e4r alltid rekommenderat att inkludera ett tag-manifest. -different_case_warning=I manifestet [{}], \u00e4r s\u00f6kv\u00e4gen samma som en annan s\u00f6kv\u00e4g med undantag f\u00f6r skiftesl\u00e4ge. Detta kan skapa problem om bagen flyttas till ett filsystem som \u00e4r ok\u00e4nsligt f\u00f6r skiftesl\u00e4ge. -manifest_line_violated_spec_error=Manifestet inneh\u00e5ller raden [{}] vilket inte f\u00f6ljer konventionen -md5sum_generated_line_warning=S\u00f6kv\u00e4gen b\u00f6rjar med ett *, vilket inneb\u00e4r att det genererades med ett annat verktyg \u00e4n bagit. Det rekommenderas att ta bort * f\u00f6r att m\u00f6ta kraven i bagit-specifikationen. -cannot_access_parent_path_error=Kunde inte f\u00e5 \u00e5tkomst till \u00f6verordnad katalog [{}]. -different_normalization_in_manifest_warning=Filen [{}] har en annan normalisering \u00e4n vad som \u00e4r specificerat i manifestet. -bag_within_bag_warning=Det \u00e4r en stark rekommendation att inte lagra en bag inom en bag d\u00e5 det \u00e4r k\u00e4nt att skapa problem. -leading_dot_slash_warning=I manifestet [{}] rad [{}] \u00e4r en icke-normaliserad s\u00f6kv\u00e4g. -os_specific_files_warning=I manifestet [{}] rad [{}] inneh\u00e5ller en fil specifik f\u00f6r operativsystemet. -weak_algorithm_warning=Uppt\u00e4ckte en k\u00e4nt svag algoritm [{}]. Med de fantastiska framstegen inom h\u00e5rdvaruutveckling kostar det inte mycket att anv\u00e4nda fler bits f\u00f6r att ber\u00e4kna kontrollsumman. -non_standard_algorithm_warning=Uppt\u00e4ckte algoritm [{}] som inte ing\u00e5r som standard i Java. Detta kommer att g\u00f6ra det sv\u00e5rare att l\u00e4sa denna bag p\u00e5 vissa system. \u00d6verv\u00e4ga att \u00e4ndra det till SHA-512. -manifest_fileset_differ=Manifestet [{}] inneh\u00e5ller inte samma upps\u00e4ttning filer som manifestet [{}], det rekommenderas att de \u00e4r likalydande. #for MetadataChecker.java -missing_payload_oxum_warning=Payload-Oxum-nyckel hittades inte i bag-metadatan. Detta f\u00f6rhindrar en "snabbverifiering". #for VersionChecker.java -old_version_warning=Hittade version [{}] av bagit-specifikationen men den senaste versionen \u00e4r [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Hoppar \u00f6ver [{}] eftersom vi ignorerar dolda filer. -skipping_ignored_directory=Hoppar \u00f6ver [{}] eftersom vi ignorerar dolda kataloger. #for BagCreator.java -creating_bag=Skapar en bag med version\: [{}] i katalog\: [{}]. -creating_payload_manifests=Skapar payload-manifest(en). -creating_tag_manifests=Skapar tag-manifest(en). -calculating_payload_oxum=Ber\u00e4knar payload-oxum p\u00e5 datakatalogen [{}]. -creating_metadata_file=Skapar bag-metadatafil (bag-info.txt eller package-info.txt). #for Hasher.java -adding_checksum=L\u00e4gger till [{}] i manifest med hashv\u00e4rde [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] st\u00f6ds inte\! #for BagitTextFileReader.java -reading_version_and_encoding=L\u00e4ser [{}] f\u00f6r att fastsl\u00e5 version och teckenkodning. -bagit_version=BagIt-Versionen \u00e4r [{}]. -tag_file_encoding=Tag-File-Character-Encoding \u00e4r [{}]. -invalid_bagit_text_file_error=bagit.txt M\u00c5STE inneh\u00e5lla posterna 'Bagit-Version' OCH 'Tag-File-Character-Encoding'\! -bom_present_error=Filen inneh\u00e5ller ett byteordningsm\u00e4rke (BOM), vilket inte \u00e4r till\u00e5tet i bagit-specifikationen\! -strict_only_two_lines_error=bagit.txt f\u00e5r endast inneh\u00e5lla 2 rader. Extra rader hittade\:[{}] -strict_first_line_error=Den f\u00f6rsta raden i bagit.txt m\u00e5ste f\u00f6lja m\u00f6nstret\: [BagIt-Version\: ]. Hittade [{}]. Se specifikationen f\u00f6r mer information. -strict_second_line_error=Den andra raden i bagit.txt m\u00e5ste f\u00f6lja m\u00f6nstret\: [Tag-File-Character-Encoding\: ].Hittade [{}]. Se specifikationen f\u00f6r mer information. #for UnparsableVersionException.java -unparsable_version_error=Version m\u00e5ste vara i formatet MAJOR.MINOR men var [{}]\! #for FetchReader.java -reading_fetch_file=F\u00f6rs\u00f6ker att l\u00e4sa [{}]. -read_fetch_file_line=L\u00e4ser URL [{}] l\u00e4ngd [{}] s\u00f6kv\u00e4g [{}] fr\u00e5n fetch-file [{}]. -invalid_fetch_file_line_error=Raden [{}] \u00e4r ogiltigt f\u00f6r fetch.txt. Varje rad m\u00e5ste ta utformas som . #for KeyValueReader.java -read_key_value_line=Hittade nyckeln [{}] v\u00e4rde [{}] i filen [{}] med split regex [{}]. -found_indented_line=Hittade en indragen rad - sl\u00e5r samman det med nyckel [{}]. -malformed_key_value_line_error=Raden [{}] uppfyller inte kraven i Bagit-specifikatioenen f\u00f6r en bag-tag-file. Kanske t\u00e4nkte du identera den med ett blanksteg eller tabb? Eller s\u00e5 kanske du inte anv\u00e4nde ett kolon f\u00f6r att skilja nyckeln fr\u00e5n v\u00e4rdet? Det m\u00e5ste f\u00f6lja konventionen av {} eller om den forts\u00e4tter fr\u00e5n en annan rad identerad av blanksteg eller tabb. #for ManifestReader.java -attempting_read_manifests=F\u00f6rs\u00f6ker hitta och l\u00e4sa manifest. -found_tagmanifest=Hittade tag-manifest [{}]. -found_payload_manifest=Hittade payload-manifest [{}]. -reading_manifest=L\u00e4ser manifest [{}]. #for MetadataReader.java -attempting_read_metadata=F\u00f6rs\u00f6ker l\u00e4sa bag-metadata-fil. -found_metadata_file=Hittade metadatafil [{}]. #for TagFileReader.java -removing_asterisk=St\u00f6tte p\u00e5 s\u00f6kv\u00e4g som skapats av ett annat verktyg \u00e4n bagit. Tar bort * fr\u00e5n s\u00f6kv\u00e4g. Var god ta bort all * fr\u00e5n manifest-filerna\! -blackslash_used_as_path_separator_error=[{}] \u00e4r ogiltig p\u00e5 grund av anv\u00e4ndningen av s\u00f6kv\u00e4gseparatorn [\\]\! -malicious_path_error=[{}] f\u00f6rs\u00f6ker f\u00e5 \u00e5tkomst till en fil utanf\u00f6r bagen\! -invalid_url_format_error=URL [{}] \u00e4r ogiltig\! #for BagVerifier.java -checking_bag_is_valid=Kontrollerar om bagen med rotkatalogen [{}] validerar. -checking_payload_checksums=Kontrollerar payload-manifest(ens) kontrollsummor. -checking_tag_file_checksums=Kontrollerar tag-manifest(ens) kontrollsummor. -checksums_not_matching_error=[{}] fel intr\u00e4ffade. Minst ett av felen beror p\u00e5 att kontrollsummor inte \u00f6verensst\u00e4mmer. -checking_bag_is_complete=Kontrollerar om bagen med rotkatalog [{}] \u00e4r komplett. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=Filnamnet [{}] har en annan normalisering \u00e4n vad som finns i filsystemet\! -error_reading_normalized_file=Fel vid f\u00f6rs\u00f6k att l\u00e4sa [{}] f\u00f6r att se om n\u00e5gon fil i den katalogen matchar det normaliserade filnamnet [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Kontrollerar filen [{}] f\u00f6r att som om kontrollsumma matchar [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=Filen [{}] f\u00f6rv\u00e4ntas ha f\u00f6ljande hashv\u00e4rde\: [{}] men ber\u00e4knades till [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=Filen [{}] har en storlek av [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Kontrollerar om alla [{}] objekt i fetch.txt finns i katalogen [{}]. -fetch_item_missing_error=Fetch-objektet [{}] har inte h\u00e4mtats\! -file_should_exist_error=Filen [{}] borde finnas med det g\u00f6r den inte\! -checking_payload_directory_exists=Kontrollerar om en s\u00e4rskild payload-katalog finns (endast f\u00f6r version 0.97 och tidigare). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bagen inneh\u00e5ller inte en payload-manifest-fil\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=Filen [{}] finns i payload-katalogen men \u00e4r inte angiven i manifestet manifest-{}.txt\! -file_in_all_manifests=[{}] finns i alla manifest. -file_not_in_any_manifest_error=Filen [{}] finns i payload-katalogen men \u00e4r inte angiven i n\u00e5got manifest\! #for PayloadVerifier.java -all_files_in_manifests=L\u00e4ser alla filer som anges i manifest(en). -get_listing_in_manifest=L\u00e4ser alla filer och kontrollsummor som anges i [{}]. -check_all_files_in_manifests_exist=Kontollerar om alla filer som anges i manifest(en) finns. -missing_payload_files_error=Manifest(en) inneh\u00e5ller fil(er) {} men de finns inte\! -checking_file_in_at_least_one_manifest=Kontrollerar om alla payload-filer (filer i katalogen [{}]) \u00e4r uppr\u00e4knade i minst ett manifest. -checking_file_in_all_manifests=Kontrollerar om alla payload-filer (filer i katalogen [{}]) listas i samtliga manifest. #for QuickVerifier.java -found_payload_oxum=Hittade Payload-Oxum [{}] f\u00f6r bag [{}]. -payload_oxum_missing_error=Payload-Oxum finns inte i bagen\! -parse_size_in_bytes=Parsar [{}] f\u00f6r den totala bytestorleken av Payload Oxum. -parse_number_of_files=Parsar [{}] f\u00f6r antalet filer att hitta i payload-katalogen. -compare_payload_oxums=Medskickad payload-oxum\: [{}], Ber\u00e4knad Payload-Oxum\:[{}.{}], f\u00f6r payload-katalog [{}]. -invalid_total_size_error=Ogiltlig total storlek. F\u00f6rv\u00e4ntade [{}] men ber\u00e4knade [{}]\! -invalid_file_cound_error=Ogiltig antal filer. F\u00f6rv\u00e4ntade [{}] men hittade [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Skriver bagit.txt till [{}] -writing_line_to_file=Skriver rad [{}] till [{}] #for BagWriter.java -writing_payload_files=Skriver payload-filer. -upsert_payload_oxum=L\u00e4gger till/uppdaterar oxumchecksumma p\u00e5 inneh\u00e5ll. -writing_bagit_file=Skriver bagit.txt filen. -writing_payload_manifests=Skriver payload-manifest(en). -writing_bag_metadata=Skriver bag-metadatan. -writing_fetch_file=Skriver fetch-fil. -writing_tag_manifests=Skriver tag-manifest(en). #for FetchWriter.java -writing_fetch_file_to_path=Skriver fetch.txt till [{}]. #for ManifestWriter.java -writing_manifest_to_path=Skriver manifest till [{}]. #for MetadataWriter.java -writing_metadata_to_path=Skriver bag-metadatafil [{}] till [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Skriver payload-fil [{}] till [{}]. -skip_fetch_item_when_writing_payload=Hoppar \u00f6ver payload-fil {} eftersom den finns i fetchlistan. From cb09e28a3346b8b3f117947289f8135c993a8cac Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:48 -0400 Subject: [PATCH 182/201] New translations MessageBundle.properties (Serbian (Cyrillic)) --- .../resources/MessageBundle_sr_SP.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_sr_SP.properties b/src/main/resources/MessageBundle_sr_SP.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_sr_SP.properties +++ b/src/main/resources/MessageBundle_sr_SP.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 7bb07e1fe3700bde3253941ccbe4bcb5af705085 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:49 -0400 Subject: [PATCH 183/201] New translations MessageBundle.properties (Spanish) --- .../resources/MessageBundle_es_ES.properties | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/main/resources/MessageBundle_es_ES.properties b/src/main/resources/MessageBundle_es_ES.properties index 544014d54..9c2141c4f 100644 --- a/src/main/resources/MessageBundle_es_ES.properties +++ b/src/main/resources/MessageBundle_es_ES.properties @@ -1,4 +1,3 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java @@ -14,7 +13,6 @@ version=La versi\u00f3n es [{}] parsing_bag_info=An\u00e1lisis de la secci\u00f3n de la bag-info required_manifest_types=Requerido tipos manifestados {} acceptable_serialization_mime_types=Tipos de serializaci\u00f3n MIME aceptable son {} -required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Archivos de la etiqueta requeridos son {} acceptable_bagit_versions=Versiones aceptables de bagit son {} @@ -22,17 +20,13 @@ acceptable_bagit_versions=Versiones aceptables de bagit son {} bag_within_a_bag=Un directorio de data puede contener cualquier cosa, incluyendo otro bag. Sin embargo, ser\u00eda mejor fusionar bags juntas. different_case=El bag contiene dos archivos que difieren s\u00f3lo en caso. Esto puede causar problemas con los archivos del sistema como el usado por apple (HFS). different_normalization=El bag contiene dos archivos que difieren s\u00f3lo en la normalizaci\u00f3n. Esto puede causar que la verificaci\u00f3n falle en algunos sistemas, y confusi\u00f3n del usuario general. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=Un manifiesto lista todos los archivos de data como relativo al directorio ra\u00edz de bolsa, es in\u00fatil por lo tanto especificarlo con un punto. non_standard_algorithm=El algoritmo de suma de comprobaci\\u00f3n usado no viene de un est\\u00e1ndar con una rutina de Java. Considera usar SHA512 en su lugar. md5sum_tool_generated_manifest=El manifiesto fue creado usando utilidades de suma de comprobaci\\u00f3n tales como las contenidas en el paquete GNU Coreutils (md5sum, sh1sum, etc), colectivamente referido aqu\\u00ed como 'md5sum'. Esto crea peque\\u00f1as diferencias en los manifestos generados lo que puede causar problemas en algunas implementaciones. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Archivos creados por el sistema operativo (SO) para su propio uso. Esos son no-portables a trav\u00e9s de la versiones SO y no deber\u00edan ser incluidas en ning\u00fan manifiesto. Ejemplos son Thumb.db en Windows o .DS_Store en OS X payload_oxum_missing=Es recomendado siempre incluir la Carga-Oxum en el metadata bag debido a que permite para una "r\u00e1pida verificaci\u00f3n" del bag. tag_files_encoding=Es recomendado siempre usar UTF-8. weak_checksum_algorithm=El algoritmo de suma de verificaci\\u00f3n usado es conocido por ser d\\u00e9bil. Recomendamos usar SHA512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Comprobando problemas de codificaci\u00f3n. @@ -41,7 +35,6 @@ checking_manifest_problems=Comprobando manifiestos por problemas. checking_metadata_problems=Comprobando metadata bag por problemas. skipping_check_extra_lines=Saltar verificaci\\u00f3n de extra lineas en archivos bagit. checking_extra_lines=Comprobar si [{}] contiene m\\u00e1s de dos l\\u00edneas. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Comprobar si el archivo de recuperaci\u00f3n es permitido para bag [{}]. @@ -74,24 +67,19 @@ required_tag_file_not_found_error=Etiqueta de archivo requerida [{}] no fue enco tag_files_not_encoded_with_utf8_warning=Archivos de etiqueta se codifican con [{}]. Recomendamos siempre usar UTF-8 en su lugar. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=En manifiesto [{}], ruta [{}] es igual a otra excepto para el caso. Esto puede causar problemas si mueve el bag a un archivo de sistemas que es caso sensitivo. manifest_line_violated_spec_error=Manifiesto contiene l\u00ednea [{}] la cual no sigue la forma especificada de -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=No se pudo acceder a la carpeta principal de [{}]. different_normalization_in_manifest_warning=Archivo [{}] tiene una diferente normalizaci\\u00f3n a lo que esta especificado en el manifiesto. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=En manifiesto [{}] l\u00ednea [{}] es una ruta no normalizada. os_specific_files_warning=En manifiesto [{}] l\u00ednea [{}] contiene un archivo espec\u00edfico de SO. weak_algorithm_warning=Detectado un algoritmo d\u00e9bil conocido [{}]. Con los grandes avances en hardware hay poco problema en usar m\u00e1s bits para calcular la suma de comprobaci\u00f3n. non_standard_algorithm_warning=Algoritmo detectado [{}] el cual no es incluido por defecto en Java. Esto lo har\u00e1 m\u00e1s dif\u00edcil de leer en este bag en algunos sistemas. Considera cambiarlo a SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=La clave Payload-Oxum no fue encontrada en la metadata bag. Esto evitar\u00e1 una "verificaci\u00f3n r\u00e1pida". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Saltar [{}] ya que estamos ignorando archivos ocultos. @@ -117,8 +105,6 @@ tag_file_encoding=Etiqueta de codificaci\u00f3n de caracteres de archivo es [{}] invalid_bagit_text_file_error=\u00a1bagit.txt DEBE contener entradas\: 'Versi\u00f3n-Bagit' y 'Etiqueta de codificaci\u00f3n de caracteres de archivo'\! bom_present_error=\u00a1Archivo [{}] contiene un marca de orden byte (BOM, por sus siglas en ingl\u00e9s) lo cual no es permitido por las especificaciones de bagit\! strict_only_two_lines_error=El bagit.txt DEBE contener solamente 2 l\u00edneas. Extra l\u00edneas encontradas en\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=\u00a1La versi\u00f3n debe estar en formato MAJOR.MINOR pero estaba [{}]\! @@ -131,7 +117,6 @@ invalid_fetch_file_line_error=La l\u00ednea [{}] es inv\u00e1lida para fetch.txt #for KeyValueReader.java read_key_value_line=Encontr\u00f3 clave [{}] valor [{}] en archivo [{}] usando split regex [{}]. found_indented_line=Encontr\u00f3 una l\u00ednea marcada- fusionando con su llave [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Intentando encontrar y leer manifiestos. @@ -153,7 +138,6 @@ invalid_url_format_error=\u00a1URL [{}] es inv\u00e1lido\! checking_bag_is_valid=Comprobando si bag con directorio root [{}] es v\u00e1lido. checking_payload_checksums=Comprobando que suma de comprobaci\u00f3n de manifiesto de carga. checking_tag_file_checksums=Comprobando suma de comprobaci\u00f3n de manifiesto(s) de etiqueta. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Comprobando si el bag con directorio root [{}] est\u00e1 completo. #for CheckIfFileExistsTask.java @@ -194,9 +178,7 @@ checking_file_in_all_manifests=Comprobar si todos los archivos de carga (archivo #for QuickVerifier.java found_payload_oxum=Encontr\\u00f3 payload-oxum [{}] para bag [{}]. payload_oxum_missing_error=\u00a1Payload-Oxum no existe en bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Analizando [{}] para el n\u00famero de archivos a buscar en el directorio de carga. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Tama\u00f1o total inv\u00e1lido. \u00a1Esperado [{}] pero calculado [{}]\! invalid_file_cound_error=N\u00famero de archivo inv\u00e1lido. \u00a1Esperado [{}] pero encontrado [{}]\! @@ -206,7 +188,6 @@ writing_line_to_file=Escribiendo linea [{}] a [{}] #for BagWriter.java writing_payload_files=Escribiendo archivos de carga. -upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Escribiendo el archivo bagit.txt. writing_payload_manifests=Escribiendo manifiesto(s) de carga(s). writing_bag_metadata=Escribiendo el metadata bag. From 13f4e78a4cfdd49fe68122772827368e83359800 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:51 -0400 Subject: [PATCH 184/201] New translations MessageBundle.properties (Korean) --- .../resources/MessageBundle_ko_KR.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_ko_KR.properties b/src/main/resources/MessageBundle_ko_KR.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_ko_KR.properties +++ b/src/main/resources/MessageBundle_ko_KR.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From b8551dd268e1c7cc91d41ae7db26367d55f3c72f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:53 -0400 Subject: [PATCH 185/201] New translations MessageBundle.properties (Turkish) --- .../resources/MessageBundle_tr_TR.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_tr_TR.properties b/src/main/resources/MessageBundle_tr_TR.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_tr_TR.properties +++ b/src/main/resources/MessageBundle_tr_TR.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 4c7ea27682fd1621a7d767de4c3d12af48d178ce Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:54 -0400 Subject: [PATCH 186/201] New translations MessageBundle.properties (Ukrainian) --- .../resources/MessageBundle_uk_UA.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_uk_UA.properties b/src/main/resources/MessageBundle_uk_UA.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_uk_UA.properties +++ b/src/main/resources/MessageBundle_uk_UA.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From e7a335d030bd3c59cfd735e7f48c5b986185faed Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:56 -0400 Subject: [PATCH 187/201] New translations MessageBundle.properties (Norwegian) --- .../resources/MessageBundle_no_NO.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_no_NO.properties b/src/main/resources/MessageBundle_no_NO.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_no_NO.properties +++ b/src/main/resources/MessageBundle_no_NO.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From badd8f6005d43b6f5be53a579cc660fe2c9fe128 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:57 -0400 Subject: [PATCH 188/201] New translations MessageBundle.properties (Hungarian) --- .../resources/MessageBundle_hu_HU.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_hu_HU.properties b/src/main/resources/MessageBundle_hu_HU.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_hu_HU.properties +++ b/src/main/resources/MessageBundle_hu_HU.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 9869e2f64503f1ee1ef2a54caca2eef572ed01eb Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:14:59 -0400 Subject: [PATCH 189/201] New translations MessageBundle.properties (Japanese) --- .../resources/MessageBundle_ja_JP.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_ja_JP.properties b/src/main/resources/MessageBundle_ja_JP.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_ja_JP.properties +++ b/src/main/resources/MessageBundle_ja_JP.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 741b2652aac45abcfd3da71ba6d87d4644aa8760 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:02 -0400 Subject: [PATCH 190/201] New translations MessageBundle.properties (Italian) --- .../resources/MessageBundle_it_IT.properties | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/main/resources/MessageBundle_it_IT.properties b/src/main/resources/MessageBundle_it_IT.properties index e3704c3fd..e7c2efc67 100644 --- a/src/main/resources/MessageBundle_it_IT.properties +++ b/src/main/resources/MessageBundle_it_IT.properties @@ -1,4 +1,3 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java @@ -14,7 +13,6 @@ version=Versione \u00e8 [{}] parsing_bag_info=Analisi della sezione di borsa-Info required_manifest_types=Tipi di manifesto richiesto {} acceptable_serialization_mime_types=Tipi MIME accettabili di serializzazione sono {} -required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Contrassegnare i file richiesti sono {} acceptable_bagit_versions=Sono accettabili bagit versioni {} @@ -22,17 +20,13 @@ acceptable_bagit_versions=Sono accettabili bagit versioni {} bag_within_a_bag=Una directory di dati pu\u00f2 contenere qualsiasi cosa, compreso un altro sacchetto. Tuttavia sarebbe meglio unire le borse. different_case=La borsa contiene due file che differiscono solo nel caso. Questo pu\u00f2 causare problemi su un filesystem come quello utilizzato da apple (HFS). different_normalization=La borsa contiene due file che differiscono solo per la normalizzazione. Ci\u00f2 pu\u00f2 causare verifica mancato su alcuni sistemi e la confusione generale dell'utente. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=Un manifesto elenca tutti i file di dati come relativo alla directory radice di borsa, \u00e8 superfluo specificarlo pertanto con un punto. non_standard_algorithm=L'algoritmo di checksum utilizzato non vengono fornito con il runtime di Java. \u00c8 consigliabile utilizzare SHA-512. md5sum_tool_generated_manifest=Il manifesto \u00e8 stato creato utilizzando l'utilit\u00e0 di checksum come quelli contenuti nel pacchetto GNU Coreutils (md5sum, sha1sum, ecc.), denominati collettivamente qui come 'md5sum'. Questo crea lievi differenze nei manifesti generati che possono causare problemi in alcune implementazioni. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=I file creati dal sistema operativo (OS) per il proprio usano. Essi sono non portabile tra versioni del sistema operativo e non devono essere inclusi in qualsiasi manifesto. Thumbs. DB esempi su Windows o. DS_Store su OS X payload_oxum_missing=Si consiglia di includere sempre il Payload-Oxum nei metadati borsa poich\u00e9 permette per una verifica rapida del' della borsa. tag_files_encoding=Si consiglia di utilizzare sempre UTF-8. weak_checksum_algorithm=L'algoritmo di checksum utilizzato \u00e8 noto per essere debole. Raccomandiamo l'uso di SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Controllo dei problemi di codifica. @@ -41,7 +35,6 @@ checking_manifest_problems=Il controllo si manifesta per problemi. checking_metadata_problems=Verifica dei metadati della borsa per problemi. skipping_check_extra_lines=Ignorare il controllo di linee extra nei file Bagit. checking_extra_lines=Verifica se [{}] contiene pi\u00f9 di 2 righe. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Verifica se il file di recupero \u00e8 consentito per la borsa [{}]. @@ -74,24 +67,19 @@ required_tag_file_not_found_error=Il file di tag richiesto [{}] non \u00e8 stato tag_files_not_encoded_with_utf8_warning=I file di tag sono codificati con [{}]. Raccomandiamo sempre di utilizzare UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=Nel manifest [{}], il percorso [{}] \u00e8 uguale a un altro percorso, ad eccezione del caso. Questo pu\u00f2 causare problemi se si sposta la borsa in un file system che non fa distinzione tra maiuscole e minuscole. manifest_line_violated_spec_error=Manifest contiene la riga [{}] che non segue la forma specificata di -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Impossibile accedere alla cartella principale di [{}]. different_normalization_in_manifest_warning=Il file [{}] ha una diversa normalizzazione rispetto a quanto specificato nel manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=In manifest [{}] line [{}] \u00e8 un percorso non normalizzato. os_specific_files_warning=Nella riga manifest {{}] [{}] contiene un file specifico del sistema operativo. weak_algorithm_warning=Rilevato un algoritmo debole noto [{}]. Con i grandi progressi nell'hardware dei computer, c'\u00e8 poco da fare per usare pi\u00f9 bit per calcolare il checksum. non_standard_algorithm_warning=Algoritmo rilevato [{}] che non \u00e8 incluso di default in Java. Questo render\u00e0 pi\u00f9 difficile leggere questa borsa su alcuni sistemi. Prendi in considerazione la possibilit\u00e0 di cambiarlo in SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=La chiave Payload-Oxum non \u00e8 stata trovata nei metadati della borsa. Ci\u00f2 impedir\u00e0 una "verifica rapida". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=Salto [{}] poich\u00e9 ignoriamo i file nascosti. @@ -117,8 +105,6 @@ tag_file_encoding=La codifica dei caratteri del file tag \u00e8 [{}]. invalid_bagit_text_file_error=bagit.txt DEVE contenere voci "BagIt-Version" e "Tag-File-Character-Encoding"\! bom_present_error=Il file [{}] contiene un byte order mark (BOM) che non \u00e8 consentito dalle specifiche bagit\! strict_only_two_lines_error=Il file bagit.txt DEVE contenere solo 2 righe. Linee aggiuntive trovate\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=La versione deve essere in formato MAGGIORE.MINORE ma era [{}]\! @@ -131,7 +117,6 @@ invalid_fetch_file_line_error=La linea [{}] non \u00e8 valida per fetch.txt. Ogn #for KeyValueReader.java read_key_value_line=Valore chiave [{}] trovato [{}] nel file [{}] utilizzando la regex divisa [{}]. found_indented_line=Trovato una linea rientrata - unendola con la chiave [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Tentativo di trovare e leggere manifesti. @@ -153,7 +138,6 @@ invalid_url_format_error=L'URL [{}] non \u00e8 valido\! checking_bag_is_valid=Verifica se il bag con la directory root [{}] \u00e8 valido. checking_payload_checksums=Verifica dei checksum del manifest payload. checking_tag_file_checksums=Controllo dei checksum del tag manifest (s). -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Verifica se il bag con la directory root [{}] \u00e8 completo. #for CheckIfFileExistsTask.java @@ -194,9 +178,7 @@ checking_file_in_all_manifests=Verifica se tutti i file di payload (file nella d #for QuickVerifier.java found_payload_oxum=Trovato Payload-Oxum [{}] per la borsa [{}]. payload_oxum_missing_error=Payload-Oxum non esiste in borsa\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Analisi [{}] per il numero di file da trovare nella directory del payload. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Dimensione totale non valida. Previsto [{}] ma calcolato [{}]\! invalid_file_cound_error=Conteggio file non valido. Previsto [{}] ma trovato [{}]\! @@ -206,7 +188,6 @@ writing_line_to_file=Linea di scrittura [{}] a [{}] #for BagWriter.java writing_payload_files=Scrivere file di payload. -upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Scrivere il file bagit.txt. writing_payload_manifests=Scrittura del manifest (i) carico (i). writing_bag_metadata=Scrivere i metadati della borsa. From 426cf7890956cfc9bfd0f2b893b9083840ff9329 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:04 -0400 Subject: [PATCH 191/201] New translations MessageBundle.properties (Indonesian) --- .../resources/MessageBundle_id_ID.properties | 143 ------------------ 1 file changed, 143 deletions(-) diff --git a/src/main/resources/MessageBundle_id_ID.properties b/src/main/resources/MessageBundle_id_ID.properties index c550930c5..f73130bd3 100644 --- a/src/main/resources/MessageBundle_id_ID.properties +++ b/src/main/resources/MessageBundle_id_ID.properties @@ -1,228 +1,85 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Apakah diperbolehkan untuk mengambil berkas? [{}] serialization_allowed=Serialisasi adalah\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Berkas yang telah diambil ditemukan di dalam tas [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Folder utama tidak bisa di akses dari [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] Tidak cocok\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From d7a17e19094b033585d2bd0c47e72e00a0f1adc6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:05 -0400 Subject: [PATCH 192/201] New translations MessageBundle.properties (Hebrew) --- .../resources/MessageBundle_he_IL.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_he_IL.properties b/src/main/resources/MessageBundle_he_IL.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_he_IL.properties +++ b/src/main/resources/MessageBundle_he_IL.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 13d468e1332904c220e6b82682005f36780d2157 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:07 -0400 Subject: [PATCH 193/201] New translations MessageBundle.properties (Greek) --- .../resources/MessageBundle_el_GR.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_el_GR.properties b/src/main/resources/MessageBundle_el_GR.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_el_GR.properties +++ b/src/main/resources/MessageBundle_el_GR.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 05ffb44b264777d1ed332bb225ef0b7701095b1f Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:10 -0400 Subject: [PATCH 194/201] New translations MessageBundle.properties (German) --- .../resources/MessageBundle_de_DE.properties | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/main/resources/MessageBundle_de_DE.properties b/src/main/resources/MessageBundle_de_DE.properties index 71544ba32..178edfa51 100644 --- a/src/main/resources/MessageBundle_de_DE.properties +++ b/src/main/resources/MessageBundle_de_DE.properties @@ -1,4 +1,3 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java @@ -14,7 +13,6 @@ version=Version hat den Wert [{}] parsing_bag_info=Lese Abschnitt Bag-Info required_manifest_types=Erforderliche Manifeste {} acceptable_serialization_mime_types=Akzeptierte MIME Typen f\\u00fcr die Serialisierung sind {} -required_tagmanifest_types=Required Tag Manifest types are {} tag_files_required=Erforderliche Tag Dateien sind {} acceptable_bagit_versions=Akzeptierte bagit Versionen sind {} @@ -22,17 +20,13 @@ acceptable_bagit_versions=Akzeptierte bagit Versionen sind {} bag_within_a_bag=Das Verzeichnis data kann alles beinhalten, inklusive einer anderen bag. Es wird allerdings empfohlen, mehrere bags zusammenzufassen. different_case=Eine bag kann mehrere Dateien mit unterschiedlicher Gro\\u00df- und Kleinschreibung enthalten. Dies kann zu Problemen mit bestimmten Dateisystemen f\\u00fchren, z.B. mit dem von Apple verwendeten HFS. different_normalization=Eine bag kann mehrere Dateien mit unterschiedlicher Normalisierung enthalten. Dies kann bei einigen Dateisystemen zu Problemen bei der Verifizierung f\\u00fchren und den Benutzer verwirren. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues leading_dot_slash=Eine Manifest Datei f\\u00fchrt alle Dateien im Verzeichnis data relativ zum Wurzelverzeichnis der bag auf. Daher ist es nicht notwendig, die Dateipfade mit einem Punkt zu beginnen. non_standard_algorithm=Der verwendete Algorithmus zur Pr\\u00fcfsummenberechnung ist nicht Teil der Standard Java Laufzeitumgebung. Die Verwendung von SHA512 wird empfohlen. md5sum_tool_generated_manifest=Das Manifest wurde mit Hilfe von Werkzeugen zur Pr\\u00fcfsummenberechnung erstellt, die z.B. Teil des GNU Coreutils Paketes sind (md5sum, sha1sum, etc.), hier als 'md5sum' bezeichnet. Diese erzeugen minimale Unterschiede in den erstellten Manifesten, was zu Problemen mit einigen Implementierungen f\\u00fchren kann. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. os_specific_files=Dateien die vom Betriebssystem f\\u00fcr eigene Zwecke erzeugt wurden. Diese sind nicht zwischen verschiedenen Betriebssystemversionen portierbar und sollten nicht im Manifest aufgef\\u00fchrt werden. Beispiele hierf\\u00fcr sind Thumbs.db unter Windows oder .DS_Store unter OS X. payload_oxum_missing=Es wird empfohlen, die Eigenschaft Payload-Oxum in den Metadaten jeder bag zu hinterlegen, da diese eine schnelle \\u00dcberpr\\u00fcfung der bag erlaubt. tag_files_encoding=Es wird empfohlen UTF-8 zu verwenden. weak_checksum_algorithm=Der verwendete Algorithmus zur Pr\\u00fcfsummenerzeugung ist angreifbar. Wir empfehlen die Verwendung von SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java checking_encoding_problems=Pr\\u00fcfe auf Probleme mit der Zeichenkodierung. @@ -41,7 +35,6 @@ checking_manifest_problems=Pr\\u00fcfe Manifeste auf Probleme. checking_metadata_problems=Pr\\u00fcfe bag Metadaten auf Probleme. skipping_check_extra_lines=\\u00dcberspringe Pr\\u00fcfung auf Extrazeilen in bagit Dateien. checking_extra_lines=Pr\\u00fcfe ob [{}] mehr als 2 Zeilen enth\\u00e4lt. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java checking_fetch_file_allowed=Pr\\u00fcfe ob Fetch Dateien f\\u00fcr die bag [{}] erlaubt sind. @@ -74,24 +67,19 @@ required_tag_file_not_found_error=Die ben\\u00f6tigte Tag Datei [{}] konnte nich tag_files_not_encoded_with_utf8_warning=Tag Dateien sind [{}] kodiert. Wir empfehlen stattdessen die Verwendung von UTF-8. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. different_case_warning=Im Manifest [{}] wird der Pfad [{}] mit unterschiedlicher Gro\\u00df- und Kleinschreibung aufgef\\u00fchrt. Dies kann bei einigen Dateisystemen zu Problemen f\\u00fchren. manifest_line_violated_spec_error=Das Manifest enth\\u00e4lt die Zeile [{}], welche nicht dem geforderten Schema folgt. -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. cannot_access_parent_path_error=Zugriff auf \\u00fcbergeordnetes Verzeichnis von [{}] nicht m\\u00f6glich. different_normalization_in_manifest_warning=Die Datei [{}] ist anders normalisiert f\\u00fcr die Manifest Datei erforderlich. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. leading_dot_slash_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] einen nicht normalisierten Pfad. os_specific_files_warning=Manifest [{}] enth\\u00e4lt in Zeile [{}] eine betriebssystemspezifische Datei. weak_algorithm_warning=Pr\\u00fcfsummenalgorithmus [{}] ist als angreifbar bekannt. Dank der Fortschritte aktueller Computersysteme verursacht die Erzeugung einer st\\u00e4rkeren Pr\\u00fcfsumme nur minimale Verz\\u00f6gerung. non_standard_algorithm_warning=Der verwendete Pr\\u00fcfsummenalgorithmus [{}] ist nicht Teil der Standard Java Laufzeitumgebung. Dies erschwert das Lesen der bag auf einigen Systemen. Die Verwendung von SHA-512 wird empfohlen. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java missing_payload_oxum_warning=Die Eigenschaft Payload-Oxum wurde nicht in den bag Metadaten gefunden. Dies verhindert eine schnelle \\u00dcberpr\\u00fcfung der bag. #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor skipping_hidden_file=\\u00dcberspringe [{}] da versteckte Dateien ignoriert werden. @@ -117,8 +105,6 @@ tag_file_encoding=Zeichenkodierung in Tag Datei ist [{}]. invalid_bagit_text_file_error=bagit.txt MUSS die Eigenschaften 'BagIt-Version' UND 'Tag-File-Character-Encoding' enthalten\! bom_present_error=Datei [{}] enth\\u00e4lt eine Byte-Reihenfolge-Markierung, was laut bagit Spezifikation nicht zul\\u00e4ssig ist\! strict_only_two_lines_error=bagit.txt MUSS genau 2 Zeilen enthalten. Zus\\u00e4tzliche gefundene Zeile(n)\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java unparsable_version_error=Version muss im Format MAJOR.MINOR angegeben werden. Stattdessen wurde der Wert [{}] gefunden. @@ -131,7 +117,6 @@ invalid_fetch_file_line_error=Zeile [{}] ist kein g\\u00fcltiger fetch.txt Eintr #for KeyValueReader.java read_key_value_line=Schl\\u00fcssel [{}] mit Wert [{}] in Datei [{}] gefunden. Verwende regul\\u00e4ren Ausdruck [{}] f\\u00fcr die Aufspaltung. found_indented_line=Einger\\u00fcckte Zeile gefunden - f\\u00fcge sie mit Schl\\u00fcssel [{}] zusammen. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java attempting_read_manifests=Versuche die Manifeste zu finden und zu lesen. @@ -153,7 +138,6 @@ invalid_url_format_error=URL [{}] is ung\\u00fcltig\! checking_bag_is_valid=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] g\\u00fcltig ist. checking_payload_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Payload Manifeste(s). checking_tag_file_checksums=Pr\\u00fcfe Pr\\u00fcfsummen der/des Tag Manifeste(s). -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. checking_bag_is_complete=Pr\\u00fcfe ob die bag mit dem Wurzelverzeichnis [{}] vollst\\u00e4ndig ist. #for CheckIfFileExistsTask.java @@ -194,9 +178,7 @@ checking_file_in_all_manifests=Pr\\u00fcfe ob alle Payload Dateien (Dateien im V #for QuickVerifier.java found_payload_oxum=Eigenschaft Payload-Oxum [{}] f\\u00fcr bag [{}] gefunden. payload_oxum_missing_error=Eigenschaft Payload-Oxum nicht in den bag metadaten gefunden\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. parse_number_of_files=Suche in Wert [{}] nach der Gesamtanzahl an Dateien im Payload Verzeichnis. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. invalid_total_size_error=Ung\\u00fcltige Gesamtanzahl an Bytes. Ertwartet wurde [{}], berechnet wurde [{}]\! invalid_file_cound_error=Ung\\u00fcltige Gesamtanzahl an Dateien. Erwartet wurde [{}], berechnet wurde [{}]\! @@ -206,7 +188,6 @@ writing_line_to_file=Schreibe Zeile [{}] nach [{}] #for BagWriter.java writing_payload_files=Schreibe Payload Dateien. -upsert_payload_oxum=Upserting Payload-Oxum. writing_bagit_file=Schreibe Datei bagit.txt. writing_payload_manifests=Schreibe das/die Payload Manifest(e). writing_bag_metadata=Schreibe bag Metadaten. From a234afb01b6f846e0a6df543e04223e76a3998d4 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:12 -0400 Subject: [PATCH 195/201] New translations MessageBundle.properties (French) --- .../resources/MessageBundle_fr_FR.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_fr_FR.properties b/src/main/resources/MessageBundle_fr_FR.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_fr_FR.properties +++ b/src/main/resources/MessageBundle_fr_FR.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From c75ea4c6c9f3255246b6cb7fdc4ad544445ac0ad Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:13 -0400 Subject: [PATCH 196/201] New translations MessageBundle.properties (Finnish) --- .../resources/MessageBundle_fi_FI.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_fi_FI.properties b/src/main/resources/MessageBundle_fi_FI.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_fi_FI.properties +++ b/src/main/resources/MessageBundle_fi_FI.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 76df707a7927f99bebae491ca945f036dac8953a Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:15 -0400 Subject: [PATCH 197/201] New translations MessageBundle.properties (English) --- .../resources/MessageBundle_en_US.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_en_US.properties b/src/main/resources/MessageBundle_en_US.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_en_US.properties +++ b/src/main/resources/MessageBundle_en_US.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 97bef16f82cce6eeaf978b4f60a877d71aec9c36 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:16 -0400 Subject: [PATCH 198/201] New translations MessageBundle.properties (Dutch) --- .../resources/MessageBundle_nl_NL.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_nl_NL.properties b/src/main/resources/MessageBundle_nl_NL.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_nl_NL.properties +++ b/src/main/resources/MessageBundle_nl_NL.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From cabc9ef1c9bb8ca7d0da9717d97bb3873ec79315 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:18 -0400 Subject: [PATCH 199/201] New translations MessageBundle.properties (Danish) --- .../resources/MessageBundle_da_DK.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_da_DK.properties b/src/main/resources/MessageBundle_da_DK.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_da_DK.properties +++ b/src/main/resources/MessageBundle_da_DK.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 9c970e2fb50324f834fde352e717a2df19129bc1 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:19 -0400 Subject: [PATCH 200/201] New translations MessageBundle.properties (Czech) --- .../resources/MessageBundle_cs_CZ.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_cs_CZ.properties b/src/main/resources/MessageBundle_cs_CZ.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_cs_CZ.properties +++ b/src/main/resources/MessageBundle_cs_CZ.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list. From 7b8b062d87d96cce64a61347cf96dfbcd3c7f3fa Mon Sep 17 00:00:00 2001 From: John Scancella Date: Tue, 26 Mar 2019 10:15:21 -0400 Subject: [PATCH 201/201] New translations MessageBundle.properties (Vietnamese) --- .../resources/MessageBundle_vi_VN.properties | 144 ------------------ 1 file changed, 144 deletions(-) diff --git a/src/main/resources/MessageBundle_vi_VN.properties b/src/main/resources/MessageBundle_vi_VN.properties index 30db54fc6..e29060182 100644 --- a/src/main/resources/MessageBundle_vi_VN.properties +++ b/src/main/resources/MessageBundle_vi_VN.properties @@ -1,228 +1,84 @@ -#X-Generator: crowdin.com #default is English, United States (en_US). This is used to store all messages in bagit-java #for BagitProfileDeserializer.java -fetch_allowed=Are fetch files allowed? [{}] -serialization_allowed=Serialization is\: [{}] -parsing_bagit_profile_info_section=Parsing the BagIt-Profile-Info section -identifier=Identifier is [{}] -source_organization=Source-Organization is [{}] -contact_name=Contact-Name is [{}] -contact_email=Contact-Email is [{}] -external_description=External-Description is [{}] -version=Version is [{}] -parsing_bag_info=Parsing the Bag-Info section -required_manifest_types=Required manifest types {} -acceptable_serialization_mime_types=Acceptable serialization MIME types are {} -required_tagmanifest_types=Required Tag Manifest types are {} -tag_files_required=Tag files required are {} -acceptable_bagit_versions=Acceptable bagit versions are {} #for BagitWarning.java -bag_within_a_bag=A data directory can contain anything, including another bag. However it would be better to merge the bags together. -different_case=The bag contains two files that differ only in case. This can cause problems on a filesystem like the one used by apple (HFS). -different_normalization=The bag contains two files that differ only in the normalization. This can cause verification to fail on some systems, and general user confusion. -extra_lines_in_bagit_files=The Bagit specification says it must only contain 2 lines. However, some implementations have decided to ignore this which may cause compatibility issues -leading_dot_slash=A manifest lists all data files as relative to the bag root directory, it is superfluous to therefore specify it with a dot. -non_standard_algorithm=The checksum algorithm used does not come standard with the Java runtime. Consider using SHA-512 instead. -md5sum_tool_generated_manifest=The manifest was created using checksum utilities such as those contained in the GNU Coreutils package (md5sum, sha1sum, etc.), collectively referred to here as 'md5sum'. This creates slight differences in generated manifests that can cause problems in some implementations. -missing_tag_manifest=The tag manifest guards against a truncated payload manifest as well as other potential problems and is always recommended that it be included. -old_bagit_version=The Bagit specification version is not the newest. Consider converting to the latest version. -os_specific_files=Files created by the operating system (OS) for its own use. They are non-portable across OS versions and should not be included in any manifest. Examples Thumbs.db on Windows or .DS_Store on OS X -payload_oxum_missing=It is recommended to always include the Payload-Oxum in the bag metadata since it allows for a 'quick verification' of the bag. -tag_files_encoding=It is recommended to always use UTF-8. -weak_checksum_algorithm=The checksum algorithm used is known to be weak. We recommend using SHA-512. -manifest_file_sets_differ_between_algorithms=As of bagit version 1.0 it is recommended that all payload manifests contain the same set of files as other payload manifests. It is also recommended that all tag manifests contain the same set of files as other tag manifests. #for BagLinter.java -checking_encoding_problems=Checking encoding problems. -checking_latest_version=Checking for latest version. -checking_manifest_problems=Checking manifests for problems. -checking_metadata_problems=Checking bag metadata for problems. -skipping_check_extra_lines=Skipping check for extra lines in bagit files. -checking_extra_lines=Checking if [{}] contains more than 2 lines. -extra_lines_warning=The Bagit specification states that the bagit.txt file must contain exactly 2 lines. However we found [{}] lines, some implementations will ignore this but may cause incompatibility issues with other tools. #for BagProfileChecker.java -checking_fetch_file_allowed=Checking if the fetch file is allowed for bag [{}]. -checking_metadata_entry_required=Checking if [{}] is required in the bag metadata. -check_values_acceptable=Checking if all the values listed for [{}] are acceptable. -check_required_manifests_present=Checking if all the required manifests are present. -required_tag_manifest_type_not_present=Required tag manifest type [{}] was not present. -required_manifest_type_not_present=Required manifest type [{}] was not present. -checking_required_tag_file_exists=Checking if all the required tag files exist. #for BagitVersionIsNotAcceptableException.java -bagit_version_not_acceptable_error=Version [{}] is not in the acceptable list of {}. #for RequiredMetadataFieldNotPresentException.java -required_metadata_field_not_present_error=Profile specifies metadata field [{}] is required but was not found\! #for FetchFileNotAllowedException.java -fetch_file_not_allowed_error=Fetch File was found in bag [{}]\! #for MetadataValueIsNotAcceptableException.java -metadata_value_not_acceptable_error=Profile specifies that acceptable values for [{}] are {} but found [{}]\! #for MetadataValueIsNotRepeatableException.java -metadata_value_not_repeatable_error=Profile specifies that value [{}] is not repeatable, but was listed multiple times\! #for RequiredTagFileNotPresentException.java -required_tag_file_not_found_error=Required tag file [{}] was not found\! #for EncodingChecker.java -tag_files_not_encoded_with_utf8_warning=Tag files are encoded with [{}]. We recommend always using UTF-8 instead. #For ManifestChecker.java -bag_missing_tag_manifest_warning=Bag [{}] does not contain a tag manifest. It is recommended to always include a tag manifest. -different_case_warning=In manifest [{}], path [{}] is the same as another path except for the case. This can cause problems if moving the bag to a filesystem that is case insensitive. -manifest_line_violated_spec_error=Manifest contains line [{}] which does not follow the specified form of -md5sum_generated_line_warning=Path [{}] starts with a *, which means it was generated with a non-bagit tool. It is recommended to remove the * in order to conform to the Bagit specification. -cannot_access_parent_path_error=Could not access parent folder of [{}]. -different_normalization_in_manifest_warning=File [{}] has a different normalization than what is specified in the manifest. -bag_within_bag_warning=We strongly recommend not storing a bag within a bag as it is known to cause problems. -leading_dot_slash_warning=In manifest [{}] line [{}] is a non-normalized path. -os_specific_files_warning=In manifest [{}] line [{}] contains a OS specific file. -weak_algorithm_warning=Detected a known weak algorithm [{}]. With the great advances in computer hardware there is little penalty to using more bits to calculate the checksum. -non_standard_algorithm_warning=Detected algorithm [{}] which is not included by default in Java. This will make it more difficult to read this bag on some systems. Consider changing it to SHA-512. -manifest_fileset_differ=Manifest [{}] does not contain the same set of files as manifest [{}], it is recommended that they be the same. #for MetadataChecker.java -missing_payload_oxum_warning=The Payload-Oxum key was not found in the bag metadata. This will prevent a "quick verify". #for VersionChecker.java -old_version_warning=Found version [{}] of the Bagit specification but the latest version is [{}]. #for AbstractCreateManifestVistor -skipping_hidden_file=Skipping [{}] since we are ignoring hidden files. -skipping_ignored_directory=Skipping [{}] since we are ignoring hidden directories. #for BagCreator.java -creating_bag=Creating a bag with version\: [{}] in directory\: [{}]. -creating_payload_manifests=Creating payload manifest(s). -creating_tag_manifests=Creating tag manifest(s). -calculating_payload_oxum=Calculating the payload oxum of the data directory [{}]. -creating_metadata_file=Creating the bag metadata file (bag-info.txt or package-info.txt). #for Hasher.java -adding_checksum=Adding [{}] to manifest with hash [{}]. #for UnsupportedAlgorithmException.java -algorithm_not_supported_error=[{}] is not supported\! #for BagitTextFileReader.java -reading_version_and_encoding=Reading [{}] for version and encoding. -bagit_version=BagIt-Version is [{}]. -tag_file_encoding=Tag-File-Character-Encoding is [{}]. -invalid_bagit_text_file_error=bagit.txt MUST contain 'BagIt-Version' AND 'Tag-File-Character-Encoding' entries\! -bom_present_error=File [{}] contains a byte order mark (BOM) which is not allowed by the bagit specification\! -strict_only_two_lines_error=The bagit.txt MUST only contain 2 lines. Extra lines found\: [{}] -strict_first_line_error=The first line of the bagit.txt must follow the pattern of\: [BagIt-Version\: ]. But found instead [{}]. See the specification for more information. -strict_second_line_error=The second line of the bagit.txt must follow the pattern of\: [Tag-File-Character-Encoding\: ]. But found instead [{}]. See the specification for more information. #for UnparsableVersionException.java -unparsable_version_error=Version must be in format MAJOR.MINOR but was [{}]\! #for FetchReader.java -reading_fetch_file=Attempting to read [{}]. -read_fetch_file_line=Read URL [{}] length [{}] path [{}] from fetch file [{}]. -invalid_fetch_file_line_error=The line [{}] is invalid for fetch.txt. Each line must take the form of . #for KeyValueReader.java -read_key_value_line=Found key [{}] value [{}] in file [{}] using split regex [{}]. -found_indented_line=Found an indented line - merging it with key [{}]. -malformed_key_value_line_error=Line [{}] does not meet the Bagit specification for a bag tag file. Perhaps you meant to indent it by a space or a tab? Or perhaps you didn't use a colon to separate the key from the value? It must follow the form of {} or if continuing from another line must be indented by a space or a tab. #for ManifestReader.java -attempting_read_manifests=Attempting to find and read manifests. -found_tagmanifest=Found tag manifest [{}]. -found_payload_manifest=Found payload manifest [{}]. -reading_manifest=Reading manifest [{}]. #for MetadataReader.java -attempting_read_metadata=Attempting to read bag metadata file. -found_metadata_file=Found metadata file [{}]. #for TagFileReader.java -removing_asterisk=Encountered path that was created by non-bagit tool. Removing * from path. Please remove all * from manifest files\! -blackslash_used_as_path_separator_error=[{}] is invalid due to the use of the path separator [\\]\! -malicious_path_error=[{}] is trying to be malicious and access a file outside the bag\! -invalid_url_format_error=URL [{}] is invalid\! #for BagVerifier.java -checking_bag_is_valid=Checking if the bag with root directory [{}] is valid. -checking_payload_checksums=Checking payload manifest(s) checksums. -checking_tag_file_checksums=Checking tag manifest(s) checksums. -checksums_not_matching_error=[{}] errors occurred. At least one of the errors is due to hashes not matching. -checking_bag_is_complete=Checking if the bag with root directory [{}] is complete. #for CheckIfFileExistsTask.java -different_normalization_on_filesystem_warning=File name [{}] has a different normalization than what is contained on the filesystem\! -error_reading_normalized_file=Error while trying to read [{}] to see if any files in that directory match the normalized filename of [{}]\! #for CheckManifestHashesTask.java -checking_checksums=Checking file [{}] to see if checksum matches [{}]. #for CorruptChecksumException.java -corrupt_checksum_error=File [{}] is suppose to have a [{}] hash of [{}] but was computed [{}]. #for FileCoundAndTotalSizeVisitor.java -file_size_in_bytes=File [{}] has a size of [{}] bytes. #for MandatoryVerifier.java -checking_fetch_items_exist=Checking if all [{}] items in fetch.txt exist in the [{}] directory. -fetch_item_missing_error=Fetch item [{}] has not been fetched\! -file_should_exist_error=File [{}] should exist but it doesn't\! -checking_payload_directory_exists=Checking if special payload directory exists (only for version 0.97 and earlier). #for MissingPayloadManifestException.java -missing_payload_manifest_error=Bag does not contain a payload manifest file\! #for PayloadFileExistsInAllManifestsVistor.java -file_not_in_manifest_error=File [{}] is in the payload directory but isn't listed in manifest manifest-{}.txt\! -file_in_all_manifests=[{}] is in all manifests. -file_not_in_any_manifest_error=File [{}] is in the payload directory but isn't listed in any manifest\! #for PayloadVerifier.java -all_files_in_manifests=Getting all files listed in the manifest(s). -get_listing_in_manifest=Getting files and checksums listed in [{}]. -check_all_files_in_manifests_exist=Checking if all files listed in the manifest(s) exist. -missing_payload_files_error=Manifest(s) contains file(s) {} but they don't exist\! -checking_file_in_at_least_one_manifest=Checking if all payload files (files in [{}] directory) are listed in at least one manifest. -checking_file_in_all_manifests=Checking if all payload files (files in [{}] directory) are listed in all manifests. #for QuickVerifier.java -found_payload_oxum=Found Payload-Oxum [{}] for bag [{}]. -payload_oxum_missing_error=Payload-Oxum does not exist in bag\! -parse_size_in_bytes=Parsing [{}] for the total byte size of the Payload Oxum. -parse_number_of_files=Parsing [{}] for the number of files to find in the payload directory. -compare_payload_oxums=Supplied payload-oxum\: [{}], Calculated Payload-Oxum\: [{}.{}], for payload directory [{}]. -invalid_total_size_error=Invalid total size. Expected [{}] but calculated [{}]\! -invalid_file_cound_error=Invalid file count. Expected [{}] but found [{}]\! #for BagitFileWriter.java -write_bagit_file_to_path=Writing bagit.txt file to [{}] -writing_line_to_file=Writing line [{}] to [{}] #for BagWriter.java -writing_payload_files=Writing payload files. -upsert_payload_oxum=Upserting Payload-Oxum. -writing_bagit_file=Writing the bagit.txt file. -writing_payload_manifests=Writing the payload manifest(s). -writing_bag_metadata=Writing the bag metadata. -writing_fetch_file=Writing the fetch file. -writing_tag_manifests=Writing the tag manifest(s). #for FetchWriter.java -writing_fetch_file_to_path=Writing fetch.txt to [{}]. #for ManifestWriter.java -writing_manifest_to_path=Writing manifest to [{}]. #for MetadataWriter.java -writing_metadata_to_path=Writing bag metadata file [{}] to [{}]. #for PayloadWriter.java -writing_payload_file_to_path=Writing payload file [{}] to [{}]. -skip_fetch_item_when_writing_payload=Skipping payload file {} because it is in the fetch list.