Skip to:
Content

BuddyPress.org

Changeset 12036


Ignore:
Timestamp:
05/02/2018 03:01:16 AM (8 years ago)
Author:
mercime
Message:

Fix some typos in BP Nouveau.

Location:
trunk/src/bp-templates/bp-nouveau
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php

    r11951 r12036  
    3434<script type="text/html" id="tmpl-bp-messages-editor">
    3535        <?php
    36         // Temporarly filter the editor
     36        // Temporarily filter the editor
    3737        add_filter( 'mce_buttons', 'bp_nouveau_mce_buttons', 10, 1 );
    3838
     
    5151                )
    5252        );
    53         // Temporarly filter the editor
     53        // Temporarily filter the editor
    5454        remove_filter( 'mce_buttons', 'bp_nouveau_mce_buttons', 10, 1 );
    5555        ?>
  • trunk/src/bp-templates/bp-nouveau/buddypress/common/notices/template-notices.php

    r11899 r12036  
    11<?php
    22/**
    3  * BP Nouveau temptate notices template.
     3 * BP Nouveau template notices template.
    44 *
    55 * @since 3.0.0
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp-mixins.scss

    r11974 r12036  
    143143// These two mixins add hide/show properties for clicked/focussed elements.
    144144// They may be added to existing rulesets or added to a class selector
    145 // rulesets to use hardoced to template markup.
     145// rulesets to use hardcoded to template markup.
    146146
    147147// Convenience helper to add hide properties to rulesets
     
    163163
    164164// Box model - defaults to value 'border-box'
    165 // Vendor prefixes are  pretty much redundent for this property,
     165// Vendor prefixes are pretty much redundant for this property,
    166166// consider removing
    167167
     
    250250// Flexbox Mixins
    251251
    252 // Set display to box flex & set the direcction and wrapping behavour
     252// Set display to box flex & set the direction and wrapping behavior
    253253// shorthand for flex-direction & flex wrap - default ( row wrap )
    254254
     
    303303// it won't work in all browsers, older browser will simply
    304304// fall back to non centered or using older techniques.
    305 // N.B It would be prefereable to remove the older property syntax
     305// N.B It would be preferable to remove the older property syntax
    306306
    307307@mixin center-vert() {
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp-variables.scss

    r11917 r12036  
    77// central position for all instances of the property/value.
    88
    9 // Spacing values - used primarilly for main elements to allow us
     9// Spacing values - used primarily for main elements to allow us
    1010// to adjust values in a grouped manner.
    1111
     
    5454// Message colors
    5555
    56 // used on text == red & input validation psuedo classes
     56// used on text == red & input validation pseudo classes
    5757$warn:           #b71717 !default;
    5858$valid:          #91cc2c !default;
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_generic_and_typography.scss

    r11744 r12036  
    114114
    115115// Ensure the .bp-wrap element always contains it's children,
    116 // this may cause issues but gropus single requires it.
     116// this may cause issues but groups single requires it.
    117117
    118118/* Ensure .bp-wrap encloses it's children */
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_info_messages.scss

    r12012 r12036  
    4545        } // close .bp-messages
    4646
    47         // user message screens handled seperately due to backbone templates
     47        // user message screens handled separately due to backbone templates
    4848        // & looped messages
    4949        .bp-messages.bp-user-messages-feedback {
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_navigation.scss

    r11974 r12036  
    354354        } // bp-navs
    355355
    356         // Create steps current postion tabs highlight
     356        // Create steps current position tabs highlight
    357357        .bp-navs.group-create-links {
    358358
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_search.scss

    r11906 r12036  
    9999} // close .buddypress-wrap
    100100
    101 // If js disabled ensure we show the submit ovveriding earlier rule
     101// If js disabled ensure we show the submit overriding earlier rule
    102102// @todo the whole show/hide could be wrapped in a :not(.no-js)
    103103.budypress.no-js {
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_tables.scss

    r11686 r12036  
    8383        table.notifications {
    8484
    85                 // Increase the cell padding to give better seperation of lines
     85                // Increase the cell padding to give better separation of lines
    8686                // when some text lines wrap
    8787
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_widgets.scss

    r11994 r12036  
    8383
    8484// Are we in a main site sidebar?
    85 // while hard to tell width asume that
     85// while hard to tell width assume that
    8686// at large width it's narrow &
    8787// adjust the li widths & margins to %
  • trunk/src/bp-templates/bp-nouveau/js/buddypress-nouveau.js

    r12014 r12036  
    192192                         * How the content should be injected in the selector
    193193                         *
    194                          * possible methodes are
     194                         * possible methods are
    195195                         * - reset: the selector will be reset with the content
    196196                         * - append:  the content will be added after selector's content
     
    406406                        $( '[data-bp-disable-input]' ).on( 'change', this.toggleDisabledInput );
    407407
    408                         // HeartBeat Send and Recieve
     408                        // HeartBeat Send and Receive
    409409                        $( document ).on( 'heartbeat-send.buddypress', this.heartbeatSend );
    410410                        $( document ).on( 'heartbeat-tick.buddypress', this.heartbeatTick );
     
    648648                        }
    649649
    650                         // Unforunately unlike groups
     650                        // Unfortunately unlike groups
    651651                        // Friends actions does not match the wpnonce
    652652                        var friends_actions_map = {
Note: See TracChangeset for help on using the changeset viewer.