bp_attachments_get_plupload_l10n()
Builds localization strings for the BuddyPress Uploader scripts.
Description
Return
(array) Plupload default localization strings.
Source
File: bp-core/bp-core-attachments.php
function bp_attachments_get_plupload_l10n() {
// Localization strings.
return apply_filters( 'bp_attachments_get_plupload_l10n', array(
'queue_limit_exceeded' => __( 'You have attempted to queue too many files.', 'buddyboss' ),
'file_exceeds_size_limit' => __( '%s exceeds the maximum upload size for this site.', 'buddyboss' ),
'zero_byte_file' => __( 'This file is empty. Please try another.', 'buddyboss' ),
'invalid_filetype' => __( 'This file type is not allowed. Please try another.', 'buddyboss' ),
'not_an_image' => __( 'This file is not an image. Please try another.', 'buddyboss' ),
'image_memory_exceeded' => __( 'Memory exceeded. Please try another smaller file.', 'buddyboss' ),
'image_dimensions_exceeded' => __( 'This is larger than the maximum size. Please try another.', 'buddyboss' ),
'default_error' => __( 'An error occurred. Please try again later.', 'buddyboss' ),
'missing_upload_url' => __( 'There was a configuration error. Please contact the server administrator.', 'buddyboss' ),
'upload_limit_exceeded' => __( 'You may only upload 1 file.', 'buddyboss' ),
'http_error' => __( 'HTTP error.', 'buddyboss' ),
'upload_failed' => __( 'Upload failed.', 'buddyboss' ),
'big_upload_failed' => __( 'Please try uploading this file with the %1$sbrowser uploader%2$s.', 'buddyboss' ),
'big_upload_queued' => __( '%s exceeds the maximum upload size for the multi-file uploader when used in your browser.', 'buddyboss' ),
'io_error' => __( 'IO error.', 'buddyboss' ),
'security_error' => __( 'Security error.', 'buddyboss' ),
'file_cancelled' => __( 'File canceled.', 'buddyboss' ),
'upload_stopped' => __( 'Upload stopped.', 'buddyboss' ),
'dismiss' => __( 'Dismiss', 'buddyboss' ),
'crunching' => __( 'Crunching…', 'buddyboss' ),
'unique_file_warning' => __( 'Make sure to upload a unique file', 'buddyboss' ),
'error_uploading' => __( '"%s" has failed to upload.', 'buddyboss' ),
'has_avatar_warning' => __( 'If you\'d like to delete the existing profile photo but not upload a new one, please use the delete tab.', 'buddyboss' )
) );
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 2.3.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.