Changeset 854592
- Timestamp:
- 02/10/2014 07:55:38 AM (12 years ago)
- Location:
- buddypress-media/trunk
- Files:
-
- 6 added
- 19 edited
-
app/assets/js/rtMedia.backbone.js (modified) (1 diff)
-
app/helper/RTMediaModel.php (modified) (2 diffs)
-
app/main/RTMedia.php (modified) (2 diffs)
-
app/main/controllers/activity/RTMediaActivity.php (modified) (1 diff)
-
app/main/controllers/api (added)
-
app/main/controllers/api/RTMediaApiLogin.php (added)
-
app/main/controllers/api/RTMediaJsonApi.php (added)
-
app/main/controllers/api/RTMediaJsonApiFunctions.php (added)
-
app/main/controllers/media/RTMediaAlbum.php (modified) (1 diff)
-
app/main/controllers/privacy/RTMediaPrivacy.php (modified) (2 diffs)
-
app/main/controllers/template/RTMediaNav.php (modified) (2 diffs)
-
app/main/controllers/template/RTMediaUploadTemplate.php (modified) (1 diff)
-
app/main/controllers/template/rt-template-functions.php (modified) (2 diffs)
-
app/main/controllers/upload/RTMediaUploadView.php (modified) (3 diffs)
-
app/main/controllers/upload/processors/RTMediaUploadFile.php (modified) (4 diffs)
-
app/main/routers/RTMediaRouter.php (modified) (1 diff)
-
app/main/routers/query/RTMediaQuery.php (modified) (1 diff)
-
app/schema/rtm_api.schema (added)
-
index.php (modified) (3 diffs)
-
languages/rtmedia-da_DA.mo (modified) (previous)
-
languages/rtmedia-ru_RU.mo (added)
-
languages/rtmedia.mo (modified) (previous)
-
languages/rtmedia.po (modified) (31 diffs)
-
readme.txt (modified) (4 diffs)
-
templates/media/media-gallery.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buddypress-media/trunk/app/assets/js/rtMedia.backbone.js
r847076 r854592 796 796 //$("#div-attache-rtmedia").hide(); 797 797 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', []); 798 799 } 799 800 $("#whats-new-post-in").removeAttr('disabled'); -
buddypress-media/trunk/app/helper/RTMediaModel.php
r847076 r854592 78 78 $tmpVal = isset ( $colvalue[ 'value' ] ) ? $colvalue[ 'value' ] : $colvalue; 79 79 $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 } 81 83 $where .= " AND {$this->table_name}.{$colname} {$compare} {$col_val_comapare}"; 82 84 } … … 117 119 $sql .= $limit; 118 120 } 119 120 121 if( ! $count_flag ) 121 122 return $wpdb->get_results ( $sql ); -
buddypress-media/trunk/app/main/RTMedia.php
r847076 r854592 357 357 60 => __('<strong>Private</strong> - Visible only to the user', 'rtmedia'), 358 358 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'), 360 360 0 => __('<strong>Public</strong> - Visible to the world', 'rtmedia') 361 361 ) … … 686 686 global $rtmedia_ajax; 687 687 $rtmedia_ajax = new RTMediaAJAX(); 688 //API Classes 689 global $rtmediajsonapi; 690 $rtmediajsonapi = new RTMediaJsonApi(); 688 691 689 692 do_action('bp_media_init'); // legacy For plugin using this actions -
buddypress-media/trunk/app/main/controllers/activity/RTMediaActivity.php
r847076 r854592 57 57 $media_details = array_slice( $media_details, 0, $limitActivityFeed, true); 58 58 $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; 60 61 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 . '">'; 62 63 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">'; 65 66 66 $ html.= $this->media ( $media );67 $li_content .= $this->media ( $media ); 67 68 68 $ html.= '</div>';69 $li_content .= '</div>'; 69 70 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 . '">'; 72 73 if ( $media->media_type != 'photo' ) 73 $ html.= '<a href="' . get_rtmedia_permalink ( $media->id ) . '">';74 $li_content .= '<a href="' . get_rtmedia_permalink ( $media->id ) . '">'; 74 75 75 $ html.= $media->media_title;76 $li_content .= $media->media_title; 76 77 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>'; 80 81 if ( $media->media_type == 'photo' ) 81 $ html.= '</a>';82 $li_content .= '</a>'; 82 83 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++; 87 89 } 90 $html .= '<ul class="rtmedia-list '.$rtmedia_activity_ul_class.' rtmedia-activity-media-length-'.$count.'">'; 91 $html .= $li_content; 88 92 $html .= '</ul>'; 89 93 $html .= '</div>'; -
buddypress-media/trunk/app/main/controllers/media/RTMediaAlbum.php
r830174 r854592 127 127 function get_current_author () { 128 128 129 return get_current_user_id ();129 return apply_filters('rtmedia_current_user', get_current_user_id()); 130 130 } 131 131 -
buddypress-media/trunk/app/main/controllers/privacy/RTMediaPrivacy.php
r824736 r854592 28 28 } 29 29 } 30 30 31 31 function edit_media_privacy_ui($echo = true) { 32 32 $privacy = ""; … … 247 247 ?> 248 248 <form method='post'> 249 <div class=" ">249 <div class="rtm_bp_default_privacy"> 250 250 <div class="section"> 251 251 <div class="columns large-2"><h2><?php _e( "Default Privacy" , "rtmedia" ) ; ?></h2></div> -
buddypress-media/trunk/app/main/controllers/template/RTMediaNav.php
r847076 r854592 34 34 $profile_counts = $this->actual_counts ( $bp->displayed_user->id ); 35 35 } 36 36 $tab_position = apply_filters('rtmedia_media_tab_position',99); 37 37 if ( $rtmedia->options[ "buddypress_enableOnProfile" ] != 0 ) { 38 38 bp_core_new_nav_item ( array( … … 40 40 'slug' => RTMEDIA_MEDIA_SLUG, 41 41 'screen_function' => array( $this, 'media_screen' ), 42 'default_subnav_slug' => 'all' 42 'default_subnav_slug' => 'all', 43 'position' => $tab_position 43 44 ) ); 44 45 } -
buddypress-media/trunk/app/main/controllers/template/RTMediaUploadTemplate.php
r785106 r854592 31 31 $params = array( 32 32 'url' => 'upload', 33 'runtimes' => 'gears,html5,flash, silverlight,browserplus',33 'runtimes' => 'gears,html5,flash,browserplus,html4', 34 34 'browse_button' => 'browse-button', 35 35 'container' => 'bpm-file_upload-ui', -
buddypress-media/trunk/app/main/controllers/template/rt-template-functions.php
r847076 r854592 376 376 } 377 377 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" ){ 379 379 $media = $model->get_media ( array( 'album_id' => $id, 'media_type' => 'photo', 'media_author' => $rtmedia_query->query['context_id'] ), 0, 1 ); 380 380 } else { … … 1365 1365 1366 1366 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>"; 1368 1368 return $options; 1369 1369 -
buddypress-media/trunk/app/main/controllers/upload/RTMediaUploadView.php
r828205 r854592 48 48 49 49 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>'; 51 51 } 52 52 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>'; 54 54 } 55 55 } … … 57 57 if( is_rtmedia_privacy_enable () && ( ! isset( $rtmedia_query->is_upload_shortcode ) || $rtmedia_query->is_upload_shortcode === false) ) { 58 58 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 60 60 $privacy = "<input type='hidden' name='privacy' value='0'/>"; 61 }else { 61 }else { 62 62 $up_privacy = new RTMediaPrivacy(); 63 63 $up_privacy = $up_privacy->select_privacy_ui( false, 'rtSelectPrivacy') ; … … 70 70 'file_upload' => array( 71 71 'default' => array( 'title' => __( 'File Upload', 'rtmedia' ), 72 'content' => 72 'content' => 73 73 '<div id="rtmedia-upload-container" >' 74 74 . '<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>" 76 76 . '<div class="rtm-select-files"><input id="rtMedia-upload-button" value="' . __( "Select your files", "rtmedia" ) . '" type="button" class="rtmedia-upload-input rtmedia-file" />' 77 77 . '<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 75 75 if ( $this->uploaded[ "context" ] != 'group' ) { 76 76 $rtmedia_upload_prefix = 'users/'; 77 $id = get_current_user_id ();77 $id = apply_filters('rtmedia_current_user', get_current_user_id()); 78 78 } else { 79 79 $rtmedia_upload_prefix = 'groups/'; … … 83 83 if ( $rtmedia_interaction->context->type != 'group' ) { 84 84 $rtmedia_upload_prefix = 'users/'; 85 $id = get_current_user_id ();85 $id = apply_filters('rtmedia_current_user', get_current_user_id()); 86 86 } else { 87 87 $rtmedia_upload_prefix = 'groups/'; … … 89 89 } 90 90 } 91 92 91 93 92 if( strpos ( $upload_dir[ 'path' ] , 'rtMedia/' . $rtmedia_upload_prefix ) === false ){ … … 100 99 . 'rtMedia/' . $rtmedia_upload_prefix . $id 101 100 . $upload_dir[ 'subdir' ]; 102 } 101 } 103 102 $upload_dir = apply_filters("rtmedia_filter_upload_dir",$upload_dir); 104 105 103 return $upload_dir; 106 104 } -
buddypress-media/trunk/app/main/routers/RTMediaRouter.php
r830174 r854592 72 72 function is_template () { 73 73 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 } 75 85 $return = isset ( $wp_query->query_vars[ $this->slug ] ); 76 86 $return = apply_filters('rtmedia_return_is_template',$return,$this->slug); -
buddypress-media/trunk/app/main/routers/query/RTMediaQuery.php
r847076 r854592 497 497 function get_user () { 498 498 if ( is_user_logged_in () ) { 499 $user = get_current_user_id ();499 $user = apply_filters('rtmedia_current_user', get_current_user_id()); 500 500 } else { 501 501 $user = 0; -
buddypress-media/trunk/index.php
r847489 r854592 5 5 Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media 6 6 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.17 Version: 3.6 8 8 Author: rtCamp 9 9 Text Domain: rtmedia … … 56 56 if ( ! defined ( 'RTMEDIA_BOWER_COMPONENTS_URL' ) ) { 57 57 /** 58 * The url to the foundation resources 58 * The url to the foundation resources 59 59 * 60 60 */ … … 103 103 'app/log/' . $class_name . '.php', 104 104 'app/importers/' . $class_name . '.php', 105 'app/main/controllers/api/' . $class_name . '.php', 105 106 ); 106 107 foreach ( $rtlibpath as $path ) { -
buddypress-media/trunk/languages/rtmedia.po
r847076 r854592 3 3 "Project-Id-Version: BuddyPress Media\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 1-28 22:11+0530\n"6 "PO-Revision-Date: 2014-0 1-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" 7 7 "Last-Translator: faishal <[email protected]>\n" 8 8 "Language-Team: rtCamp <[email protected]>\n" … … 91 91 msgstr "" 92 92 93 #: app/admin/RTMediaAdmin.php:323 app/admin/RTMediaAdmin.php:80 494 #: app/admin/RTMediaAdmin.php:80 593 #: app/admin/RTMediaAdmin.php:323 app/admin/RTMediaAdmin.php:805 94 #: app/admin/RTMediaAdmin.php:806 95 95 msgid "rtMedia" 96 96 msgstr "" 97 97 98 98 #: app/admin/RTMediaAdmin.php:329 app/admin/RTMediaAdmin.php:332 99 #: app/admin/RTMediaAdmin.php:457 app/admin/RTMediaAdmin.php:82 699 #: app/admin/RTMediaAdmin.php:457 app/admin/RTMediaAdmin.php:827 100 100 msgid "Settings" 101 101 msgstr "" 102 102 103 103 #: app/admin/RTMediaAdmin.php:339 app/admin/RTMediaAdmin.php:342 104 #: app/admin/RTMediaAdmin.php:458 app/admin/RTMediaAdmin.php:83 1104 #: app/admin/RTMediaAdmin.php:458 app/admin/RTMediaAdmin.php:832 105 105 msgid "Addons" 106 106 msgstr "" 107 107 108 108 #: app/admin/RTMediaAdmin.php:349 app/admin/RTMediaAdmin.php:352 109 #: app/admin/RTMediaAdmin.php:459 app/admin/RTMediaAdmin.php:84 6109 #: app/admin/RTMediaAdmin.php:459 app/admin/RTMediaAdmin.php:847 110 110 #: app/helper/RTMediaSettings.php:133 111 111 msgid "Support" … … 113 113 114 114 #: app/admin/RTMediaAdmin.php:359 app/admin/RTMediaAdmin.php:362 115 #: app/admin/RTMediaAdmin.php:460 app/admin/RTMediaAdmin.php:83 6115 #: app/admin/RTMediaAdmin.php:460 app/admin/RTMediaAdmin.php:837 116 116 msgid "Themes" 117 117 msgstr "" 118 118 119 119 #: app/admin/RTMediaAdmin.php:369 app/admin/RTMediaAdmin.php:372 120 #: app/admin/RTMediaAdmin.php:461 app/admin/RTMediaAdmin.php:84 1120 #: app/admin/RTMediaAdmin.php:461 app/admin/RTMediaAdmin.php:842 121 121 msgid "Hire Us" 122 122 msgstr "" … … 202 202 msgstr "" 203 203 204 #: app/admin/RTMediaAdmin.php:75 1204 #: app/admin/RTMediaAdmin.php:752 205 205 msgid "Save Settings" 206 206 msgstr "" 207 207 208 #: app/admin/RTMediaAdmin.php:91 3 app/admin/RTMediaAdmin.php:914208 #: app/admin/RTMediaAdmin.php:914 app/admin/RTMediaAdmin.php:915 209 209 msgid "Other Settings" 210 210 msgstr "" 211 211 212 #: app/admin/RTMediaAdmin.php:92 2 app/admin/RTMediaAdmin.php:923212 #: app/admin/RTMediaAdmin.php:923 app/admin/RTMediaAdmin.php:924 213 213 msgid "Display" 214 214 msgstr "" 215 215 216 #: app/admin/RTMediaAdmin.php:93 3216 #: app/admin/RTMediaAdmin.php:934 217 217 msgid "rtMedia BuddyPress" 218 218 msgstr "" 219 219 220 #: app/admin/RTMediaAdmin.php:93 4220 #: app/admin/RTMediaAdmin.php:935 221 221 msgid "BuddyPress" 222 222 msgstr "" 223 223 224 #: app/admin/RTMediaAdmin.php:94 2224 #: app/admin/RTMediaAdmin.php:943 225 225 msgid "rtMedia Types" 226 226 msgstr "" 227 227 228 #: app/admin/RTMediaAdmin.php:94 3228 #: app/admin/RTMediaAdmin.php:944 229 229 msgid "Types" 230 230 msgstr "" 231 231 232 #: app/admin/RTMediaAdmin.php:95 0232 #: app/admin/RTMediaAdmin.php:951 233 233 msgid "rtMedia Sizes" 234 234 msgstr "" 235 235 236 #: app/admin/RTMediaAdmin.php:95 1236 #: app/admin/RTMediaAdmin.php:952 237 237 msgid "Image Sizes" 238 238 msgstr "" 239 239 240 #: app/admin/RTMediaAdmin.php:95 8240 #: app/admin/RTMediaAdmin.php:959 241 241 msgid "rtMedia Privacy" 242 242 msgstr "" 243 243 244 #: app/admin/RTMediaAdmin.php:9 59244 #: app/admin/RTMediaAdmin.php:960 245 245 #: app/main/controllers/privacy/RTMediaPrivacy.php:268 246 246 msgid "Privacy" 247 247 msgstr "" 248 248 249 #: app/admin/RTMediaAdmin.php:96 5249 #: app/admin/RTMediaAdmin.php:966 250 250 msgid "rtMedia Custom CSS" 251 251 msgstr "" 252 252 253 #: app/admin/RTMediaAdmin.php:96 6253 #: app/admin/RTMediaAdmin.php:967 254 254 msgid "Custom CSS" 255 255 msgstr "" 256 256 257 #: app/admin/RTMediaAdmin.php:107 1257 #: app/admin/RTMediaAdmin.php:1072 258 258 #, php-format 259 msgid "I use @buddypressmedia http:// goo.gl/8Upmvon %s"260 msgstr "" 261 262 #: app/admin/RTMediaAdmin.php:107 5259 msgid "I use @buddypressmedia http://rt.cx/rtmedia on %s" 260 msgstr "" 261 262 #: app/admin/RTMediaAdmin.php:1076 263 263 msgid "Post to Twitter Now" 264 264 msgstr "" 265 265 266 #: app/admin/RTMediaAdmin.php:107 5266 #: app/admin/RTMediaAdmin.php:1076 267 267 msgid "Post to Twitter" 268 268 msgstr "" 269 269 270 #: app/admin/RTMediaAdmin.php:107 6270 #: app/admin/RTMediaAdmin.php:1077 271 271 msgid "Share on Facebook Now" 272 272 msgstr "" 273 273 274 #: app/admin/RTMediaAdmin.php:107 6274 #: app/admin/RTMediaAdmin.php:1077 275 275 msgid "Share on Facebook" 276 276 msgstr "" 277 277 278 #: app/admin/RTMediaAdmin.php:107 7278 #: app/admin/RTMediaAdmin.php:1078 279 279 msgid "Rate rtMedia on Wordpress.org" 280 280 msgstr "" 281 281 282 #: app/admin/RTMediaAdmin.php:107 7282 #: app/admin/RTMediaAdmin.php:1078 283 283 msgid "Rate on Wordpress.org" 284 284 msgstr "" 285 285 286 #: app/admin/RTMediaAdmin.php:107 8286 #: app/admin/RTMediaAdmin.php:1079 287 287 msgid "Subscribe to our feeds" 288 288 msgstr "" 289 289 290 #: app/admin/RTMediaAdmin.php:107 8290 #: app/admin/RTMediaAdmin.php:1079 291 291 msgid "Subscribe to our Feeds" 292 292 msgstr "" 293 293 294 #: app/admin/RTMediaAdmin.php:1084 294 #: app/admin/RTMediaAdmin.php:1080 295 msgid "Add link to footer" 296 msgstr "" 297 298 #: app/admin/RTMediaAdmin.php:1086 295 299 msgid "Spread the Word" 296 300 msgstr "" 297 301 298 #: app/admin/RTMediaAdmin.php:111 6 app/admin/RTMediaAdmin.php:1119302 #: app/admin/RTMediaAdmin.php:1118 app/admin/RTMediaAdmin.php:1121 299 303 msgid "Subscribe" 300 304 msgstr "" 301 305 302 #: app/admin/RTMediaAdmin.php:114 1306 #: app/admin/RTMediaAdmin.php:1143 303 307 msgid "Thank you for your time." 304 308 msgstr "" 305 309 306 #: app/admin/RTMediaAdmin.php:115 3310 #: app/admin/RTMediaAdmin.php:1155 307 311 msgid "Premium Add-ons" 308 312 msgstr "" 309 313 310 #: app/admin/RTMediaAdmin.php:116 7314 #: app/admin/RTMediaAdmin.php:1169 311 315 #, php-format 312 316 msgid "" … … 316 320 msgstr "" 317 321 318 #: app/admin/RTMediaAdmin.php:11 68 app/admin/RTMediaAdmin.php:1179319 #: app/admin/RTMediaAdmin.php:11 88322 #: app/admin/RTMediaAdmin.php:1170 app/admin/RTMediaAdmin.php:1181 323 #: app/admin/RTMediaAdmin.php:1190 320 324 msgid "Recommended" 321 325 msgstr "" 322 326 323 #: app/admin/RTMediaAdmin.php:11 68 app/admin/RTMediaAdmin.php:1179324 #: app/admin/RTMediaAdmin.php:11 88327 #: app/admin/RTMediaAdmin.php:1170 app/admin/RTMediaAdmin.php:1181 328 #: app/admin/RTMediaAdmin.php:1190 325 329 msgid "Update Network Settings Automatically" 326 330 msgstr "" 327 331 328 #: app/admin/RTMediaAdmin.php:11 78332 #: app/admin/RTMediaAdmin.php:1180 329 333 #, php-format 330 334 msgid "" … … 334 338 msgstr "" 335 339 336 #: app/admin/RTMediaAdmin.php:118 7340 #: app/admin/RTMediaAdmin.php:1189 337 341 #, php-format 338 342 msgid "" … … 342 346 msgstr "" 343 347 344 #: app/admin/RTMediaAdmin.php:120 2348 #: app/admin/RTMediaAdmin.php:1204 345 349 msgid "Network settings updated successfully." 346 350 msgstr "" 347 351 348 #: app/admin/RTMediaAdmin.php:130 5352 #: app/admin/RTMediaAdmin.php:1307 349 353 msgid "Video is sent to generate thumbnails." 350 354 msgstr "" 351 355 352 #: app/admin/RTMediaAdmin.php:13 08356 #: app/admin/RTMediaAdmin.php:1310 353 357 msgid "Video can't be sent to generate thumbnails." 354 358 msgstr "" 355 359 356 #: app/admin/RTMediaAdmin.php:139 0360 #: app/admin/RTMediaAdmin.php:1392 357 361 msgid "" 358 362 "rtMedia just updated to Foundation 5. Please update rtMedia template files " … … 360 364 msgstr "" 361 365 362 #: app/admin/RTMediaAdmin.php:139 0app/importers/RTMediaMigration.php:60366 #: app/admin/RTMediaAdmin.php:1392 app/importers/RTMediaMigration.php:60 363 367 msgid "Hide" 364 368 msgstr "" … … 611 615 msgstr "" 612 616 613 #: app/helper/RTMediaAddon.php: 96617 #: app/helper/RTMediaAddon.php:117 614 618 msgid "rtMedia Photo Tagging" 615 619 msgstr "" 616 620 617 #: app/helper/RTMediaAddon.php: 99621 #: app/helper/RTMediaAddon.php:120 618 622 msgid "" 619 623 "rtMedia Photo Tagging add-on enables tagging on photos uploaded using " … … 621 625 msgstr "" 622 626 623 #: app/helper/RTMediaAddon.php:1 00 app/helper/RTMediaAddon.php:110627 #: app/helper/RTMediaAddon.php:121 app/helper/RTMediaAddon.php:131 624 628 #: app/importers/BPMediaAlbumimporter.php:177 625 629 msgid "Important" 626 630 msgstr "" 627 631 628 #: app/helper/RTMediaAddon.php:1 00 app/helper/RTMediaAddon.php:110632 #: app/helper/RTMediaAddon.php:121 app/helper/RTMediaAddon.php:131 629 633 #: app/importers/BPMediaAlbumimporter.php:177 630 634 msgid "" … … 632 636 msgstr "" 633 637 634 #: app/helper/RTMediaAddon.php:1 06638 #: app/helper/RTMediaAddon.php:127 635 639 msgid "rtMedia Instagram" 636 640 msgstr "" 637 641 638 #: app/helper/RTMediaAddon.php:1 09642 #: app/helper/RTMediaAddon.php:130 639 643 msgid "" 640 644 "rtMedia Instagram adds Instagram like filters to images uploaded with " … … 642 646 msgstr "" 643 647 644 #: app/helper/RTMediaAddon.php:1 16648 #: app/helper/RTMediaAddon.php:137 645 649 msgid "rtMedia Kaltura Add-on" 646 650 msgstr "" 647 651 648 #: app/helper/RTMediaAddon.php:1 19652 #: app/helper/RTMediaAddon.php:140 649 653 msgid "Add support for more video formats using Kaltura video solution." 650 654 msgstr "" 651 655 652 #: app/helper/RTMediaAddon.php:1 20656 #: app/helper/RTMediaAddon.php:141 653 657 msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise." 654 658 msgstr "" 655 659 656 #: app/helper/RTMediaAddon.php:1 26660 #: app/helper/RTMediaAddon.php:147 657 661 msgid "rtMedia FFMPEG Add-on" 658 662 msgstr "" 659 663 660 #: app/helper/RTMediaAddon.php:1 29664 #: app/helper/RTMediaAddon.php:150 661 665 msgid "" 662 666 "Add supports for more audio & video formats using open-source media-node." 663 667 msgstr "" 664 668 665 #: app/helper/RTMediaAddon.php:1 30669 #: app/helper/RTMediaAddon.php:151 666 670 msgid "Media node comes with automated setup script for Ubuntu/Debian." 667 671 msgstr "" 668 672 669 #: app/helper/RTMediaAddon.php:1 42673 #: app/helper/RTMediaAddon.php:163 670 674 msgid "rtMedia Addons for Photos" 671 675 msgstr "" 672 676 673 #: app/helper/RTMediaAddon.php:1 46677 #: app/helper/RTMediaAddon.php:167 674 678 msgid "rtMedia Addons for Audio/Video" 675 679 msgstr "" 676 680 677 #: app/helper/RTMediaAddon.php:1 60681 #: app/helper/RTMediaAddon.php:181 678 682 msgid "Coming Soon !!" 679 683 msgstr "" 680 684 681 #: app/helper/RTMediaAddon.php: 199app/importers/BPMediaAlbumimporter.php:181685 #: app/helper/RTMediaAddon.php:220 app/importers/BPMediaAlbumimporter.php:181 682 686 msgid "Buy Now" 683 687 msgstr "" 684 688 685 #: app/helper/RTMediaAddon.php:2 00app/importers/BPMediaAlbumimporter.php:182689 #: app/helper/RTMediaAddon.php:221 app/importers/BPMediaAlbumimporter.php:182 686 690 msgid "Live Demo" 687 691 msgstr "" … … 765 769 msgstr "" 766 770 767 #: app/helper/RTMediaSettings.php:288 app/helper/RTMediaSupport.php:3 47771 #: app/helper/RTMediaSettings.php:288 app/helper/RTMediaSupport.php:367 768 772 msgid "" 769 773 "If your site has some issues due to BuddyPress Media and you want one on one " … … 774 778 msgstr "" 775 779 776 #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:3 48780 #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:368 777 781 msgid "" 778 782 "If you have any suggestions, enhancements or bug reports, then you can open " … … 782 786 783 787 #: app/helper/RTMediaSupport.php:40 app/helper/RTMediaSupport.php:41 784 #: app/helper/RTMediaSupport.php:1 08788 #: app/helper/RTMediaSupport.php:128 785 789 msgid "Premium Support" 786 790 msgstr "" 787 791 788 792 #: app/helper/RTMediaSupport.php:46 app/helper/RTMediaSupport.php:47 789 #: app/helper/RTMediaSupport.php:5 02793 #: app/helper/RTMediaSupport.php:522 790 794 msgid "Debug Info" 791 795 msgstr "" … … 796 800 msgstr "" 797 801 798 #: app/helper/RTMediaSupport.php:1 06802 #: app/helper/RTMediaSupport.php:126 799 803 msgid "Service" 800 804 msgstr "" 801 805 802 #: app/helper/RTMediaSupport.php:1 09806 #: app/helper/RTMediaSupport.php:129 803 807 msgid "Bug Report" 804 808 msgstr "" 805 809 806 #: app/helper/RTMediaSupport.php:1 10810 #: app/helper/RTMediaSupport.php:130 807 811 msgid "New Feature" 808 812 msgstr "" 809 813 810 #: app/helper/RTMediaSupport.php: 190814 #: app/helper/RTMediaSupport.php:210 811 815 msgid "by" 812 816 msgstr "" 813 817 814 #: app/helper/RTMediaSupport.php: 190818 #: app/helper/RTMediaSupport.php:210 815 819 msgid "version" 816 820 msgstr "" 817 821 818 #: app/helper/RTMediaSupport.php:3 05822 #: app/helper/RTMediaSupport.php:325 819 823 msgid "There is no media found to migrate." 820 824 msgstr "" 821 825 822 #: app/helper/RTMediaSupport.php:3 11 app/helper/RTMediaThemes.php:95826 #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116 823 827 msgid "Click" 824 828 msgstr "" 825 829 826 #: app/helper/RTMediaSupport.php:3 11 app/helper/RTMediaThemes.php:95830 #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116 827 831 msgid "here" 828 832 msgstr "" 829 833 830 #: app/helper/RTMediaSupport.php:3 11834 #: app/helper/RTMediaSupport.php:331 831 835 msgid "here to migrate media from rtMedia 2.x to rtMedia 3.0+." 832 836 msgstr "" 833 837 834 #: app/helper/RTMediaSupport.php:3 35838 #: app/helper/RTMediaSupport.php:355 835 839 msgid "Submit a Bug Report" 836 840 msgstr "" 837 841 838 #: app/helper/RTMediaSupport.php:3 38842 #: app/helper/RTMediaSupport.php:358 839 843 msgid "Submit a New Feature Request" 840 844 msgstr "" 841 845 842 #: app/helper/RTMediaSupport.php:3 41846 #: app/helper/RTMediaSupport.php:361 843 847 msgid "Submit a Premium Support Request" 844 848 msgstr "" 845 849 846 #: app/helper/RTMediaSupport.php:3 58850 #: app/helper/RTMediaSupport.php:378 847 851 msgid "Name" 848 852 msgstr "" 849 853 850 #: app/helper/RTMediaSupport.php:3 61854 #: app/helper/RTMediaSupport.php:381 851 855 msgid "Email" 852 856 msgstr "" 853 857 854 #: app/helper/RTMediaSupport.php:3 64858 #: app/helper/RTMediaSupport.php:384 855 859 msgid "Website" 856 860 msgstr "" 857 861 858 #: app/helper/RTMediaSupport.php:3 67862 #: app/helper/RTMediaSupport.php:387 859 863 msgid "Phone" 860 864 msgstr "" 861 865 862 #: app/helper/RTMediaSupport.php:3 70866 #: app/helper/RTMediaSupport.php:390 863 867 msgid "Subject" 864 868 msgstr "" 865 869 866 #: app/helper/RTMediaSupport.php:3 73 templates/media/album-single-edit.php:16870 #: app/helper/RTMediaSupport.php:393 templates/media/album-single-edit.php:16 867 871 #: templates/media/media-single-edit.php:19 868 872 msgid "Details" 869 873 msgstr "" 870 874 871 #: app/helper/RTMediaSupport.php: 384875 #: app/helper/RTMediaSupport.php:404 872 876 msgid "Additional Information" 873 877 msgstr "" 874 878 875 #: app/helper/RTMediaSupport.php: 389879 #: app/helper/RTMediaSupport.php:409 876 880 msgid "Your WP Admin Login:" 877 881 msgstr "" 878 882 879 #: app/helper/RTMediaSupport.php: 392883 #: app/helper/RTMediaSupport.php:412 880 884 msgid "Your WP Admin password:" 881 885 msgstr "" 882 886 883 #: app/helper/RTMediaSupport.php: 395887 #: app/helper/RTMediaSupport.php:415 884 888 msgid "Your SSH / FTP host:" 885 889 msgstr "" 886 890 887 #: app/helper/RTMediaSupport.php: 398891 #: app/helper/RTMediaSupport.php:418 888 892 msgid "Your SSH / FTP login:" 889 893 msgstr "" 890 894 891 #: app/helper/RTMediaSupport.php:4 01895 #: app/helper/RTMediaSupport.php:421 892 896 msgid "Your SSH / FTP password:" 893 897 msgstr "" 894 898 895 #: app/helper/RTMediaSupport.php:4 32899 #: app/helper/RTMediaSupport.php:452 896 900 msgid "rtMedia Premium Support Request from" 897 901 msgstr "" 898 902 899 #: app/helper/RTMediaSupport.php:4 35903 #: app/helper/RTMediaSupport.php:455 900 904 msgid "rtMedia New Feature Request from" 901 905 msgstr "" 902 906 903 #: app/helper/RTMediaSupport.php:4 38907 #: app/helper/RTMediaSupport.php:458 904 908 msgid "rtMedia Bug Report from" 905 909 msgstr "" 906 910 907 #: app/helper/RTMediaSupport.php:4 41911 #: app/helper/RTMediaSupport.php:461 908 912 msgid "rtMedia Contact from" 909 913 msgstr "" 910 914 911 #: app/helper/RTMediaSupport.php:5 25915 #: app/helper/RTMediaSupport.php:545 912 916 msgid "Thank you for your Feedback/Suggestion." 913 917 msgstr "" 914 918 915 #: app/helper/RTMediaSupport.php:5 27919 #: app/helper/RTMediaSupport.php:547 916 920 msgid "Thank you for posting your support request." 917 921 msgstr "" 918 922 919 #: app/helper/RTMediaSupport.php:5 28923 #: app/helper/RTMediaSupport.php:548 920 924 msgid "We will get back to you shortly." 921 925 msgstr "" 922 926 923 #: app/helper/RTMediaSupport.php:5 33927 #: app/helper/RTMediaSupport.php:553 924 928 msgid "Your server failed to send an email." 925 929 msgstr "" 926 930 927 #: app/helper/RTMediaSupport.php:5 34931 #: app/helper/RTMediaSupport.php:554 928 932 msgid "Kindly contact your server support to fix this." 929 933 msgstr "" 930 934 931 #: app/helper/RTMediaSupport.php:5 35935 #: app/helper/RTMediaSupport.php:555 932 936 #, php-format 933 937 msgid "You can alternatively create a support request <a href=\"%s\">here</a>" … … 942 946 msgstr "" 943 947 944 #: app/helper/RTMediaThemes.php: 77948 #: app/helper/RTMediaThemes.php:96 945 949 msgid "Coming Soon..." 946 950 msgstr "" 947 951 948 #: app/helper/RTMediaThemes.php: 78952 #: app/helper/RTMediaThemes.php:97 949 953 msgid "We are working on some rtMedia themes which will be available shortly." 950 954 msgstr "" 951 955 952 #: app/helper/RTMediaThemes.php: 87956 #: app/helper/RTMediaThemes.php:107 953 957 msgid "" 954 958 "These are the third party themes. For any issues or queries regarding these " … … 956 960 msgstr "" 957 961 958 #: app/helper/RTMediaThemes.php: 94962 #: app/helper/RTMediaThemes.php:115 959 963 msgid "" 960 964 "SweetDate is a unique, clean and modern Premium Wordpress theme. It is " … … 964 968 msgstr "" 965 969 966 #: app/helper/RTMediaThemes.php: 95970 #: app/helper/RTMediaThemes.php:116 967 971 msgid "for preview." 968 972 msgstr "" 969 973 970 #: app/helper/RTMediaThemes.php:1 00974 #: app/helper/RTMediaThemes.php:122 971 975 msgid "Are you a developer?" 972 976 msgstr "" 973 977 974 #: app/helper/RTMediaThemes.php:1 01978 #: app/helper/RTMediaThemes.php:123 975 979 msgid "" 976 980 "If you have developed a rtMedia compatible theme and would like it to list " … … 978 982 msgstr "" 979 983 980 #: app/helper/RTMediaThemes.php:1 01984 #: app/helper/RTMediaThemes.php:123 981 985 msgid "[email protected]" 982 986 msgstr "" … … 1077 1081 #: app/importers/BPMediaAlbumimporter.php:150 1078 1082 #, php-format 1079 msgid "I just imported bp-album to @buddypressmedia http:// goo.gl/8Upmvon %s"1083 msgid "I just imported bp-album to @buddypressmedia http://rt.cx/rtmedia on %s" 1080 1084 msgstr "" 1081 1085 … … 1202 1206 1203 1207 #: app/main/RTMedia.php:359 1204 msgid "<strong> Users</strong> - Visible to registered users"1208 msgid "<strong>Logged in Users</strong> - Visible to registered users" 1205 1209 msgstr "" 1206 1210 … … 1209 1213 msgstr "" 1210 1214 1211 #: app/main/RTMedia.php:517 app/main/controllers/template/RTMediaNav.php:14 21215 #: app/main/RTMedia.php:517 app/main/controllers/template/RTMediaNav.php:143 1212 1216 msgid "All" 1213 1217 msgstr "" … … 1220 1224 #: app/main/RTMedia.php:529 app/main/controllers/media/RTMediaAlbum.php:53 1221 1225 #: app/main/controllers/media/RTMediaAlbum.php:65 1222 #: app/main/controllers/template/RTMediaNav.php:9 11223 #: app/main/controllers/template/RTMediaNav.php:16 31226 #: app/main/controllers/template/RTMediaNav.php:92 1227 #: app/main/controllers/template/RTMediaNav.php:164 1224 1228 msgid "Albums" 1225 1229 msgstr "" … … 1235 1239 msgstr "" 1236 1240 1237 #: app/main/RTMedia.php:7 291241 #: app/main/RTMedia.php:732 1238 1242 msgid "Wall Posts" 1239 1243 msgstr "" 1240 1244 1241 #: app/main/RTMedia.php:7 691245 #: app/main/RTMedia.php:772 1242 1246 msgid ": Can't Create Database table. Please check create table permission." 1243 1247 msgstr "" 1244 1248 1245 #: app/main/RTMedia.php:80 31249 #: app/main/RTMedia.php:806 1246 1250 msgid "Loading media" 1247 1251 msgstr "" 1248 1252 1249 #: app/main/RTMedia.php:80 41253 #: app/main/RTMedia.php:807 1250 1254 msgid "Please enter some content to post." 1251 1255 msgstr "" 1252 1256 1253 #: app/main/RTMedia.php:80 51257 #: app/main/RTMedia.php:808 1254 1258 msgid "Empty Comment is not allowed." 1255 1259 msgstr "" 1256 1260 1257 #: app/main/RTMedia.php:80 61261 #: app/main/RTMedia.php:809 1258 1262 msgid "Are you sure you want to delete this media?" 1259 1263 msgstr "" 1260 1264 1261 #: app/main/RTMedia.php:8 071265 #: app/main/RTMedia.php:810 1262 1266 msgid "Are you sure you want to delete this comment?" 1263 1267 msgstr "" 1264 1268 1265 #: app/main/RTMedia.php:8 081269 #: app/main/RTMedia.php:811 1266 1270 msgid "Are you sure you want to delete this Album?" 1267 1271 msgstr "" 1268 1272 1269 #: app/main/RTMedia.php:8 091273 #: app/main/RTMedia.php:812 1270 1274 msgid "Drop files here" 1271 1275 msgstr "" 1272 1276 1273 #: app/main/RTMedia.php:81 01277 #: app/main/RTMedia.php:813 1274 1278 msgid "album created successfully." 1275 1279 msgstr "" 1276 1280 1277 #: app/main/RTMedia.php:81 11281 #: app/main/RTMedia.php:814 1278 1282 msgid "Something went wrong. Please try again." 1279 1283 msgstr "" 1280 1284 1281 #: app/main/RTMedia.php:81 21285 #: app/main/RTMedia.php:815 1282 1286 msgid "Enter an album name." 1283 1287 msgstr "" 1284 1288 1285 #: app/main/RTMedia.php:81 31289 #: app/main/RTMedia.php:816 1286 1290 msgid "Max file Size Limit : " 1287 1291 msgstr "" 1288 1292 1289 #: app/main/RTMedia.php:81 41293 #: app/main/RTMedia.php:817 1290 1294 msgid "Allowed File Formats" 1291 1295 msgstr "" 1292 1296 1293 #: app/main/RTMedia.php:81 5templates/media/album-single-edit.php:581297 #: app/main/RTMedia.php:818 templates/media/album-single-edit.php:58 1294 1298 msgid "Select All Visible" 1295 1299 msgstr "" 1296 1300 1297 #: app/main/RTMedia.php:81 61301 #: app/main/RTMedia.php:819 1298 1302 msgid "Unselect All Visible" 1299 1303 msgstr "" 1300 1304 1301 #: app/main/RTMedia.php:8 171305 #: app/main/RTMedia.php:820 1302 1306 msgid "Please select some media." 1303 1307 msgstr "" 1304 1308 1305 #: app/main/RTMedia.php:8 181309 #: app/main/RTMedia.php:821 1306 1310 msgid "Are you sure you want to delete the selected medias?" 1307 1311 msgstr "" 1308 1312 1309 #: app/main/RTMedia.php:8 191313 #: app/main/RTMedia.php:822 1310 1314 msgid "Are you sure you want to move the selected medias?" 1311 1315 msgstr "" 1312 1316 1313 #: app/main/RTMedia.php:82 01317 #: app/main/RTMedia.php:823 1314 1318 msgid "Waiting" 1315 1319 msgstr "" 1316 1320 1317 #: app/main/RTMedia.php:82 11321 #: app/main/RTMedia.php:824 1318 1322 msgid "Uploaded" 1319 1323 msgstr "" 1320 1324 1321 #: app/main/RTMedia.php:82 21325 #: app/main/RTMedia.php:825 1322 1326 msgid "Uploading" 1323 1327 msgstr "" 1324 1328 1325 #: app/main/RTMedia.php:82 31329 #: app/main/RTMedia.php:826 1326 1330 msgid "Failed" 1327 1331 msgstr "" 1328 1332 1329 #: app/main/RTMedia.php:82 41333 #: app/main/RTMedia.php:827 1330 1334 msgid "Close" 1331 1335 msgstr "" 1332 1336 1333 #: app/main/RTMedia.php:82 51337 #: app/main/RTMedia.php:828 1334 1338 #: app/main/controllers/template/rt-template-functions.php:585 1335 1339 #: app/main/controllers/template/rt-template-functions.php:606 … … 1337 1341 msgstr "" 1338 1342 1339 #: app/main/RTMedia.php:82 61343 #: app/main/RTMedia.php:829 1340 1344 #: app/main/controllers/template/rt-template-functions.php:1129 1341 1345 #: app/main/controllers/template/rt-template-functions.php:1136 … … 1344 1348 msgstr "" 1345 1349 1346 #: app/main/RTMedia.php:8 27templates/media/media-single-edit.php:131350 #: app/main/RTMedia.php:830 templates/media/media-single-edit.php:13 1347 1351 msgid "Edit Media" 1348 1352 msgstr "" 1349 1353 1350 #: app/main/RTMedia.php:8 281354 #: app/main/RTMedia.php:831 1351 1355 msgid "Remove from queue" 1352 1356 msgstr "" 1353 1357 1354 #: app/main/RTMedia.php:8 291358 #: app/main/RTMedia.php:832 1355 1359 msgid "Add more files" 1356 1360 msgstr "" 1357 1361 1358 #: app/main/RTMedia.php:83 01362 #: app/main/RTMedia.php:833 1359 1363 msgid "File not supported" 1360 1364 msgstr "" 1361 1365 1362 #: app/main/RTMedia.php:83 11366 #: app/main/RTMedia.php:834 1363 1367 msgid "more" 1364 1368 msgstr "" 1365 1369 1366 #: app/main/RTMedia.php:83 21370 #: app/main/RTMedia.php:835 1367 1371 msgid "less" 1368 1372 msgstr "" 1369 1373 1370 #: app/main/RTMedia.php:83 31374 #: app/main/RTMedia.php:836 1371 1375 msgid "This media is uploaded. Are you sure you want to delete this media?" 1372 1376 msgstr "" … … 1374 1378 #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:146 1375 1379 msgid "Media Files" 1380 msgstr "" 1381 1382 #: app/main/controllers/api/RTMediaJsonApi.php:146 1383 msgid "username/password empty" 1384 msgstr "" 1385 1386 #: app/main/controllers/api/RTMediaJsonApi.php:149 1387 msgid "incorrect username" 1388 msgstr "" 1389 1390 #: app/main/controllers/api/RTMediaJsonApi.php:152 1391 msgid "incorrect password" 1392 msgstr "" 1393 1394 #: app/main/controllers/api/RTMediaJsonApi.php:155 1395 msgid "login success" 1396 msgstr "" 1397 1398 #: app/main/controllers/api/RTMediaJsonApi.php:201 1399 msgid "fields empty" 1400 msgstr "" 1401 1402 #: app/main/controllers/api/RTMediaJsonApi.php:204 1403 msgid "invalid email" 1404 msgstr "" 1405 1406 #: app/main/controllers/api/RTMediaJsonApi.php:207 1407 msgid "password do not match" 1408 msgstr "" 1409 1410 #: app/main/controllers/api/RTMediaJsonApi.php:210 1411 msgid "username already registered" 1412 msgstr "" 1413 1414 #: app/main/controllers/api/RTMediaJsonApi.php:213 1415 msgid "email already exists" 1416 msgstr "" 1417 1418 #: app/main/controllers/api/RTMediaJsonApi.php:216 1419 msgid "new user created" 1420 msgstr "" 1421 1422 #: app/main/controllers/api/RTMediaJsonApi.php:277 1423 msgid "email empty" 1424 msgstr "" 1425 1426 #: app/main/controllers/api/RTMediaJsonApi.php:280 1427 msgid "username/email not registered" 1428 msgstr "" 1429 1430 #: app/main/controllers/api/RTMediaJsonApi.php:283 1431 msgid "reset link sent" 1432 msgstr "" 1433 1434 #: app/main/controllers/api/RTMediaJsonApi.php:315 1435 msgid "" 1436 "Someone has asked to reset the password for the following site and username." 1437 msgstr "" 1438 1439 #: app/main/controllers/api/RTMediaJsonApi.php:317 1440 #, php-format 1441 msgid "Username: %s" 1442 msgstr "" 1443 1444 #: app/main/controllers/api/RTMediaJsonApi.php:318 1445 msgid "" 1446 "To reset your password visit the following address, otherwise just ignore " 1447 "this email and nothing will happen." 1448 msgstr "" 1449 1450 #: app/main/controllers/api/RTMediaJsonApi.php:321 1451 #, php-format 1452 msgid "[%s] Password Reset" 1453 msgstr "" 1454 1455 #: app/main/controllers/api/RTMediaJsonApi.php:336 1456 msgid "bp activities" 1457 msgstr "" 1458 1459 #: app/main/controllers/api/RTMediaJsonApi.php:339 1460 msgid "user activities" 1461 msgstr "" 1462 1463 #: app/main/controllers/api/RTMediaJsonApi.php:369 1464 msgid "comment content missing" 1465 msgstr "" 1466 1467 #: app/main/controllers/api/RTMediaJsonApi.php:372 1468 msgid "comment posted" 1469 msgstr "" 1470 1471 #: app/main/controllers/api/RTMediaJsonApi.php:419 1472 msgid "unliked media" 1473 msgstr "" 1474 1475 #: app/main/controllers/api/RTMediaJsonApi.php:422 1476 msgid "liked media" 1477 msgstr "" 1478 1479 #: app/main/controllers/api/RTMediaJsonApi.php:506 1480 msgid "no comments" 1481 msgstr "" 1482 1483 #: app/main/controllers/api/RTMediaJsonApi.php:509 1484 msgid "media comments" 1485 msgstr "" 1486 1487 #: app/main/controllers/api/RTMediaJsonApi.php:512 1488 msgid "my comments" 1489 msgstr "" 1490 1491 #: app/main/controllers/api/RTMediaJsonApi.php:562 1492 msgid "no likes" 1493 msgstr "" 1494 1495 #: app/main/controllers/api/RTMediaJsonApi.php:565 1496 msgid "media likes" 1497 msgstr "" 1498 1499 #: app/main/controllers/api/RTMediaJsonApi.php:607 1500 msgid "invalid comment/media id" 1501 msgstr "" 1502 1503 #: app/main/controllers/api/RTMediaJsonApi.php:610 1504 msgid "no comment id" 1505 msgstr "" 1506 1507 #: app/main/controllers/api/RTMediaJsonApi.php:613 1508 msgid "comment deleted" 1509 msgstr "" 1510 1511 #: app/main/controllers/api/RTMediaJsonApi.php:656 1512 msgid "no profile found" 1513 msgstr "" 1514 1515 #: app/main/controllers/api/RTMediaJsonApi.php:659 1516 msgid "profile fields" 1517 msgstr "" 1518 1519 #: app/main/controllers/api/RTMediaJsonApi.php:753 1520 msgid "follow user id missing" 1521 msgstr "" 1522 1523 #: app/main/controllers/api/RTMediaJsonApi.php:756 1524 msgid "started following" 1525 msgstr "" 1526 1527 #: app/main/controllers/api/RTMediaJsonApi.php:759 1528 msgid "already following" 1529 msgstr "" 1530 1531 #: app/main/controllers/api/RTMediaJsonApi.php:791 1532 msgid "unfollow id missing" 1533 msgstr "" 1534 1535 #: app/main/controllers/api/RTMediaJsonApi.php:794 1536 msgid "stopped following" 1537 msgstr "" 1538 1539 #: app/main/controllers/api/RTMediaJsonApi.php:797 1540 msgid "not following" 1541 msgstr "" 1542 1543 #: app/main/controllers/api/RTMediaJsonApi.php:829 1544 msgid "name/location empty" 1545 msgstr "" 1546 1547 #: app/main/controllers/api/RTMediaJsonApi.php:832 1548 msgid "profile updated" 1549 msgstr "" 1550 1551 #: app/main/controllers/api/RTMediaJsonApi.php:858 1552 #: app/main/controllers/api/RTMediaJsonApi.php:885 1553 msgid "no file" 1554 msgstr "" 1555 1556 #: app/main/controllers/api/RTMediaJsonApi.php:861 1557 #: app/main/controllers/api/RTMediaJsonApi.php:897 1558 msgid "upload failed, check size and file type" 1559 msgstr "" 1560 1561 #: app/main/controllers/api/RTMediaJsonApi.php:864 1562 msgid "avatar updated" 1563 msgstr "" 1564 1565 #: app/main/controllers/api/RTMediaJsonApi.php:888 1566 msgid "invalid file string" 1567 msgstr "" 1568 1569 #: app/main/controllers/api/RTMediaJsonApi.php:891 1570 msgid "image type missing" 1571 msgstr "" 1572 1573 #: app/main/controllers/api/RTMediaJsonApi.php:894 1574 msgid "no title" 1575 msgstr "" 1576 1577 #: app/main/controllers/api/RTMediaJsonApi.php:900 1578 msgid "media updated" 1579 msgstr "" 1580 1581 #: app/main/controllers/api/RTMediaJsonApi.php:1020 1582 msgid "media list" 1583 msgstr "" 1584 1585 #: app/main/controllers/api/RTMediaJsonApi.php:1023 1586 msgid "no media found for requested media type" 1587 msgstr "" 1588 1589 #: app/main/controllers/api/RTMediaJsonApi.php:1026 1590 msgid "media_type not allowed" 1591 msgstr "" 1592 1593 #: app/main/controllers/api/RTMediaJsonApi.php:1111 1594 msgid "single media" 1376 1595 msgstr "" 1377 1596 … … 1881 2100 msgstr "" 1882 2101 1883 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:20 32102 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:201 1884 2103 msgid "MP4 file you have uploaded is corrupt." 1885 2104 msgstr "" 1886 2105 1887 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:2 101888 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:21 52106 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:208 2107 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:213 1889 2108 msgid "" 1890 2109 "The MP4 file you have uploaded is using an unsupported video codec. " … … 1892 2111 msgstr "" 1893 2112 1894 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:2 202113 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:218 1895 2114 msgid "The MP4 file you have uploaded is not a video file." 1896 2115 msgstr "" 1897 2116 1898 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:23 22117 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:230 1899 2118 msgid "MP3 file you have uploaded is currupt." 1900 2119 msgstr "" 1901 2120 1902 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:23 91903 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:24 42121 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:237 2122 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:242 1904 2123 msgid "" 1905 2124 "The MP3 file you have uploaded is using an unsupported audio format. " … … 1907 2126 msgstr "" 1908 2127 1909 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:24 92128 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:247 1910 2129 msgid "The MP3 file you have uploaded is not an audio file." 1911 2130 msgstr "" 1912 2131 1913 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:25 72132 #: app/main/controllers/upload/processors/RTMediaUploadFile.php:255 1914 2133 msgid "" 1915 2134 "Media File you have tried to upload is not supported. Supported media files " -
buddypress-media/trunk/readme.txt
r847489 r854592 1 1 === 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 2 Contributors: rtcamp, rahul286, faishal, JoshuaAbenazer, gagan0123, saurabhshukla, desaiuditd, nitun.lanjewar, rittesh.patel, pushpak.pop, umesh.nevase, suhasgirgaonkar, neerukoul, hrishiv90, kanakiyajay, jarretc, tobiaskluge, rafaelfunchal, UmeshSingla 3 3 Donate link: http://rtcamp.com/donate/ 4 4 Tags: BuddyPress, media, multimedia, album, audio, songs, music, video, photo, image, upload, share, MediaElement.js, ffmpeg, kaltura, media-node, rtMedia, WordPress, bbPress … … 7 7 Requires at least: WordPress 3.6 8 8 Tested up to: WordPress 3.7 + BuddyPress 1.8.1 9 Stable tag: 3. 5.2.19 Stable tag: 3.6 10 10 11 11 Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices. … … 133 133 134 134 Please 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 135 139 136 140 = 3.5.2.1 = … … 688 692 == Upgrade Notice == 689 693 690 = 3. 5.2.1=691 Requires BuddyPress 1.7 or higher, if using BuddyPress. Admin UI bug fixes694 = 3.6 = 695 Requires BuddyPress 1.7 or higher, if using BuddyPress. rtMedia API added, updated russian translations, bug fixes. 692 696 693 697 == Sponsors == -
buddypress-media/trunk/templates/media/media-gallery.php
r828205 r854592 1 1 <div class="rtmedia-container"> 2 2 <?php do_action ( 'rtmedia_before_media_gallery' ); ?> 3 <?php 3 <?php 4 4 $title = get_rtmedia_gallery_title(); 5 5 global $rtmedia_query; 6 6 if( isset($rtmedia_query->is_gallery_shortcode) && $rtmedia_query->is_gallery_shortcode == true) { // if gallery is displayed using gallery shortcode 7 ?> 7 ?> 8 8 <h2><?php _e( 'Media Gallery', 'rtmedia' ); ?></h2> 9 9 <?php } … … 15 15 </h2> 16 16 <div id="rtm-media-options"><?php do_action ( 'rtmedia_media_gallery_actions' ); ?></div> 17 </div> 17 </div> 18 18 19 19 <div id="rtm-media-gallery-uploader"> … … 23 23 ?> 24 24 <?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 28 28 29 29 <?php while ( have_rtmedia () ) : rtmedia (); ?> … … 57 57 </div> 58 58 <?php } else { ?> 59 <p>60 <?php 59 <p> 60 <?php 61 61 $message = __ ( "Oops !! There's no media found for the request !!", "rtmedia" ); 62 62 echo apply_filters('rtmedia_no_media_found_message_filter', $message); … … 64 64 </p> 65 65 <?php } ?> 66 </ul> 66 67 67 <?php do_action ( 'rtmedia_after_media_gallery' ); ?> 68 68
Note: See TracChangeset
for help on using the changeset viewer.