Changeset 13482
- Timestamp:
- 05/18/2023 10:55:35 AM (22 months ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-admin.php
r13449 r13482 235 235 'title' => __( 'Group Actions', 'buddypress' ), 236 236 'content' => 237 '<p>' . __( 'Clicking "Vi sit" will take you to the group’s public page. Use this link to see what the group looks like on the front end of your site.', 'buddypress' ) . '</p>' .237 '<p>' . __( 'Clicking "View" will take you to the group’s public page. Use this link to see what the group looks like on the front end of your site.', 'buddypress' ) . '</p>' . 238 238 '<p>' . __( 'Clicking "Edit" will take you to a Dashboard panel where you can manage various details about the group, such as its name and description, its members, and other settings.', 'buddypress' ) . '</p>' . 239 239 '<p>' . __( 'If you click "Delete" under a specific group, or select a number of groups and then choose Delete from the Bulk Actions menu, you will be led to a page where you’ll be asked to confirm the permanent deletion of the group(s).', 'buddypress' ) . '</p>', … … 687 687 <?php bp_groups_directory_url(); ?> <input type="text" id="bp-groups-slug" name="bp-groups-slug" value="<?php bp_group_slug( $group ); ?>" autocomplete="off"> / 688 688 </span> 689 <a href="<?php bp_group_url( $group ) ?>" class="button button-small" id="bp-groups-visit-group"><?php esc_html_e( 'Vi sitGroup', 'buddypress' ) ?></a>689 <a href="<?php bp_group_url( $group ) ?>" class="button button-small" id="bp-groups-visit-group"><?php esc_html_e( 'View Group', 'buddypress' ) ?></a> 690 690 </div> 691 691 -
trunk/src/bp-groups/bp-groups-blocks.php
r13437 r13482 140 140 </div>', 141 141 esc_url( $group_link ), 142 esc_html__( 'Vi sitGroup', 'buddypress' )142 esc_html__( 'View Group', 'buddypress' ) 143 143 ); 144 144 } -
trunk/src/bp-groups/classes/class-bp-groups-list-table.php
r13437 r13482 608 608 $actions['delete'] = sprintf( '<a href="%s">%s</a>', esc_url( $delete_url ), __( 'Delete', 'buddypress' ) ); 609 609 610 // Vi sit.610 // View. 611 611 $actions['view'] = sprintf( '<a href="%s">%s</a>', esc_url( $view_url ), __( 'View', 'buddypress' ) ); 612 612 -
trunk/src/bp-groups/screens/user/invites.php
r13443 r13482 29 29 30 30 /* translators: %s: group link */ 31 bp_core_add_message( sprintf( __( 'Group invite accepted. Vi sit%s.', 'buddypress' ), bp_get_group_link( $group ) ) );31 bp_core_add_message( sprintf( __( 'Group invite accepted. View %s.', 'buddypress' ), bp_get_group_link( $group ) ) ); 32 32 33 33 if ( bp_is_active( 'activity' ) ) { -
trunk/src/bp-templates/bp-legacy/buddypress/activity/type-parts/content-created-group.php
r13183 r13482 6 6 * 7 7 * @since 10.0.0 8 * @version 1 0.0.08 * @version 12.0.0 9 9 */ 10 10 ?> … … 33 33 34 34 <div class="bp-profile-button"> 35 <a href="<?php bp_activity_generated_content_part( 'group_url' ); ?>" class="button large primary button-primary" role="button"><?php esc_html_e( 'Vi sitgroup', 'buddypress'); ?></a>35 <a href="<?php bp_activity_generated_content_part( 'group_url' ); ?>" class="button large primary button-primary" role="button"><?php esc_html_e( 'View group', 'buddypress'); ?></a> 36 36 </div> 37 37 </div> -
trunk/src/bp-templates/bp-nouveau/buddypress/activity/type-parts/content-created-group.php
r13182 r13482 6 6 * 7 7 * @since 10.0.0 8 * @version 1 0.0.08 * @version 12.0.0 9 9 */ 10 10 ?> … … 33 33 34 34 <div class="bp-profile-button"> 35 <a href="<?php bp_activity_generated_content_part( 'group_url' ); ?>" class="button large primary button-primary" role="button"><?php esc_html_e( 'Vi sitgroup', 'buddypress'); ?></a>35 <a href="<?php bp_activity_generated_content_part( 'group_url' ); ?>" class="button large primary button-primary" role="button"><?php esc_html_e( 'View group', 'buddypress'); ?></a> 36 36 </div> 37 37 </div>
Note: See TracChangeset
for help on using the changeset viewer.