bp_nouveau_groups_messages_localize_scripts( array $params = array() )

Localize the strings needed for the Group’s Message UI.

Description

Parameters

$params

(Optional) Associative array containing the JS Strings needed by scripts

Default value: array()

Return

(array) The same array with specific strings for the Group's Message UI if needed.

Source

File: bp-templates/bp-nouveau/includes/groups/functions.php

1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
function bp_nouveau_groups_messages_localize_scripts( $params = array() ) {
 
    if ( false === bp_disable_group_messages() ) {
        return $params;
    }
 
    $params['group_messages'] = array(
        'page'                  => 1,
        'type_message'          => __( 'Type message', 'buddyboss' ),
        'group_no_member'       => __( 'There are no other members in this group. Please add some members before sending a message.', 'buddyboss' ),
        'loading'               => __( 'Loading members. Please wait.', 'buddyboss' ),
        'remove_recipient'      => __( 'Remove Recipient', 'buddyboss' ),
        'add_recipient'         => __( 'Add Recipient', 'buddyboss' ),
        'no_content'            => __( 'Please add some content to your message.', 'buddyboss' ),
        'no_recipient'          => __( 'Please add at least one recipient.', 'buddyboss' ),
        'select_default_text'   => __( 'All Group Members', 'buddyboss' ),
        'select_default_value'  => __( 'all', 'buddyboss' ),
        'no_member'             => __( 'No members were found. Try another filter.', 'buddyboss' ),
        'invites_form_all'      => __( 'This message will be delivered to all members of this group.', 'buddyboss' ),
        'invites_form_separate' => __( 'Select group members to message by clicking the + button next to each member. Once you\'ve made a selection, click "Send Message" to create a new group message.', 'buddyboss' ),
        'invites_form_reset'    => __( 'Group invitations cleared. Please use one of the available tabs to select members to invite.', 'buddyboss' ),
        'invites_sending'       => __( 'Sending group invitations. Please wait.', 'buddyboss' ),
        'removeUserInvite'      => __( 'Cancel invitation %s', 'buddyboss' ),
        'feedback_select_all'   => __( 'This message will be delivered to all members of this group.', 'buddyboss' ),
        'feedback_individual'   => __( 'Select individual recipients by clicking the + button next to each member.', 'buddyboss' ),
        'group_id'              => ! bp_get_current_group_id() ? bp_get_new_group_id() : bp_get_current_group_id(),
        'is_group_create'       => bp_is_group_create(),
        'nonces'                => array(
            'unmessage'              => wp_create_nonce( 'groups_message_unmessage_user' ),
            'send_messages'          => wp_create_nonce( 'groups_send_messages' ),
            'retrieve_group_members' => wp_create_nonce( 'retrieve_group_members' ),
            'send_messages_users'    => wp_create_nonce( 'send_messages_users' ),
        ),
    );
 
    return $params;
}

Changelog

Changelog
Version Description
BuddyBoss 1.2.9 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.