Plugin Directory

Changeset 854592


Ignore:
Timestamp:
02/10/2014 07:55:38 AM (12 years ago)
Author:
faishal
Message:

Version 3.6 released with API support

Location:
buddypress-media/trunk
Files:
6 added
19 edited

Legend:

Unmodified
Added
Removed
  • buddypress-media/trunk/app/assets/js/rtMedia.backbone.js

    r847076 r854592  
    796796                    //$("#div-attache-rtmedia").hide();
    797797                    apply_rtMagnificPopup(jQuery('.rtmedia-list-media, .rtmedia-activity-container ul.rtmedia-list, #bp-media-list,.widget-item-listing,.bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content'));
     798            rtMediaHook.call('rtmedia_js_after_activity_added', []);
    798799                }
    799800                $("#whats-new-post-in").removeAttr('disabled');
  • buddypress-media/trunk/app/helper/RTMediaModel.php

    r847076 r854592  
    7878                    $tmpVal = isset ( $colvalue[ 'value' ] ) ? $colvalue[ 'value' ] : $colvalue;
    7979                    $col_val_comapare = ( is_array( $tmpVal ) ) ? '(\'' . implode ( "','", $tmpVal ) . '\')' : '(\''.$tmpVal.'\')';
    80 
     80                    if($compare == 'IS NOT'){
     81                        $col_val_comapare = !empty($colvalue[ 'value' ]) ? $colvalue[ 'value' ] : $col_val_comapare;
     82                    }
    8183                    $where .= " AND {$this->table_name}.{$colname} {$compare} {$col_val_comapare}";
    8284                }
     
    117119            $sql .= $limit;
    118120        }
    119 
    120121        if( ! $count_flag )
    121122            return $wpdb->get_results ( $sql );
  • buddypress-media/trunk/app/main/RTMedia.php

    r847076 r854592  
    357357                60 => __('<strong>Private</strong> - Visible only to the user', 'rtmedia'),
    358358                40 => __('<strong>Friends</strong> - Visible to user\'s friends', 'rtmedia'),
    359                 20 => __('<strong>Users</strong> - Visible to registered users', 'rtmedia'),
     359                20 => __('<strong>Logged in Users</strong> - Visible to registered users', 'rtmedia'),
    360360                0 => __('<strong>Public</strong> - Visible to the world', 'rtmedia')
    361361            )
     
    686686        global $rtmedia_ajax;
    687687        $rtmedia_ajax = new RTMediaAJAX();
     688        //API Classes
     689        global $rtmediajsonapi;
     690        $rtmediajsonapi = new RTMediaJsonApi();
    688691
    689692        do_action('bp_media_init'); // legacy For plugin using this actions
  • buddypress-media/trunk/app/main/controllers/activity/RTMediaActivity.php

    r847076 r854592  
    5757            $media_details = array_slice( $media_details, 0, $limitActivityFeed, true);
    5858    $rtmedia_activity_ul_class = apply_filters("rtmedia_activity_ul_class","large-block-grid-3");
    59         $html .= '<ul class="rtmedia-list '.$rtmedia_activity_ul_class.'">';
     59       $li_content = "";
     60       $count = 0;
    6061        foreach ( $media_details as $media ) {
    61             $html .= '<li class="rtmedia-list-item media-type-' . $media->media_type . '">';
     62            $li_content .= '<li class="rtmedia-list-item media-type-' . $media->media_type . '">';
    6263            if ( $media->media_type == 'photo' )
    63                 $html .= '<a href ="' . get_rtmedia_permalink ( $media->id ) . '">';
    64             $html .= '<div class="rtmedia-item-thumbnail">';
     64                $li_content .= '<a href ="' . get_rtmedia_permalink ( $media->id ) . '">';
     65            $li_content .= '<div class="rtmedia-item-thumbnail">';
    6566
    66             $html .= $this->media ( $media );
     67            $li_content .= $this->media ( $media );
    6768
    68             $html .= '</div>';
     69            $li_content .= '</div>';
    6970
    70             $html .= '<div class="rtmedia-item-title">';
    71             $html .= '<h4 title="' . $media->media_title . '">';
     71            $li_content .= '<div class="rtmedia-item-title">';
     72            $li_content .= '<h4 title="' . $media->media_title . '">';
    7273            if ( $media->media_type != 'photo' )
    73                 $html .= '<a href="' . get_rtmedia_permalink ( $media->id ) . '">';
     74                $li_content .= '<a href="' . get_rtmedia_permalink ( $media->id ) . '">';
    7475
    75             $html .= $media->media_title;
     76            $li_content .= $media->media_title;
    7677            if ( $media->media_type != 'photo' )
    77                 $html .= '</a>';
    78             $html .= '</h4>';
    79             $html .= '</div>';
     78                $li_content .= '</a>';
     79            $li_content .= '</h4>';
     80            $li_content .= '</div>';
    8081            if ( $media->media_type == 'photo' )
    81                 $html .= '</a>';
     82                $li_content .= '</a>';
    8283
    83             $html .= '<div class="rtmedia-item-actions">';
    84             $html .= $this->actions ();
    85             $html .= '</div>';
    86             $html .= '</li>';
     84            $li_content .= '<div class="rtmedia-item-actions">';
     85            $li_content .= $this->actions ();
     86            $li_content .= '</div>';
     87            $li_content .= '</li>';
     88            $count++;
    8789        }
     90        $html .= '<ul class="rtmedia-list '.$rtmedia_activity_ul_class.' rtmedia-activity-media-length-'.$count.'">';
     91        $html .= $li_content;
    8892        $html .= '</ul>';
    8993        $html .= '</div>';
  • buddypress-media/trunk/app/main/controllers/media/RTMediaAlbum.php

    r830174 r854592  
    127127    function get_current_author () {
    128128
    129         return get_current_user_id ();
     129        return apply_filters('rtmedia_current_user', get_current_user_id());
    130130    }
    131131
  • buddypress-media/trunk/app/main/controllers/privacy/RTMediaPrivacy.php

    r824736 r854592  
    2828        }
    2929    }
    30    
     30
    3131    function edit_media_privacy_ui($echo = true) {
    3232        $privacy = "";
     
    247247        ?>
    248248        <form method='post'>
    249             <div class="">
     249            <div class="rtm_bp_default_privacy">
    250250                <div class="section">
    251251                    <div class="columns large-2"><h2><?php _e( "Default Privacy" , "rtmedia" ) ; ?></h2></div>
  • buddypress-media/trunk/app/main/controllers/template/RTMediaNav.php

    r847076 r854592  
    3434                $profile_counts = $this->actual_counts ( $bp->displayed_user->id );
    3535            }
    36 
     36        $tab_position = apply_filters('rtmedia_media_tab_position',99);
    3737            if ( $rtmedia->options[ "buddypress_enableOnProfile" ] != 0 ) {
    3838                bp_core_new_nav_item ( array(
     
    4040                    'slug' => RTMEDIA_MEDIA_SLUG,
    4141                    'screen_function' => array( $this, 'media_screen' ),
    42                     'default_subnav_slug' => 'all'
     42                    'default_subnav_slug' => 'all',
     43            'position' => $tab_position
    4344                ) );
    4445            }
  • buddypress-media/trunk/app/main/controllers/template/RTMediaUploadTemplate.php

    r785106 r854592  
    3131        $params = array(
    3232            'url' => 'upload',
    33             'runtimes' => 'gears,html5,flash,silverlight,browserplus',
     33            'runtimes' => 'gears,html5,flash,browserplus,html4',
    3434            'browse_button' => 'browse-button',
    3535            'container' => 'bpm-file_upload-ui',
  • buddypress-media/trunk/app/main/controllers/template/rt-template-functions.php

    r847076 r854592  
    376376    }
    377377    global $rtmedia_query;
    378     if(isset($rtmedia_query->query['context_id'])){
     378    if(isset($rtmedia_query->query['context_id']) && isset( $rtmedia_query->query['context'] ) && $rtmedia_query->query['context'] != "group" ){
    379379        $media = $model->get_media ( array( 'album_id' => $id, 'media_type' => 'photo', 'media_author' => $rtmedia_query->query['context_id'] ), 0, 1 );
    380380    } else {
     
    13651365
    13661366        add_action('rtmedia_before_media_gallery','rtmedia_create_album_modal');
    1367         $options[] = "<span><a href='#rtmedia-create-album-modal' class='rtmedia-reveal-modal rtmedia-modal-link'  title='".  __( 'Create New Album', 'rtmedia' ) ."'><i class='rtmicon-plus-circle'></i>" . __('Add Album') . "</a></span>";
     1367        $options[] = "<a href='#rtmedia-create-album-modal' class='rtmedia-reveal-modal rtmedia-modal-link'  title='".  __( 'Create New Album', 'rtmedia' ) ."'><i class='rtmicon-plus-circle'></i>" . __('Add Album') . "</a>";
    13681368        return $options;
    13691369
  • buddypress-media/trunk/app/main/controllers/upload/RTMediaUploadView.php

    r828205 r854592  
    4848
    4949            if ( isset( $rtmedia_query->query[ 'context' ] ) && $rtmedia_query->query[ 'context' ] == 'profile' ) {
    50                 $album = '<span><i class="rtmicon-picture-o"></i> <label>' . __('Album ','rtmedia') . ': </label><select name="album" class="rtmedia-user-album-list">' . rtmedia_user_album_list () . '</select></span>';
     50                $album = '<span> <label> <i class="rtmicon-picture-o"></i>' . __('Album ','rtmedia') . ': </label><select name="album" class="rtmedia-user-album-list">' . rtmedia_user_album_list () . '</select></span>';
    5151            }
    5252            if (isset( $rtmedia_query->query[ 'context' ] ) && $rtmedia_query->query[ 'context' ] == 'group' ) {
    53                 $album = '<span><i class="rtmicon-picture-o"></i> <label>' . __('Album ','rtmedia') . ': </label><select name="album" class="rtmedia-user-album-list">' . rtmedia_group_album_list () . '</select></span>';
     53                $album = '<span> <label> <i class="rtmicon-picture-o"></i>' . __('Album ','rtmedia') . ': </label><select name="album" class="rtmedia-user-album-list">' . rtmedia_group_album_list () . '</select></span>';
    5454            }
    5555        }
     
    5757        if( is_rtmedia_privacy_enable () && ( ! isset( $rtmedia_query->is_upload_shortcode ) || $rtmedia_query->is_upload_shortcode === false) ) {
    5858            if( isset( $rtmedia_query->query[ 'context' ] ) && $rtmedia_query->query[ 'context' ] == 'group'){
    59                 // if the context is group, then set the media privacy to public 
     59                // if the context is group, then set the media privacy to public
    6060                $privacy = "<input type='hidden' name='privacy' value='0'/>";
    61             }else { 
     61            }else {
    6262                $up_privacy = new RTMediaPrivacy();
    6363                $up_privacy = $up_privacy->select_privacy_ui( false, 'rtSelectPrivacy') ;
     
    7070            'file_upload' => array(
    7171                'default' => array( 'title' => __( 'File Upload', 'rtmedia' ),
    72                     'content' => 
     72                    'content' =>
    7373                    '<div id="rtmedia-upload-container" >'
    7474                        . '<div id="drag-drop-area" class="drag-drop row">'
    75                                 ."<div class='rtm-album-privacy'>" . $album . $privacy . "</div>" 
     75                                ."<div class='rtm-album-privacy'>" . $album . $privacy . "</div>"
    7676                                . '<div class="rtm-select-files"><input id="rtMedia-upload-button" value="' . __( "Select your files", "rtmedia" ) . '" type="button" class="rtmedia-upload-input rtmedia-file" />'
    7777                                . '<span class="rtm-seperator">' . __('or','rtmedia') .'</span><span class="drag-drop-info">' . __('Drop your files here', 'rtmedia') . '</span> <i class="rtm-file-size-limit rtmicon-info-circle"></i></div>'
  • buddypress-media/trunk/app/main/controllers/upload/processors/RTMediaUploadFile.php

    r811871 r854592  
    7575            if ( $this->uploaded[ "context" ] != 'group' ) {
    7676                $rtmedia_upload_prefix = 'users/';
    77                 $id = get_current_user_id ();
     77                $id = apply_filters('rtmedia_current_user', get_current_user_id());
    7878            } else {
    7979                $rtmedia_upload_prefix = 'groups/';
     
    8383            if ( $rtmedia_interaction->context->type != 'group' ) {
    8484                $rtmedia_upload_prefix = 'users/';
    85                 $id = get_current_user_id ();
     85                $id = apply_filters('rtmedia_current_user', get_current_user_id());
    8686            } else {
    8787                $rtmedia_upload_prefix = 'groups/';
     
    8989            }
    9090        }
    91 
    9291
    9392       if(  strpos ( $upload_dir[ 'path' ] , 'rtMedia/' . $rtmedia_upload_prefix ) === false ){
     
    10099                . 'rtMedia/' . $rtmedia_upload_prefix . $id
    101100                . $upload_dir[ 'subdir' ];
    102         }       
     101        }
    103102    $upload_dir = apply_filters("rtmedia_filter_upload_dir",$upload_dir);
    104 
    105103        return $upload_dir;
    106104    }
  • buddypress-media/trunk/app/main/routers/RTMediaRouter.php

    r830174 r854592  
    7272    function is_template () {
    7373        global $wp_query;
    74 
     74    global $rtmedia, $rtmedia_query;
     75    if( isset( $rtmedia_query ) && isset( $rtmedia_query->query ) && isset($rtmedia_query->query['context']) ) {
     76        if( ( ! isset( $rtmedia->options['buddypress_enableOnGroup'] ) ) || ( $rtmedia_query->query['context'] == "group" && isset( $rtmedia->options['buddypress_enableOnGroup'] ) && $rtmedia->options['buddypress_enableOnGroup'] == '0' ) ) {
     77        $wp_query->is_404 = true;
     78        return false;
     79        }
     80        if( ( ! isset( $rtmedia->options['buddypress_enableOnProfile'] ) ) || ( $rtmedia_query->query['context'] == "profile" && isset( $rtmedia->options['buddypress_enableOnProfile'] ) && $rtmedia->options['buddypress_enableOnProfile'] == '0' ) ) {
     81        $wp_query->is_404 = true;
     82        return false;
     83        }
     84    }
    7585        $return = isset ( $wp_query->query_vars[ $this->slug ] );
    7686    $return = apply_filters('rtmedia_return_is_template',$return,$this->slug);
  • buddypress-media/trunk/app/main/routers/query/RTMediaQuery.php

    r847076 r854592  
    497497    function get_user () {
    498498        if ( is_user_logged_in () ) {
    499             $user = get_current_user_id ();
     499            $user = apply_filters('rtmedia_current_user', get_current_user_id());
    500500        } else {
    501501            $user = 0;
  • buddypress-media/trunk/index.php

    r847489 r854592  
    55  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
    66  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
    7   Version: 3.5.2.1
     7  Version: 3.6
    88  Author: rtCamp
    99  Text Domain: rtmedia
     
    5656if ( ! defined ( 'RTMEDIA_BOWER_COMPONENTS_URL' ) ) {
    5757    /**
    58      * The url to the foundation resources 
     58     * The url to the foundation resources
    5959     *
    6060     */
     
    103103        'app/log/' . $class_name . '.php',
    104104        'app/importers/' . $class_name . '.php',
     105        'app/main/controllers/api/' . $class_name . '.php',
    105106    );
    106107    foreach ( $rtlibpath as $path ) {
  • buddypress-media/trunk/languages/rtmedia.po

    r847076 r854592  
    33"Project-Id-Version: BuddyPress Media\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-01-28 22:11+0530\n"
    6 "PO-Revision-Date: 2014-01-28 22:12+0530\n"
     5"POT-Creation-Date: 2014-02-10 13:13+0530\n"
     6"PO-Revision-Date: 2014-02-10 13:13+0530\n"
    77"Last-Translator: faishal <[email protected]>\n"
    88"Language-Team: rtCamp <[email protected]>\n"
     
    9191msgstr ""
    9292
    93 #: app/admin/RTMediaAdmin.php:323 app/admin/RTMediaAdmin.php:804
    94 #: app/admin/RTMediaAdmin.php:805
     93#: app/admin/RTMediaAdmin.php:323 app/admin/RTMediaAdmin.php:805
     94#: app/admin/RTMediaAdmin.php:806
    9595msgid "rtMedia"
    9696msgstr ""
    9797
    9898#: app/admin/RTMediaAdmin.php:329 app/admin/RTMediaAdmin.php:332
    99 #: app/admin/RTMediaAdmin.php:457 app/admin/RTMediaAdmin.php:826
     99#: app/admin/RTMediaAdmin.php:457 app/admin/RTMediaAdmin.php:827
    100100msgid "Settings"
    101101msgstr ""
    102102
    103103#: app/admin/RTMediaAdmin.php:339 app/admin/RTMediaAdmin.php:342
    104 #: app/admin/RTMediaAdmin.php:458 app/admin/RTMediaAdmin.php:831
     104#: app/admin/RTMediaAdmin.php:458 app/admin/RTMediaAdmin.php:832
    105105msgid "Addons"
    106106msgstr ""
    107107
    108108#: app/admin/RTMediaAdmin.php:349 app/admin/RTMediaAdmin.php:352
    109 #: app/admin/RTMediaAdmin.php:459 app/admin/RTMediaAdmin.php:846
     109#: app/admin/RTMediaAdmin.php:459 app/admin/RTMediaAdmin.php:847
    110110#: app/helper/RTMediaSettings.php:133
    111111msgid "Support"
     
    113113
    114114#: app/admin/RTMediaAdmin.php:359 app/admin/RTMediaAdmin.php:362
    115 #: app/admin/RTMediaAdmin.php:460 app/admin/RTMediaAdmin.php:836
     115#: app/admin/RTMediaAdmin.php:460 app/admin/RTMediaAdmin.php:837
    116116msgid "Themes"
    117117msgstr ""
    118118
    119119#: app/admin/RTMediaAdmin.php:369 app/admin/RTMediaAdmin.php:372
    120 #: app/admin/RTMediaAdmin.php:461 app/admin/RTMediaAdmin.php:841
     120#: app/admin/RTMediaAdmin.php:461 app/admin/RTMediaAdmin.php:842
    121121msgid "Hire Us"
    122122msgstr ""
     
    202202msgstr ""
    203203
    204 #: app/admin/RTMediaAdmin.php:751
     204#: app/admin/RTMediaAdmin.php:752
    205205msgid "Save Settings"
    206206msgstr ""
    207207
    208 #: app/admin/RTMediaAdmin.php:913 app/admin/RTMediaAdmin.php:914
     208#: app/admin/RTMediaAdmin.php:914 app/admin/RTMediaAdmin.php:915
    209209msgid "Other Settings"
    210210msgstr ""
    211211
    212 #: app/admin/RTMediaAdmin.php:922 app/admin/RTMediaAdmin.php:923
     212#: app/admin/RTMediaAdmin.php:923 app/admin/RTMediaAdmin.php:924
    213213msgid "Display"
    214214msgstr ""
    215215
    216 #: app/admin/RTMediaAdmin.php:933
     216#: app/admin/RTMediaAdmin.php:934
    217217msgid "rtMedia BuddyPress"
    218218msgstr ""
    219219
    220 #: app/admin/RTMediaAdmin.php:934
     220#: app/admin/RTMediaAdmin.php:935
    221221msgid "BuddyPress"
    222222msgstr ""
    223223
    224 #: app/admin/RTMediaAdmin.php:942
     224#: app/admin/RTMediaAdmin.php:943
    225225msgid "rtMedia Types"
    226226msgstr ""
    227227
    228 #: app/admin/RTMediaAdmin.php:943
     228#: app/admin/RTMediaAdmin.php:944
    229229msgid "Types"
    230230msgstr ""
    231231
    232 #: app/admin/RTMediaAdmin.php:950
     232#: app/admin/RTMediaAdmin.php:951
    233233msgid "rtMedia Sizes"
    234234msgstr ""
    235235
    236 #: app/admin/RTMediaAdmin.php:951
     236#: app/admin/RTMediaAdmin.php:952
    237237msgid "Image Sizes"
    238238msgstr ""
    239239
    240 #: app/admin/RTMediaAdmin.php:958
     240#: app/admin/RTMediaAdmin.php:959
    241241msgid "rtMedia Privacy"
    242242msgstr ""
    243243
    244 #: app/admin/RTMediaAdmin.php:959
     244#: app/admin/RTMediaAdmin.php:960
    245245#: app/main/controllers/privacy/RTMediaPrivacy.php:268
    246246msgid "Privacy"
    247247msgstr ""
    248248
    249 #: app/admin/RTMediaAdmin.php:965
     249#: app/admin/RTMediaAdmin.php:966
    250250msgid "rtMedia Custom CSS"
    251251msgstr ""
    252252
    253 #: app/admin/RTMediaAdmin.php:966
     253#: app/admin/RTMediaAdmin.php:967
    254254msgid "Custom CSS"
    255255msgstr ""
    256256
    257 #: app/admin/RTMediaAdmin.php:1071
     257#: app/admin/RTMediaAdmin.php:1072
    258258#, php-format
    259 msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
    260 msgstr ""
    261 
    262 #: app/admin/RTMediaAdmin.php:1075
     259msgid "I use @buddypressmedia http://rt.cx/rtmedia on %s"
     260msgstr ""
     261
     262#: app/admin/RTMediaAdmin.php:1076
    263263msgid "Post to Twitter Now"
    264264msgstr ""
    265265
    266 #: app/admin/RTMediaAdmin.php:1075
     266#: app/admin/RTMediaAdmin.php:1076
    267267msgid "Post to Twitter"
    268268msgstr ""
    269269
    270 #: app/admin/RTMediaAdmin.php:1076
     270#: app/admin/RTMediaAdmin.php:1077
    271271msgid "Share on Facebook Now"
    272272msgstr ""
    273273
    274 #: app/admin/RTMediaAdmin.php:1076
     274#: app/admin/RTMediaAdmin.php:1077
    275275msgid "Share on Facebook"
    276276msgstr ""
    277277
    278 #: app/admin/RTMediaAdmin.php:1077
     278#: app/admin/RTMediaAdmin.php:1078
    279279msgid "Rate rtMedia on Wordpress.org"
    280280msgstr ""
    281281
    282 #: app/admin/RTMediaAdmin.php:1077
     282#: app/admin/RTMediaAdmin.php:1078
    283283msgid "Rate on Wordpress.org"
    284284msgstr ""
    285285
    286 #: app/admin/RTMediaAdmin.php:1078
     286#: app/admin/RTMediaAdmin.php:1079
    287287msgid "Subscribe to our feeds"
    288288msgstr ""
    289289
    290 #: app/admin/RTMediaAdmin.php:1078
     290#: app/admin/RTMediaAdmin.php:1079
    291291msgid "Subscribe to our Feeds"
    292292msgstr ""
    293293
    294 #: app/admin/RTMediaAdmin.php:1084
     294#: app/admin/RTMediaAdmin.php:1080
     295msgid "Add link to footer"
     296msgstr ""
     297
     298#: app/admin/RTMediaAdmin.php:1086
    295299msgid "Spread the Word"
    296300msgstr ""
    297301
    298 #: app/admin/RTMediaAdmin.php:1116 app/admin/RTMediaAdmin.php:1119
     302#: app/admin/RTMediaAdmin.php:1118 app/admin/RTMediaAdmin.php:1121
    299303msgid "Subscribe"
    300304msgstr ""
    301305
    302 #: app/admin/RTMediaAdmin.php:1141
     306#: app/admin/RTMediaAdmin.php:1143
    303307msgid "Thank you for your time."
    304308msgstr ""
    305309
    306 #: app/admin/RTMediaAdmin.php:1153
     310#: app/admin/RTMediaAdmin.php:1155
    307311msgid "Premium Add-ons"
    308312msgstr ""
    309313
    310 #: app/admin/RTMediaAdmin.php:1167
     314#: app/admin/RTMediaAdmin.php:1169
    311315#, php-format
    312316msgid ""
     
    316320msgstr ""
    317321
    318 #: app/admin/RTMediaAdmin.php:1168 app/admin/RTMediaAdmin.php:1179
    319 #: app/admin/RTMediaAdmin.php:1188
     322#: app/admin/RTMediaAdmin.php:1170 app/admin/RTMediaAdmin.php:1181
     323#: app/admin/RTMediaAdmin.php:1190
    320324msgid "Recommended"
    321325msgstr ""
    322326
    323 #: app/admin/RTMediaAdmin.php:1168 app/admin/RTMediaAdmin.php:1179
    324 #: app/admin/RTMediaAdmin.php:1188
     327#: app/admin/RTMediaAdmin.php:1170 app/admin/RTMediaAdmin.php:1181
     328#: app/admin/RTMediaAdmin.php:1190
    325329msgid "Update Network Settings Automatically"
    326330msgstr ""
    327331
    328 #: app/admin/RTMediaAdmin.php:1178
     332#: app/admin/RTMediaAdmin.php:1180
    329333#, php-format
    330334msgid ""
     
    334338msgstr ""
    335339
    336 #: app/admin/RTMediaAdmin.php:1187
     340#: app/admin/RTMediaAdmin.php:1189
    337341#, php-format
    338342msgid ""
     
    342346msgstr ""
    343347
    344 #: app/admin/RTMediaAdmin.php:1202
     348#: app/admin/RTMediaAdmin.php:1204
    345349msgid "Network settings updated successfully."
    346350msgstr ""
    347351
    348 #: app/admin/RTMediaAdmin.php:1305
     352#: app/admin/RTMediaAdmin.php:1307
    349353msgid "Video is sent to generate thumbnails."
    350354msgstr ""
    351355
    352 #: app/admin/RTMediaAdmin.php:1308
     356#: app/admin/RTMediaAdmin.php:1310
    353357msgid "Video can't be sent to generate thumbnails."
    354358msgstr ""
    355359
    356 #: app/admin/RTMediaAdmin.php:1390
     360#: app/admin/RTMediaAdmin.php:1392
    357361msgid ""
    358362"rtMedia just updated to Foundation 5. Please update rtMedia template files "
     
    360364msgstr ""
    361365
    362 #: app/admin/RTMediaAdmin.php:1390 app/importers/RTMediaMigration.php:60
     366#: app/admin/RTMediaAdmin.php:1392 app/importers/RTMediaMigration.php:60
    363367msgid "Hide"
    364368msgstr ""
     
    611615msgstr ""
    612616
    613 #: app/helper/RTMediaAddon.php:96
     617#: app/helper/RTMediaAddon.php:117
    614618msgid "rtMedia Photo Tagging"
    615619msgstr ""
    616620
    617 #: app/helper/RTMediaAddon.php:99
     621#: app/helper/RTMediaAddon.php:120
    618622msgid ""
    619623"rtMedia Photo Tagging add-on enables tagging on photos uploaded using "
     
    621625msgstr ""
    622626
    623 #: app/helper/RTMediaAddon.php:100 app/helper/RTMediaAddon.php:110
     627#: app/helper/RTMediaAddon.php:121 app/helper/RTMediaAddon.php:131
    624628#: app/importers/BPMediaAlbumimporter.php:177
    625629msgid "Important"
    626630msgstr ""
    627631
    628 #: app/helper/RTMediaAddon.php:100 app/helper/RTMediaAddon.php:110
     632#: app/helper/RTMediaAddon.php:121 app/helper/RTMediaAddon.php:131
    629633#: app/importers/BPMediaAlbumimporter.php:177
    630634msgid ""
     
    632636msgstr ""
    633637
    634 #: app/helper/RTMediaAddon.php:106
     638#: app/helper/RTMediaAddon.php:127
    635639msgid "rtMedia Instagram"
    636640msgstr ""
    637641
    638 #: app/helper/RTMediaAddon.php:109
     642#: app/helper/RTMediaAddon.php:130
    639643msgid ""
    640644"rtMedia Instagram adds Instagram like filters to images uploaded with "
     
    642646msgstr ""
    643647
    644 #: app/helper/RTMediaAddon.php:116
     648#: app/helper/RTMediaAddon.php:137
    645649msgid "rtMedia Kaltura Add-on"
    646650msgstr ""
    647651
    648 #: app/helper/RTMediaAddon.php:119
     652#: app/helper/RTMediaAddon.php:140
    649653msgid "Add support for more video formats using Kaltura video solution."
    650654msgstr ""
    651655
    652 #: app/helper/RTMediaAddon.php:120
     656#: app/helper/RTMediaAddon.php:141
    653657msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
    654658msgstr ""
    655659
    656 #: app/helper/RTMediaAddon.php:126
     660#: app/helper/RTMediaAddon.php:147
    657661msgid "rtMedia FFMPEG Add-on"
    658662msgstr ""
    659663
    660 #: app/helper/RTMediaAddon.php:129
     664#: app/helper/RTMediaAddon.php:150
    661665msgid ""
    662666"Add supports for more audio & video formats using open-source media-node."
    663667msgstr ""
    664668
    665 #: app/helper/RTMediaAddon.php:130
     669#: app/helper/RTMediaAddon.php:151
    666670msgid "Media node comes with automated setup script for Ubuntu/Debian."
    667671msgstr ""
    668672
    669 #: app/helper/RTMediaAddon.php:142
     673#: app/helper/RTMediaAddon.php:163
    670674msgid "rtMedia Addons for Photos"
    671675msgstr ""
    672676
    673 #: app/helper/RTMediaAddon.php:146
     677#: app/helper/RTMediaAddon.php:167
    674678msgid "rtMedia Addons for Audio/Video"
    675679msgstr ""
    676680
    677 #: app/helper/RTMediaAddon.php:160
     681#: app/helper/RTMediaAddon.php:181
    678682msgid "Coming Soon !!"
    679683msgstr ""
    680684
    681 #: app/helper/RTMediaAddon.php:199 app/importers/BPMediaAlbumimporter.php:181
     685#: app/helper/RTMediaAddon.php:220 app/importers/BPMediaAlbumimporter.php:181
    682686msgid "Buy Now"
    683687msgstr ""
    684688
    685 #: app/helper/RTMediaAddon.php:200 app/importers/BPMediaAlbumimporter.php:182
     689#: app/helper/RTMediaAddon.php:221 app/importers/BPMediaAlbumimporter.php:182
    686690msgid "Live Demo"
    687691msgstr ""
     
    765769msgstr ""
    766770
    767 #: app/helper/RTMediaSettings.php:288 app/helper/RTMediaSupport.php:347
     771#: app/helper/RTMediaSettings.php:288 app/helper/RTMediaSupport.php:367
    768772msgid ""
    769773"If your site has some issues due to BuddyPress Media and you want one on one "
     
    774778msgstr ""
    775779
    776 #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:348
     780#: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:368
    777781msgid ""
    778782"If you have any suggestions, enhancements or bug reports, then you can open "
     
    782786
    783787#: app/helper/RTMediaSupport.php:40 app/helper/RTMediaSupport.php:41
    784 #: app/helper/RTMediaSupport.php:108
     788#: app/helper/RTMediaSupport.php:128
    785789msgid "Premium Support"
    786790msgstr ""
    787791
    788792#: app/helper/RTMediaSupport.php:46 app/helper/RTMediaSupport.php:47
    789 #: app/helper/RTMediaSupport.php:502
     793#: app/helper/RTMediaSupport.php:522
    790794msgid "Debug Info"
    791795msgstr ""
     
    796800msgstr ""
    797801
    798 #: app/helper/RTMediaSupport.php:106
     802#: app/helper/RTMediaSupport.php:126
    799803msgid "Service"
    800804msgstr ""
    801805
    802 #: app/helper/RTMediaSupport.php:109
     806#: app/helper/RTMediaSupport.php:129
    803807msgid "Bug Report"
    804808msgstr ""
    805809
    806 #: app/helper/RTMediaSupport.php:110
     810#: app/helper/RTMediaSupport.php:130
    807811msgid "New Feature"
    808812msgstr ""
    809813
    810 #: app/helper/RTMediaSupport.php:190
     814#: app/helper/RTMediaSupport.php:210
    811815msgid "by"
    812816msgstr ""
    813817
    814 #: app/helper/RTMediaSupport.php:190
     818#: app/helper/RTMediaSupport.php:210
    815819msgid "version"
    816820msgstr ""
    817821
    818 #: app/helper/RTMediaSupport.php:305
     822#: app/helper/RTMediaSupport.php:325
    819823msgid "There is no media found to migrate."
    820824msgstr ""
    821825
    822 #: app/helper/RTMediaSupport.php:311 app/helper/RTMediaThemes.php:95
     826#: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116
    823827msgid "Click"
    824828msgstr ""
    825829
    826 #: app/helper/RTMediaSupport.php:311 app/helper/RTMediaThemes.php:95
     830#: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116
    827831msgid "here"
    828832msgstr ""
    829833
    830 #: app/helper/RTMediaSupport.php:311
     834#: app/helper/RTMediaSupport.php:331
    831835msgid "here to migrate media from rtMedia 2.x to rtMedia 3.0+."
    832836msgstr ""
    833837
    834 #: app/helper/RTMediaSupport.php:335
     838#: app/helper/RTMediaSupport.php:355
    835839msgid "Submit a Bug Report"
    836840msgstr ""
    837841
    838 #: app/helper/RTMediaSupport.php:338
     842#: app/helper/RTMediaSupport.php:358
    839843msgid "Submit a New Feature Request"
    840844msgstr ""
    841845
    842 #: app/helper/RTMediaSupport.php:341
     846#: app/helper/RTMediaSupport.php:361
    843847msgid "Submit a Premium Support Request"
    844848msgstr ""
    845849
    846 #: app/helper/RTMediaSupport.php:358
     850#: app/helper/RTMediaSupport.php:378
    847851msgid "Name"
    848852msgstr ""
    849853
    850 #: app/helper/RTMediaSupport.php:361
     854#: app/helper/RTMediaSupport.php:381
    851855msgid "Email"
    852856msgstr ""
    853857
    854 #: app/helper/RTMediaSupport.php:364
     858#: app/helper/RTMediaSupport.php:384
    855859msgid "Website"
    856860msgstr ""
    857861
    858 #: app/helper/RTMediaSupport.php:367
     862#: app/helper/RTMediaSupport.php:387
    859863msgid "Phone"
    860864msgstr ""
    861865
    862 #: app/helper/RTMediaSupport.php:370
     866#: app/helper/RTMediaSupport.php:390
    863867msgid "Subject"
    864868msgstr ""
    865869
    866 #: app/helper/RTMediaSupport.php:373 templates/media/album-single-edit.php:16
     870#: app/helper/RTMediaSupport.php:393 templates/media/album-single-edit.php:16
    867871#: templates/media/media-single-edit.php:19
    868872msgid "Details"
    869873msgstr ""
    870874
    871 #: app/helper/RTMediaSupport.php:384
     875#: app/helper/RTMediaSupport.php:404
    872876msgid "Additional Information"
    873877msgstr ""
    874878
    875 #: app/helper/RTMediaSupport.php:389
     879#: app/helper/RTMediaSupport.php:409
    876880msgid "Your WP Admin Login:"
    877881msgstr ""
    878882
    879 #: app/helper/RTMediaSupport.php:392
     883#: app/helper/RTMediaSupport.php:412
    880884msgid "Your WP Admin password:"
    881885msgstr ""
    882886
    883 #: app/helper/RTMediaSupport.php:395
     887#: app/helper/RTMediaSupport.php:415
    884888msgid "Your SSH / FTP host:"
    885889msgstr ""
    886890
    887 #: app/helper/RTMediaSupport.php:398
     891#: app/helper/RTMediaSupport.php:418
    888892msgid "Your SSH / FTP login:"
    889893msgstr ""
    890894
    891 #: app/helper/RTMediaSupport.php:401
     895#: app/helper/RTMediaSupport.php:421
    892896msgid "Your SSH / FTP password:"
    893897msgstr ""
    894898
    895 #: app/helper/RTMediaSupport.php:432
     899#: app/helper/RTMediaSupport.php:452
    896900msgid "rtMedia Premium Support Request from"
    897901msgstr ""
    898902
    899 #: app/helper/RTMediaSupport.php:435
     903#: app/helper/RTMediaSupport.php:455
    900904msgid "rtMedia New Feature Request from"
    901905msgstr ""
    902906
    903 #: app/helper/RTMediaSupport.php:438
     907#: app/helper/RTMediaSupport.php:458
    904908msgid "rtMedia Bug Report from"
    905909msgstr ""
    906910
    907 #: app/helper/RTMediaSupport.php:441
     911#: app/helper/RTMediaSupport.php:461
    908912msgid "rtMedia Contact from"
    909913msgstr ""
    910914
    911 #: app/helper/RTMediaSupport.php:525
     915#: app/helper/RTMediaSupport.php:545
    912916msgid "Thank you for your Feedback/Suggestion."
    913917msgstr ""
    914918
    915 #: app/helper/RTMediaSupport.php:527
     919#: app/helper/RTMediaSupport.php:547
    916920msgid "Thank you for posting your support request."
    917921msgstr ""
    918922
    919 #: app/helper/RTMediaSupport.php:528
     923#: app/helper/RTMediaSupport.php:548
    920924msgid "We will get back to you shortly."
    921925msgstr ""
    922926
    923 #: app/helper/RTMediaSupport.php:533
     927#: app/helper/RTMediaSupport.php:553
    924928msgid "Your server failed to send an email."
    925929msgstr ""
    926930
    927 #: app/helper/RTMediaSupport.php:534
     931#: app/helper/RTMediaSupport.php:554
    928932msgid "Kindly contact your server support to fix this."
    929933msgstr ""
    930934
    931 #: app/helper/RTMediaSupport.php:535
     935#: app/helper/RTMediaSupport.php:555
    932936#, php-format
    933937msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
     
    942946msgstr ""
    943947
    944 #: app/helper/RTMediaThemes.php:77
     948#: app/helper/RTMediaThemes.php:96
    945949msgid "Coming Soon..."
    946950msgstr ""
    947951
    948 #: app/helper/RTMediaThemes.php:78
     952#: app/helper/RTMediaThemes.php:97
    949953msgid "We are working on some rtMedia themes which will be available shortly."
    950954msgstr ""
    951955
    952 #: app/helper/RTMediaThemes.php:87
     956#: app/helper/RTMediaThemes.php:107
    953957msgid ""
    954958"These are the third party themes. For any issues or queries regarding these "
     
    956960msgstr ""
    957961
    958 #: app/helper/RTMediaThemes.php:94
     962#: app/helper/RTMediaThemes.php:115
    959963msgid ""
    960964"SweetDate is a unique, clean and modern Premium Wordpress theme. It is "
     
    964968msgstr ""
    965969
    966 #: app/helper/RTMediaThemes.php:95
     970#: app/helper/RTMediaThemes.php:116
    967971msgid "for preview."
    968972msgstr ""
    969973
    970 #: app/helper/RTMediaThemes.php:100
     974#: app/helper/RTMediaThemes.php:122
    971975msgid "Are you a developer?"
    972976msgstr ""
    973977
    974 #: app/helper/RTMediaThemes.php:101
     978#: app/helper/RTMediaThemes.php:123
    975979msgid ""
    976980"If you have developed a rtMedia compatible theme and would like it to list "
     
    978982msgstr ""
    979983
    980 #: app/helper/RTMediaThemes.php:101
     984#: app/helper/RTMediaThemes.php:123
    981985msgid "[email protected]"
    982986msgstr ""
     
    10771081#: app/importers/BPMediaAlbumimporter.php:150
    10781082#, php-format
    1079 msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
     1083msgid "I just imported bp-album to @buddypressmedia http://rt.cx/rtmedia on %s"
    10801084msgstr ""
    10811085
     
    12021206
    12031207#: app/main/RTMedia.php:359
    1204 msgid "<strong>Users</strong> - Visible to registered users"
     1208msgid "<strong>Logged in Users</strong> - Visible to registered users"
    12051209msgstr ""
    12061210
     
    12091213msgstr ""
    12101214
    1211 #: app/main/RTMedia.php:517 app/main/controllers/template/RTMediaNav.php:142
     1215#: app/main/RTMedia.php:517 app/main/controllers/template/RTMediaNav.php:143
    12121216msgid "All"
    12131217msgstr ""
     
    12201224#: app/main/RTMedia.php:529 app/main/controllers/media/RTMediaAlbum.php:53
    12211225#: app/main/controllers/media/RTMediaAlbum.php:65
    1222 #: app/main/controllers/template/RTMediaNav.php:91
    1223 #: app/main/controllers/template/RTMediaNav.php:163
     1226#: app/main/controllers/template/RTMediaNav.php:92
     1227#: app/main/controllers/template/RTMediaNav.php:164
    12241228msgid "Albums"
    12251229msgstr ""
     
    12351239msgstr ""
    12361240
    1237 #: app/main/RTMedia.php:729
     1241#: app/main/RTMedia.php:732
    12381242msgid "Wall Posts"
    12391243msgstr ""
    12401244
    1241 #: app/main/RTMedia.php:769
     1245#: app/main/RTMedia.php:772
    12421246msgid ": Can't Create Database table. Please check create table permission."
    12431247msgstr ""
    12441248
    1245 #: app/main/RTMedia.php:803
     1249#: app/main/RTMedia.php:806
    12461250msgid "Loading media"
    12471251msgstr ""
    12481252
    1249 #: app/main/RTMedia.php:804
     1253#: app/main/RTMedia.php:807
    12501254msgid "Please enter some content to post."
    12511255msgstr ""
    12521256
    1253 #: app/main/RTMedia.php:805
     1257#: app/main/RTMedia.php:808
    12541258msgid "Empty Comment is not allowed."
    12551259msgstr ""
    12561260
    1257 #: app/main/RTMedia.php:806
     1261#: app/main/RTMedia.php:809
    12581262msgid "Are you sure you want to delete this media?"
    12591263msgstr ""
    12601264
    1261 #: app/main/RTMedia.php:807
     1265#: app/main/RTMedia.php:810
    12621266msgid "Are you sure you want to delete this comment?"
    12631267msgstr ""
    12641268
    1265 #: app/main/RTMedia.php:808
     1269#: app/main/RTMedia.php:811
    12661270msgid "Are you sure you want to delete this Album?"
    12671271msgstr ""
    12681272
    1269 #: app/main/RTMedia.php:809
     1273#: app/main/RTMedia.php:812
    12701274msgid "Drop files here"
    12711275msgstr ""
    12721276
    1273 #: app/main/RTMedia.php:810
     1277#: app/main/RTMedia.php:813
    12741278msgid "album created successfully."
    12751279msgstr ""
    12761280
    1277 #: app/main/RTMedia.php:811
     1281#: app/main/RTMedia.php:814
    12781282msgid "Something went wrong. Please try again."
    12791283msgstr ""
    12801284
    1281 #: app/main/RTMedia.php:812
     1285#: app/main/RTMedia.php:815
    12821286msgid "Enter an album name."
    12831287msgstr ""
    12841288
    1285 #: app/main/RTMedia.php:813
     1289#: app/main/RTMedia.php:816
    12861290msgid "Max file Size Limit : "
    12871291msgstr ""
    12881292
    1289 #: app/main/RTMedia.php:814
     1293#: app/main/RTMedia.php:817
    12901294msgid "Allowed File Formats"
    12911295msgstr ""
    12921296
    1293 #: app/main/RTMedia.php:815 templates/media/album-single-edit.php:58
     1297#: app/main/RTMedia.php:818 templates/media/album-single-edit.php:58
    12941298msgid "Select All Visible"
    12951299msgstr ""
    12961300
    1297 #: app/main/RTMedia.php:816
     1301#: app/main/RTMedia.php:819
    12981302msgid "Unselect All Visible"
    12991303msgstr ""
    13001304
    1301 #: app/main/RTMedia.php:817
     1305#: app/main/RTMedia.php:820
    13021306msgid "Please select some media."
    13031307msgstr ""
    13041308
    1305 #: app/main/RTMedia.php:818
     1309#: app/main/RTMedia.php:821
    13061310msgid "Are you sure you want to delete the selected medias?"
    13071311msgstr ""
    13081312
    1309 #: app/main/RTMedia.php:819
     1313#: app/main/RTMedia.php:822
    13101314msgid "Are you sure you want to move the selected medias?"
    13111315msgstr ""
    13121316
    1313 #: app/main/RTMedia.php:820
     1317#: app/main/RTMedia.php:823
    13141318msgid "Waiting"
    13151319msgstr ""
    13161320
    1317 #: app/main/RTMedia.php:821
     1321#: app/main/RTMedia.php:824
    13181322msgid "Uploaded"
    13191323msgstr ""
    13201324
    1321 #: app/main/RTMedia.php:822
     1325#: app/main/RTMedia.php:825
    13221326msgid "Uploading"
    13231327msgstr ""
    13241328
    1325 #: app/main/RTMedia.php:823
     1329#: app/main/RTMedia.php:826
    13261330msgid "Failed"
    13271331msgstr ""
    13281332
    1329 #: app/main/RTMedia.php:824
     1333#: app/main/RTMedia.php:827
    13301334msgid "Close"
    13311335msgstr ""
    13321336
    1333 #: app/main/RTMedia.php:825
     1337#: app/main/RTMedia.php:828
    13341338#: app/main/controllers/template/rt-template-functions.php:585
    13351339#: app/main/controllers/template/rt-template-functions.php:606
     
    13371341msgstr ""
    13381342
    1339 #: app/main/RTMedia.php:826
     1343#: app/main/RTMedia.php:829
    13401344#: app/main/controllers/template/rt-template-functions.php:1129
    13411345#: app/main/controllers/template/rt-template-functions.php:1136
     
    13441348msgstr ""
    13451349
    1346 #: app/main/RTMedia.php:827 templates/media/media-single-edit.php:13
     1350#: app/main/RTMedia.php:830 templates/media/media-single-edit.php:13
    13471351msgid "Edit Media"
    13481352msgstr ""
    13491353
    1350 #: app/main/RTMedia.php:828
     1354#: app/main/RTMedia.php:831
    13511355msgid "Remove from queue"
    13521356msgstr ""
    13531357
    1354 #: app/main/RTMedia.php:829
     1358#: app/main/RTMedia.php:832
    13551359msgid "Add more files"
    13561360msgstr ""
    13571361
    1358 #: app/main/RTMedia.php:830
     1362#: app/main/RTMedia.php:833
    13591363msgid "File not supported"
    13601364msgstr ""
    13611365
    1362 #: app/main/RTMedia.php:831
     1366#: app/main/RTMedia.php:834
    13631367msgid "more"
    13641368msgstr ""
    13651369
    1366 #: app/main/RTMedia.php:832
     1370#: app/main/RTMedia.php:835
    13671371msgid "less"
    13681372msgstr ""
    13691373
    1370 #: app/main/RTMedia.php:833
     1374#: app/main/RTMedia.php:836
    13711375msgid "This media is uploaded. Are you sure you want to delete this media?"
    13721376msgstr ""
     
    13741378#: app/main/controllers/activity/RTMediaBuddyPressActivity.php:146
    13751379msgid "Media Files"
     1380msgstr ""
     1381
     1382#: app/main/controllers/api/RTMediaJsonApi.php:146
     1383msgid "username/password empty"
     1384msgstr ""
     1385
     1386#: app/main/controllers/api/RTMediaJsonApi.php:149
     1387msgid "incorrect username"
     1388msgstr ""
     1389
     1390#: app/main/controllers/api/RTMediaJsonApi.php:152
     1391msgid "incorrect password"
     1392msgstr ""
     1393
     1394#: app/main/controllers/api/RTMediaJsonApi.php:155
     1395msgid "login success"
     1396msgstr ""
     1397
     1398#: app/main/controllers/api/RTMediaJsonApi.php:201
     1399msgid "fields empty"
     1400msgstr ""
     1401
     1402#: app/main/controllers/api/RTMediaJsonApi.php:204
     1403msgid "invalid email"
     1404msgstr ""
     1405
     1406#: app/main/controllers/api/RTMediaJsonApi.php:207
     1407msgid "password do not match"
     1408msgstr ""
     1409
     1410#: app/main/controllers/api/RTMediaJsonApi.php:210
     1411msgid "username already registered"
     1412msgstr ""
     1413
     1414#: app/main/controllers/api/RTMediaJsonApi.php:213
     1415msgid "email already exists"
     1416msgstr ""
     1417
     1418#: app/main/controllers/api/RTMediaJsonApi.php:216
     1419msgid "new user created"
     1420msgstr ""
     1421
     1422#: app/main/controllers/api/RTMediaJsonApi.php:277
     1423msgid "email empty"
     1424msgstr ""
     1425
     1426#: app/main/controllers/api/RTMediaJsonApi.php:280
     1427msgid "username/email not registered"
     1428msgstr ""
     1429
     1430#: app/main/controllers/api/RTMediaJsonApi.php:283
     1431msgid "reset link sent"
     1432msgstr ""
     1433
     1434#: app/main/controllers/api/RTMediaJsonApi.php:315
     1435msgid ""
     1436"Someone has asked to reset the password for the following site and username."
     1437msgstr ""
     1438
     1439#: app/main/controllers/api/RTMediaJsonApi.php:317
     1440#, php-format
     1441msgid "Username: %s"
     1442msgstr ""
     1443
     1444#: app/main/controllers/api/RTMediaJsonApi.php:318
     1445msgid ""
     1446"To reset your password visit the following address, otherwise just ignore "
     1447"this email and nothing will happen."
     1448msgstr ""
     1449
     1450#: app/main/controllers/api/RTMediaJsonApi.php:321
     1451#, php-format
     1452msgid "[%s] Password Reset"
     1453msgstr ""
     1454
     1455#: app/main/controllers/api/RTMediaJsonApi.php:336
     1456msgid "bp activities"
     1457msgstr ""
     1458
     1459#: app/main/controllers/api/RTMediaJsonApi.php:339
     1460msgid "user activities"
     1461msgstr ""
     1462
     1463#: app/main/controllers/api/RTMediaJsonApi.php:369
     1464msgid "comment content missing"
     1465msgstr ""
     1466
     1467#: app/main/controllers/api/RTMediaJsonApi.php:372
     1468msgid "comment posted"
     1469msgstr ""
     1470
     1471#: app/main/controllers/api/RTMediaJsonApi.php:419
     1472msgid "unliked media"
     1473msgstr ""
     1474
     1475#: app/main/controllers/api/RTMediaJsonApi.php:422
     1476msgid "liked media"
     1477msgstr ""
     1478
     1479#: app/main/controllers/api/RTMediaJsonApi.php:506
     1480msgid "no comments"
     1481msgstr ""
     1482
     1483#: app/main/controllers/api/RTMediaJsonApi.php:509
     1484msgid "media comments"
     1485msgstr ""
     1486
     1487#: app/main/controllers/api/RTMediaJsonApi.php:512
     1488msgid "my comments"
     1489msgstr ""
     1490
     1491#: app/main/controllers/api/RTMediaJsonApi.php:562
     1492msgid "no likes"
     1493msgstr ""
     1494
     1495#: app/main/controllers/api/RTMediaJsonApi.php:565
     1496msgid "media likes"
     1497msgstr ""
     1498
     1499#: app/main/controllers/api/RTMediaJsonApi.php:607
     1500msgid "invalid comment/media id"
     1501msgstr ""
     1502
     1503#: app/main/controllers/api/RTMediaJsonApi.php:610
     1504msgid "no comment id"
     1505msgstr ""
     1506
     1507#: app/main/controllers/api/RTMediaJsonApi.php:613
     1508msgid "comment deleted"
     1509msgstr ""
     1510
     1511#: app/main/controllers/api/RTMediaJsonApi.php:656
     1512msgid "no profile found"
     1513msgstr ""
     1514
     1515#: app/main/controllers/api/RTMediaJsonApi.php:659
     1516msgid "profile fields"
     1517msgstr ""
     1518
     1519#: app/main/controllers/api/RTMediaJsonApi.php:753
     1520msgid "follow user id missing"
     1521msgstr ""
     1522
     1523#: app/main/controllers/api/RTMediaJsonApi.php:756
     1524msgid "started following"
     1525msgstr ""
     1526
     1527#: app/main/controllers/api/RTMediaJsonApi.php:759
     1528msgid "already following"
     1529msgstr ""
     1530
     1531#: app/main/controllers/api/RTMediaJsonApi.php:791
     1532msgid "unfollow id missing"
     1533msgstr ""
     1534
     1535#: app/main/controllers/api/RTMediaJsonApi.php:794
     1536msgid "stopped following"
     1537msgstr ""
     1538
     1539#: app/main/controllers/api/RTMediaJsonApi.php:797
     1540msgid "not following"
     1541msgstr ""
     1542
     1543#: app/main/controllers/api/RTMediaJsonApi.php:829
     1544msgid "name/location empty"
     1545msgstr ""
     1546
     1547#: app/main/controllers/api/RTMediaJsonApi.php:832
     1548msgid "profile updated"
     1549msgstr ""
     1550
     1551#: app/main/controllers/api/RTMediaJsonApi.php:858
     1552#: app/main/controllers/api/RTMediaJsonApi.php:885
     1553msgid "no file"
     1554msgstr ""
     1555
     1556#: app/main/controllers/api/RTMediaJsonApi.php:861
     1557#: app/main/controllers/api/RTMediaJsonApi.php:897
     1558msgid "upload failed, check size and file type"
     1559msgstr ""
     1560
     1561#: app/main/controllers/api/RTMediaJsonApi.php:864
     1562msgid "avatar updated"
     1563msgstr ""
     1564
     1565#: app/main/controllers/api/RTMediaJsonApi.php:888
     1566msgid "invalid file string"
     1567msgstr ""
     1568
     1569#: app/main/controllers/api/RTMediaJsonApi.php:891
     1570msgid "image type missing"
     1571msgstr ""
     1572
     1573#: app/main/controllers/api/RTMediaJsonApi.php:894
     1574msgid "no title"
     1575msgstr ""
     1576
     1577#: app/main/controllers/api/RTMediaJsonApi.php:900
     1578msgid "media updated"
     1579msgstr ""
     1580
     1581#: app/main/controllers/api/RTMediaJsonApi.php:1020
     1582msgid "media list"
     1583msgstr ""
     1584
     1585#: app/main/controllers/api/RTMediaJsonApi.php:1023
     1586msgid "no media found for requested media type"
     1587msgstr ""
     1588
     1589#: app/main/controllers/api/RTMediaJsonApi.php:1026
     1590msgid "media_type not allowed"
     1591msgstr ""
     1592
     1593#: app/main/controllers/api/RTMediaJsonApi.php:1111
     1594msgid "single media"
    13761595msgstr ""
    13771596
     
    18812100msgstr ""
    18822101
    1883 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:203
     2102#: app/main/controllers/upload/processors/RTMediaUploadFile.php:201
    18842103msgid "MP4 file you have uploaded is corrupt."
    18852104msgstr ""
    18862105
    1887 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:210
    1888 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:215
     2106#: app/main/controllers/upload/processors/RTMediaUploadFile.php:208
     2107#: app/main/controllers/upload/processors/RTMediaUploadFile.php:213
    18892108msgid ""
    18902109"The MP4 file you have uploaded is using an unsupported video codec. "
     
    18922111msgstr ""
    18932112
    1894 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:220
     2113#: app/main/controllers/upload/processors/RTMediaUploadFile.php:218
    18952114msgid "The MP4 file you have uploaded is not a video file."
    18962115msgstr ""
    18972116
    1898 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:232
     2117#: app/main/controllers/upload/processors/RTMediaUploadFile.php:230
    18992118msgid "MP3 file you have uploaded is currupt."
    19002119msgstr ""
    19012120
    1902 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:239
    1903 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:244
     2121#: app/main/controllers/upload/processors/RTMediaUploadFile.php:237
     2122#: app/main/controllers/upload/processors/RTMediaUploadFile.php:242
    19042123msgid ""
    19052124"The MP3 file you have uploaded is using an unsupported audio format. "
     
    19072126msgstr ""
    19082127
    1909 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:249
     2128#: app/main/controllers/upload/processors/RTMediaUploadFile.php:247
    19102129msgid "The MP3 file you have uploaded is not an audio file."
    19112130msgstr ""
    19122131
    1913 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:257
     2132#: app/main/controllers/upload/processors/RTMediaUploadFile.php:255
    19142133msgid ""
    19152134"Media File you have tried to upload is not supported. Supported media files "
  • buddypress-media/trunk/readme.txt

    r847489 r854592  
    11=== rtMedia for WordPress, BuddyPress and bbPress ===
    2 Contributors: rtcamp, rahul286, faishal, JoshuaAbenazer, gagan0123, saurabhshukla, desaiuditd, nitun.lanjewar, rittesh.patel, pushpak.pop, umesh.nevase, suhasgirgaonkar, neerukoul, hrishiv90, kanakiyajay, jarretc, tobiaskluge, rafaelfunchal
     2Contributors: rtcamp, rahul286, faishal, JoshuaAbenazer, gagan0123, saurabhshukla, desaiuditd, nitun.lanjewar, rittesh.patel, pushpak.pop, umesh.nevase, suhasgirgaonkar, neerukoul, hrishiv90, kanakiyajay, jarretc, tobiaskluge, rafaelfunchal, UmeshSingla
    33Donate link: http://rtcamp.com/donate/
    44Tags: BuddyPress, media, multimedia, album, audio, songs, music, video, photo, image, upload, share, MediaElement.js, ffmpeg, kaltura, media-node, rtMedia, WordPress, bbPress
     
    77Requires at least: WordPress 3.6
    88Tested up to: WordPress 3.7 + BuddyPress 1.8.1
    9 Stable tag: 3.5.2.1
     9Stable tag: 3.6
    1010
    1111Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
     
    133133
    134134Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
     135= 3.6 =
     136* rtMedia JSON API added
     137* Updated russian translations
     138* Bug fixes
    135139
    136140= 3.5.2.1 =
     
    688692== Upgrade Notice ==
    689693
    690 = 3.5.2.1 =
    691 Requires BuddyPress 1.7 or higher, if using BuddyPress. Admin UI bug fixes
     694= 3.6 =
     695Requires BuddyPress 1.7 or higher, if using BuddyPress. rtMedia API added, updated russian translations, bug fixes.
    692696
    693697== Sponsors ==
  • buddypress-media/trunk/templates/media/media-gallery.php

    r828205 r854592  
    11<div class="rtmedia-container">
    22    <?php do_action ( 'rtmedia_before_media_gallery' ); ?>
    3     <?php 
     3    <?php
    44        $title = get_rtmedia_gallery_title();
    55        global $rtmedia_query;
    66        if( isset($rtmedia_query->is_gallery_shortcode) && $rtmedia_query->is_gallery_shortcode == true) { // if gallery is displayed using gallery shortcode
    7         ?>           
     7        ?>
    88            <h2><?php _e( 'Media Gallery', 'rtmedia' ); ?></h2>
    99        <?php }
     
    1515                </h2>
    1616                <div id="rtm-media-options"><?php do_action ( 'rtmedia_media_gallery_actions' ); ?></div>
    17             </div>   
     17            </div>
    1818
    1919            <div id="rtm-media-gallery-uploader">
     
    2323        ?>
    2424     <?php do_action ( 'rtmedia_after_media_gallery_title' ); ?>
    25    
    26     <ul class="rtmedia-list rtmedia-list-media <?php echo rtmedia_media_gallery_class (); ?>">
    27         <?php if ( have_rtmedia () ) { ?>
     25    <?php if ( have_rtmedia () ) { ?>
     26    <ul class="rtmedia-list rtmedia-list-media <?php echo rtmedia_media_gallery_class (); ?>">
     27
    2828
    2929            <?php while ( have_rtmedia () ) : rtmedia (); ?>
     
    5757        </div>
    5858    <?php } else { ?>
    59         <p>
    60             <?php 
     59        <p>
     60            <?php
    6161                $message = __ ( "Oops !! There's no media found for the request !!", "rtmedia" );
    6262                echo apply_filters('rtmedia_no_media_found_message_filter', $message);
     
    6464            </p>
    6565    <?php } ?>
    66 </ul>
     66
    6767<?php do_action ( 'rtmedia_after_media_gallery' ); ?>
    6868
Note: See TracChangeset for help on using the changeset viewer.