rtMedia for WordPress, BuddyPress and bbPress - Version 4.0.1

Version Description

Requires BuddyPress 1.7 or higher, if using BuddyPress. Fixed lightbox issue and other bug fixes.

=

Download this release

Release Info

Developer rtcamp
Plugin Icon 128x128 rtMedia for WordPress, BuddyPress and bbPress
Version 4.0.1
Comparing to
See all releases

Code changes from version 4.0 to 4.0.1

app/helper/RTMediaSettings.php CHANGED
@@ -202,7 +202,8 @@ if ( ! class_exists( 'RTMediaSettings' ) ) {
202
  if ( ! isset( $setting_save ) ) {
203
  $settings_saved = '&settings-saved=true';
204
  }
205
- $http_referer = filter_input( INPUT_SERVER, 'HTTP_REFERER', FILTER_SANITIZE_URL );
 
206
  if ( isset( $http_referer ) ) {
207
  wp_redirect( $http_referer . $settings_saved );
208
  }
202
  if ( ! isset( $setting_save ) ) {
203
  $settings_saved = '&settings-saved=true';
204
  }
205
+
206
+ $http_referer = rtm_get_server_var( 'HTTP_REFERER', 'FILTER_SANITIZE_URL' );
207
  if ( isset( $http_referer ) ) {
208
  wp_redirect( $http_referer . $settings_saved );
209
  }
app/helper/RTMediaSupport.php CHANGED
@@ -425,10 +425,10 @@ if ( ! class_exists( 'RTMediaSupport' ) ) {
425
  $website = filter_input( INPUT_POST, 'website', FILTER_SANITIZE_URL );
426
  $subject = filter_input( INPUT_POST, 'subject', FILTER_SANITIZE_STRING );
427
  $details = filter_input( INPUT_POST, 'details', FILTER_SANITIZE_STRING );
428
- $server_addr = filter_input( INPUT_SERVER, 'SERVER_ADDR', FILTER_VALIDATE_IP );
429
- $remote_addr = filter_input( INPUT_SERVER, 'REMOTE_ADDR', FILTER_VALIDATE_IP );
430
- $server_software = filter_input( INPUT_SERVER, 'SERVER_SOFTWARE', FILTER_SANITIZE_STRING );
431
- $http_user_agent = filter_input( INPUT_SERVER, 'HTTP_USER_AGENT', FILTER_SANITIZE_STRING );
432
  ?>
433
  <h3 class="rtm-option-title"><?php echo esc_html( $meta_title ); ?></h3>
434
  <div id="support-form" class="bp-media-form rtm-support-form rtm-option-wrapper">
425
  $website = filter_input( INPUT_POST, 'website', FILTER_SANITIZE_URL );
426
  $subject = filter_input( INPUT_POST, 'subject', FILTER_SANITIZE_STRING );
427
  $details = filter_input( INPUT_POST, 'details', FILTER_SANITIZE_STRING );
428
+ $server_addr = rtm_get_server_var( 'SERVER_ADDR', 'FILTER_VALIDATE_IP' );
429
+ $remote_addr = rtm_get_server_var( 'REMOTE_ADDR', 'FILTER_VALIDATE_IP' );
430
+ $server_software = rtm_get_server_var( 'SERVER_SOFTWARE', 'FILTER_SANITIZE_STRING' );
431
+ $http_user_agent = rtm_get_server_var( 'HTTP_USER_AGENT', 'FILTER_SANITIZE_STRING' );
432
  ?>
433
  <h3 class="rtm-option-title"><?php echo esc_html( $meta_title ); ?></h3>
434
  <div id="support-form" class="bp-media-form rtm-support-form rtm-option-wrapper">
app/importers/RTMediaMigration.php CHANGED
@@ -20,7 +20,7 @@ class RTMediaMigration {
20
  $hide = filter_input( INPUT_GET, 'hide', FILTER_SANITIZE_STRING );
21
  if ( isset( $page ) && 'rtmedia-migration' === $page && isset( $hide ) && 'true' === $hide ) {
22
  $this->hide_migration_notice();
23
- $http_referer = filter_input( INPUT_SERVER, 'HTTP_REFERER', FILTER_SANITIZE_URL );
24
  wp_safe_redirect( esc_url_raw( $http_referer ) );
25
  }
26
  if ( false !== rtmedia_get_site_option( 'rt_migration_hide_notice' ) ) {
20
  $hide = filter_input( INPUT_GET, 'hide', FILTER_SANITIZE_STRING );
21
  if ( isset( $page ) && 'rtmedia-migration' === $page && isset( $hide ) && 'true' === $hide ) {
22
  $this->hide_migration_notice();
23
+ $http_referer = rtm_get_server_var( 'HTTP_REFERER', 'FILTER_SANITIZE_URL' );
24
  wp_safe_redirect( esc_url_raw( $http_referer ) );
25
  }
26
  if ( false !== rtmedia_get_site_option( 'rt_migration_hide_notice' ) ) {
app/main/RTMedia.php CHANGED
@@ -172,9 +172,9 @@ class RTMedia {
172
  if ( class_exists( 'BuddyPress' ) && $table_exist ) {
173
  $model = new RTMediaModel();
174
  $sql_group = " UPDATE $model->table_name m join {$wpdb->prefix}bp_groups bp on m.context_id = bp.id SET m.privacy = 0 where m.context = 'group' and bp.status = 'public' and m.privacy <> 80 ";
175
- $wpdb->query( $wpdb->prepare( $sql_group ) ); // @codingStandardsIgnoreLine
176
  $sql_group = " UPDATE $model->table_name m join {$wpdb->prefix}bp_groups bp on m.context_id = bp.id SET m.privacy = 20 where m.context = 'group' and ( bp.status = 'private' OR bp.status = 'hidden' ) and m.privacy <> 80 ";
177
- $wpdb->query( $wpdb->prepare( $sql_group ) ); // @codingStandardsIgnoreLine
178
  }
179
  }
180
 
172
  if ( class_exists( 'BuddyPress' ) && $table_exist ) {
173
  $model = new RTMediaModel();
174
  $sql_group = " UPDATE $model->table_name m join {$wpdb->prefix}bp_groups bp on m.context_id = bp.id SET m.privacy = 0 where m.context = 'group' and bp.status = 'public' and m.privacy <> 80 ";
175
+ $wpdb->query( $sql_group ); // @codingStandardsIgnoreLine
176
  $sql_group = " UPDATE $model->table_name m join {$wpdb->prefix}bp_groups bp on m.context_id = bp.id SET m.privacy = 20 where m.context = 'group' and ( bp.status = 'private' OR bp.status = 'hidden' ) and m.privacy <> 80 ";
177
+ $wpdb->query( $sql_group ); // @codingStandardsIgnoreLine
178
  }
179
  }
180
 
app/main/controllers/activity/RTMediaBuddyPressActivity.php CHANGED
@@ -254,7 +254,7 @@ class RTMediaBuddyPressActivity {
254
  }
255
 
256
  function bp_after_activity_post_form() {
257
- $url_raw = filter_input( INPUT_SERVER, 'REQUEST_URI', FILTER_VALIDATE_URL );
258
  $url = trailingslashit( $url_raw );
259
  $slug_split = explode( '/', $url );
260
  // check position of media slug for end of the URL
254
  }
255
 
256
  function bp_after_activity_post_form() {
257
+ $url_raw = rtm_get_server_var( 'REQUEST_URI', 'FILTER_VALIDATE_URL' );
258
  $url = trailingslashit( $url_raw );
259
  $slug_split = explode( '/', $url );
260
  // check position of media slug for end of the URL
app/main/controllers/api/RTMediaJsonApi.php CHANGED
@@ -200,7 +200,7 @@ class RTMediaJsonApi {
200
 
201
  //update all tokens for user to exired on each login
202
  $rtmapilogin->update( array( 'status' => 'FALSE' ), array( 'user_id' => $user_login->ID ) );
203
- $remote_addr = filter_input( INPUT_SERVER, 'REMOTE_ADDR', FILTER_VALIDATE_IP );
204
  $login_details = array(
205
  'user_id' => intval( $user_login->ID ),
206
  'ip' => $remote_addr,
200
 
201
  //update all tokens for user to exired on each login
202
  $rtmapilogin->update( array( 'status' => 'FALSE' ), array( 'user_id' => $user_login->ID ) );
203
+ $remote_addr = rtm_get_server_var( 'REMOTE_ADDR', 'FILTER_VALIDATE_IP' );
204
  $login_details = array(
205
  'user_id' => intval( $user_login->ID ),
206
  'ip' => $remote_addr,
app/main/controllers/media/RTMediaFeatured.php CHANGED
@@ -197,7 +197,7 @@ class RTMediaFeatured extends RTMediaUserInteraction {
197
  if ( ! empty( $is_json ) && 'true' === $is_json ) {
198
  wp_send_json( $return );
199
  } else {
200
- $url = filter_input( INPUT_SERVER, 'HTTP_REFERER', FILTER_SANITIZE_URL );
201
  wp_safe_redirect( esc_url_raw( $url ) );
202
  }
203
  }
197
  if ( ! empty( $is_json ) && 'true' === $is_json ) {
198
  wp_send_json( $return );
199
  } else {
200
+ $url = rtm_get_server_var( 'HTTP_REFERER', 'FILTER_SANITIZE_URL' );
201
  wp_safe_redirect( esc_url_raw( $url ) );
202
  }
203
  }
app/main/controllers/media/RTMediaGroupFeatured.php CHANGED
@@ -198,7 +198,7 @@ class RTMediaGroupFeatured extends RTMediaUserInteraction {
198
  if ( isset( $is_json ) && 'true' === $is_json ) {
199
  wp_send_json( $return );
200
  } else {
201
- $url = filter_input( INPUT_SERVER, 'HTTP_REFERER', FILTER_SANITIZE_URL );
202
  wp_safe_redirect( esc_url_raw( $url ) );
203
  }
204
  }
198
  if ( isset( $is_json ) && 'true' === $is_json ) {
199
  wp_send_json( $return );
200
  } else {
201
+ $url = rtm_get_server_var( 'HTTP_REFERER', 'FILTER_SANITIZE_URL' );
202
  wp_safe_redirect( esc_url_raw( $url ) );
203
  }
204
  }
app/main/controllers/media/RTMediaLike.php CHANGED
@@ -122,7 +122,7 @@ class RTMediaLike extends RTMediaUserInteraction {
122
  if ( ! empty( $is_json ) && 'true' === $is_json ) {
123
  wp_send_json( $return );
124
  } else {
125
- $url = filter_input( INPUT_SERVER, 'HTTP_REFERER', FILTER_SANITIZE_URL );
126
  wp_safe_redirect( esc_url_raw( $url ) );
127
  die();
128
  }
122
  if ( ! empty( $is_json ) && 'true' === $is_json ) {
123
  wp_send_json( $return );
124
  } else {
125
+ $url = rtm_get_server_var( 'HTTP_REFERER', 'FILTER_SANITIZE_URL' );
126
  wp_safe_redirect( esc_url_raw( $url ) );
127
  die();
128
  }
app/main/controllers/shortcodes/RTMediaGalleryShortcode.php CHANGED
@@ -58,7 +58,7 @@ class RTMediaGalleryShortcode {
58
  ), admin_url( 'admin-ajax.php' ) ), null, '' );
59
  }
60
  wp_localize_script( 'rtmedia-backbone', 'template_url', $template_url );
61
- $request_uri = filter_input( INPUT_SERVER, 'REQUEST_URI', FILTER_SANITIZE_URL );
62
  $url = trailingslashit( $request_uri );
63
  $rtmedia_slug = '/' . RTMEDIA_MEDIA_SLUG;
64
  // check position of media slug from end of the URL
58
  ), admin_url( 'admin-ajax.php' ) ), null, '' );
59
  }
60
  wp_localize_script( 'rtmedia-backbone', 'template_url', $template_url );
61
+ $request_uri = rtm_get_server_var( 'REQUEST_URI', 'FILTER_SANITIZE_URL' );
62
  $url = trailingslashit( $request_uri );
63
  $rtmedia_slug = '/' . RTMEDIA_MEDIA_SLUG;
64
  // check position of media slug from end of the URL
app/main/controllers/template/RTMediaNav.php CHANGED
@@ -200,19 +200,22 @@ class RTMediaNav {
200
  $other_count = $model->get_other_album_count( bp_displayed_user_id(), 'profile' );
201
  }
202
  $all = '';
203
- if ( ! isset( $rtmedia_query->action_query->media_type ) ) {
204
- $all = 'class="current selected"';
205
  }
206
- echo apply_filters( 'rtmedia_sub_nav_all', '<li id="rtmedia-nav-item-all-li" ' . esc_attr( $all ) . '><a id="rtmedia-nav-item-all" href="' . esc_url( trailingslashit( $link ) ) . RTMEDIA_MEDIA_SLUG . '/">' . esc_html__( 'All', 'buddypress-media' ) . '<span>' . esc_html( ( isset( $counts['total']['all'] ) ) ? $counts['total']['all'] : 0 ) . '</span>' . '</a></li>' );// @codingStandardsIgnoreLine
207
-
208
  if ( ! isset( $rtmedia_query->action_query->action ) || empty( $rtmedia_query->action_query->action ) ) {
209
  $default = true;
210
  }
211
 
212
  $albums = '';
213
- if ( isset( $rtmedia_query->action_query->media_type ) && 'album' === $rtmedia_query->action_query->media_type ) {
214
- $albums = 'class="current selected"';
215
- }
 
 
 
 
216
 
217
  if ( is_rtmedia_album_enable() ) {
218
 
@@ -222,7 +225,7 @@ class RTMediaNav {
222
 
223
  $counts['total']['album'] = $counts['total']['album'] + $other_count;
224
  $album_label = esc_html__( defined( 'RTMEDIA_ALBUM_PLURAL_LABEL' ) ? constant( 'RTMEDIA_ALBUM_PLURAL_LABEL' ) : 'Albums', 'buddypress-media' );
225
- echo apply_filters( 'rtmedia_sub_nav_albums', '<li id="rtmedia-nav-item-albums-li" ' . esc_attr( $albums ) . '><a id="rtmedia-nav-item-albums" href="' . esc_url( trailingslashit( $link ) ) . RTMEDIA_MEDIA_SLUG . '/album/">' . esc_html( $album_label ) . '<span>' . esc_html( ( isset( $counts['total']['album'] ) ) ? $counts['total']['album'] : 0 ) . '</span>' . '</a></li>' );// @codingStandardsIgnoreLine
226
  }
227
 
228
  foreach ( $rtmedia->allowed_types as $type ) {
200
  $other_count = $model->get_other_album_count( bp_displayed_user_id(), 'profile' );
201
  }
202
  $all = '';
203
+ if ( ! isset( $rtmedia_query->action_query->media_type ) && ! isset( $rtmedia_query->query['media_type'] ) ) {
204
+ $all = 'current selected';
205
  }
206
+ echo apply_filters( 'rtmedia_sub_nav_all', '<li id="rtmedia-nav-item-all-li" class="' . esc_attr( $all ) . '"><a id="rtmedia-nav-item-all" href="' . esc_url( trailingslashit( $link ) ) . RTMEDIA_MEDIA_SLUG . '/">' . esc_html__( 'All', 'buddypress-media' ) . '<span>' . esc_html( ( isset( $counts['total']['all'] ) ) ? $counts['total']['all'] : 0 ) . '</span>' . '</a></li>' );// @codingStandardsIgnoreLine
 
207
  if ( ! isset( $rtmedia_query->action_query->action ) || empty( $rtmedia_query->action_query->action ) ) {
208
  $default = true;
209
  }
210
 
211
  $albums = '';
212
+ //condition to keep "Album" tab active
213
+ if ( array_key_exists( 'media_type', $rtmedia_query->query ) && isset( $rtmedia_query->query['media_type'] ) && ( 'album' === $rtmedia_query->query['media_type'] ) ) {
214
+ $albums = 'current selected';
215
+ } elseif ( array_key_exists( 'media_type', $rtmedia_query->action_query ) && isset( $rtmedia_query->action_query->media_type ) && ( 'album' === $rtmedia_query->action_query->media_type ) ) {
216
+ $albums = 'current selected';
217
+
218
+ }
219
 
220
  if ( is_rtmedia_album_enable() ) {
221
 
225
 
226
  $counts['total']['album'] = $counts['total']['album'] + $other_count;
227
  $album_label = esc_html__( defined( 'RTMEDIA_ALBUM_PLURAL_LABEL' ) ? constant( 'RTMEDIA_ALBUM_PLURAL_LABEL' ) : 'Albums', 'buddypress-media' );
228
+ echo apply_filters( 'rtmedia_sub_nav_albums', '<li id="rtmedia-nav-item-albums-li" class="' . esc_attr( $albums ) . '"><a id="rtmedia-nav-item-albums" href="' . esc_url( trailingslashit( $link ) ) . RTMEDIA_MEDIA_SLUG . '/album/">' . esc_html( $album_label ) . '<span>' . esc_html( ( isset( $counts['total']['album'] ) ) ? $counts['total']['album'] : 0 ) . '</span>' . '</a></li>' );// @codingStandardsIgnoreLine
229
  }
230
 
231
  foreach ( $rtmedia->allowed_types as $type ) {
app/main/controllers/template/RTMediaTemplate.php CHANGED
@@ -502,7 +502,7 @@ class RTMediaTemplate {
502
  $parent_link = get_author_posts_url( $post->media_author );
503
  }
504
 
505
- $redirect_url = filter_input( INPUT_SERVER, 'HTTP_REFERER', FILTER_SANITIZE_URL );
506
 
507
  if ( strpos( $redirect_url, '/' . $rtmedia_query->media[0]->id ) > 0 ) {
508
  if ( 'profile' === $context && isset( $rtmedia_query->media[0]->album_id ) && intval( $rtmedia_query->media[0]->album_id ) > 0 ) {
502
  $parent_link = get_author_posts_url( $post->media_author );
503
  }
504
 
505
+ $redirect_url = rtm_get_server_var( 'HTTP_REFERER', 'FILTER_SANITIZE_URL' );
506
 
507
  if ( strpos( $redirect_url, '/' . $rtmedia_query->media[0]->id ) > 0 ) {
508
  if ( 'profile' === $context && isset( $rtmedia_query->media[0]->album_id ) && intval( $rtmedia_query->media[0]->album_id ) > 0 ) {
app/main/controllers/template/rt-template-functions.php CHANGED
@@ -664,7 +664,7 @@ function rtmedia_description_input( $editor = true, $echo = false ) {
664
  function rtmedia_description( $echo = true ) {
665
  if ( $echo ) {
666
  // escape description for any html tags and reformat using `wpautop`
667
- echo strip_tags( str_replace( '</p>', '</p><br>', rtmedia_description( $echo = false ) ), '<br>' ); // @codingStandardsIgnoreLine
668
  } else {
669
  return rtmedia_get_media_description();
670
  }
@@ -681,7 +681,13 @@ function rtmedia_get_media_description( $id = false ) {
681
  $media_post_id = $rtmedia_media->media_id;
682
  }
683
 
684
- return apply_filters( 'the_content', get_post_field( 'post_content', $media_post_id ) );
 
 
 
 
 
 
685
  }
686
 
687
  /**
@@ -2388,11 +2394,8 @@ function rtmedia_convert_date( $_date ) {
2388
  $length = array( 1, 60, 3600, 86400 );
2389
  $ago_text = esc_html__( '%s ago ', 'buddypress-media' );
2390
 
2391
- for ( $i = count( $length ) - 1; $i >= 0; $i -- ) {
2392
- if ( ( ( $no = $diff / $length[ $i ] ) <= 1 ) ) {
2393
- break;
2394
- }
2395
- }
2396
  if ( $i < 0 ) {
2397
  $i = 0;
2398
  }
@@ -2993,3 +2996,25 @@ function rtm_modify_document_title_parts( $title = array() ) {
2993
  }
2994
 
2995
  add_filter( 'document_title_parts', 'rtm_modify_document_title_parts', 30, 1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
664
  function rtmedia_description( $echo = true ) {
665
  if ( $echo ) {
666
  // escape description for any html tags and reformat using `wpautop`
667
+ echo rtmedia_get_media_description();
668
  } else {
669
  return rtmedia_get_media_description();
670
  }
681
  $media_post_id = $rtmedia_media->media_id;
682
  }
683
 
684
+ /**
685
+ * This function will mostly be used in single media page.
686
+ * We are showing single media page using `the_content` filter and uses dummy post.
687
+ * If we use `the_content` filter again than media description won't work as this is already singe media request
688
+ * and hence using `wpautop` instead.
689
+ */
690
+ return wpautop( get_post_field( 'post_content', $media_post_id ) );
691
  }
692
 
693
  /**
2394
  $length = array( 1, 60, 3600, 86400 );
2395
  $ago_text = esc_html__( '%s ago ', 'buddypress-media' );
2396
 
2397
+ for ( $i = sizeof( $length ) - 1; ( $i >= 0 ) && ( ( $no = $diff / $length[ $i ] ) <= 1 ); $i -- );
2398
+
 
 
 
2399
  if ( $i < 0 ) {
2400
  $i = 0;
2401
  }
2996
  }
2997
 
2998
  add_filter( 'document_title_parts', 'rtm_modify_document_title_parts', 30, 1 );
2999
+
3000
+ /**
3001
+ * To get server variable
3002
+ *
3003
+ * @param $server_key string
3004
+ * @param $filter_type string
3005
+ *
3006
+ * @return mixed
3007
+ */
3008
+ function rtm_get_server_var( $server_key, $filter_type = 'FILTER_SANITIZE_STRING' ) {
3009
+
3010
+ $server_val = '';
3011
+
3012
+ if ( function_exists( 'filter_input' ) && filter_has_var( INPUT_SERVER, $server_key ) ) {
3013
+ $server_val = filter_input( INPUT_SERVER, $server_key, constant( $filter_type ) );
3014
+ } elseif( isset( $_SERVER[ $server_key ] ) ) {
3015
+ $server_val = $_SERVER[ $server_key ];
3016
+ }
3017
+
3018
+ return $server_val;
3019
+
3020
+ }
app/main/controllers/upload/RTMediaUploadEndpoint.php CHANGED
@@ -177,7 +177,7 @@ class RTMediaUploadEndpoint {
177
  ob_end_clean();
178
  //check for simpe
179
  $rtmedia_update = filter_input( INPUT_POST, 'rtmedia_update', FILTER_SANITIZE_STRING );
180
- $_user_agent = filter_input( INPUT_SERVER, 'HTTP_USER_AGENT', FILTER_SANITIZE_STRING );
181
  /**
182
  * if(redirect)
183
  *
177
  ob_end_clean();
178
  //check for simpe
179
  $rtmedia_update = filter_input( INPUT_POST, 'rtmedia_update', FILTER_SANITIZE_STRING );
180
+ $_user_agent = rtm_get_server_var( 'HTTP_USER_AGENT', 'FILTER_SANITIZE_STRING' );
181
  /**
182
  * if(redirect)
183
  *
app/main/controllers/upload/RTMediaUploadModel.php CHANGED
@@ -53,7 +53,8 @@ class RTMediaUploadModel {
53
 
54
  if ( ! $this->has_context() ) {
55
  // Set context_id to Logged in user id if context is profile and context_id is not provided
56
- if ( 'profile' === $this->upload['context'] ) {
 
57
  $this->upload['context_id'] = get_current_user_id();
58
  } else {
59
  global $rtmedia_interaction;
53
 
54
  if ( ! $this->has_context() ) {
55
  // Set context_id to Logged in user id if context is profile and context_id is not provided
56
+ if ( 'profile' === $this->upload['context'] || 'bp_member' === $this->upload['context'] ) {
57
+ $this->upload['context'] = 'profile';
58
  $this->upload['context_id'] = get_current_user_id();
59
  } else {
60
  global $rtmedia_interaction;
app/main/routers/RTMediaRouter.php CHANGED
@@ -146,7 +146,7 @@ class RTMediaRouter {
146
  global $rt_ajax_request;
147
  $rt_ajax_request = false;
148
 
149
- $req_with = filter_input( INPUT_SERVER, 'HTTP_X_REQUESTED_WITH', FILTER_SANITIZE_STRING );
150
  // check if it is an ajax request
151
  if (
152
  ! empty( $req_with ) &&
146
  global $rt_ajax_request;
147
  $rt_ajax_request = false;
148
 
149
+ $req_with = rtm_get_server_var( 'HTTP_X_REQUESTED_WITH', 'FILTER_SANITIZE_STRING' );
150
  // check if it is an ajax request
151
  if (
152
  ! empty( $req_with ) &&
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
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: 4.0
8
  Author: rtCamp
9
  Text Domain: buddypress-media
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
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: 4.0.1
8
  Author: rtCamp
9
  Text Domain: buddypress-media
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
languages/buddypress-media-de_DE.mo CHANGED
Binary file
languages/buddypress-media.po CHANGED
@@ -1,28 +1,16 @@
1
- # Copyright (C) 2016 rtCamp
2
- # This file is distributed under the same license as the rtMedia for WordPress, BuddyPress and bbPress package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 3.10.8\n"
6
- "Report-Msgid-Bugs-To: http://community.rtcamp.com/c/rtmedia/\n"
7
- "POT-Creation-Date: 2016-06-16 10:32:57+00:00\n"
8
  "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: rtMedia <rtmedia@rtcamp.com>\n"
13
- "Language-Team: rtMedia <rtmedia@rtcamp.com>\n"
14
- "X-Generator: grunt-wp-i18n 0.5.4\n"
15
- "X-Poedit-KeywordsList: "
16
- "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
17
- "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
18
- "Language: en\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Poedit-Country: United States\n"
21
- "X-Poedit-SourceCharset: UTF-8\n"
22
- "X-Poedit-Basepath: ../\n"
23
- "X-Poedit-SearchPath-0: .\n"
24
- "X-Poedit-Bookmarks: \n"
25
- "X-Textdomain-Support: yes\n"
26
 
27
  #: app/admin/RTMediaAdmin.php:154
28
  msgid "View &#8220;%s&#8221;"
@@ -43,7 +31,7 @@ msgstr ""
43
  #: app/admin/RTMediaAdmin.php:225 app/admin/RTMediaAdmin.php:1166
44
  #: app/admin/RTMediaAdmin.php:1837 app/admin/RTMediaAdmin.php:1855
45
  #: app/admin/RTMediaAdmin.php:1873 app/admin/RTMediaFormHandler.php:435
46
- #: app/admin/RTMediaFormHandler.php:446 app/helper/RTMediaSettings.php:296
47
  #: app/helper/RTMediaSupport.php:368 app/helper/RTMediaSupport.php:636
48
  msgid "here"
49
  msgstr ""
@@ -152,7 +140,7 @@ msgstr ""
152
 
153
  #: app/admin/RTMediaAdmin.php:730 app/admin/RTMediaAdmin.php:824
154
  #: app/admin/RTMediaAdmin.php:827 app/admin/RTMediaAdmin.php:968
155
- #: app/admin/RTMediaAdmin.php:1573 app/helper/RTMediaSettings.php:220
156
  #: app/helper/RTMediaSupport.php:52 app/helper/RTMediaSupport.php:53
157
  msgid "Support"
158
  msgstr ""
@@ -349,7 +337,7 @@ msgid "rtMedia Privacy"
349
  msgstr ""
350
 
351
  #: app/admin/RTMediaAdmin.php:1689
352
- #: app/main/controllers/privacy/RTMediaPrivacy.php:416
353
  msgid "Privacy"
354
  msgstr ""
355
 
@@ -414,9 +402,7 @@ msgid "Premium Add-ons"
414
  msgstr ""
415
 
416
  #: app/admin/RTMediaAdmin.php:1836
417
- msgid ""
418
- "You have images enabled on rtMedia but your network allowed filetypes do "
419
- "not permit uploading of %s. Click "
420
  msgstr ""
421
 
422
  #: app/admin/RTMediaAdmin.php:1838 app/admin/RTMediaAdmin.php:1856
@@ -435,15 +421,11 @@ msgid "Update Network Settings Automatically"
435
  msgstr ""
436
 
437
  #: app/admin/RTMediaAdmin.php:1854
438
- msgid ""
439
- "You have video enabled on BuddyPress Media but your network allowed "
440
- "filetypes do not permit uploading of mp4. Click "
441
  msgstr ""
442
 
443
  #: app/admin/RTMediaAdmin.php:1872
444
- msgid ""
445
- "You have audio enabled on BuddyPress Media but your network allowed "
446
- "filetypes do not permit uploading of mp3. Click "
447
  msgstr ""
448
 
449
  #: app/admin/RTMediaAdmin.php:1893
@@ -463,10 +445,7 @@ msgid "Regenerate Video Thumbnails"
463
  msgstr ""
464
 
465
  #: app/admin/RTMediaAdmin.php:2033
466
- msgid ""
467
- "Please update rtMedia template files if you have overridden the default "
468
- "rtMedia templates in your theme. If not, you can ignore and hide this "
469
- "notice."
470
  msgstr ""
471
 
472
  #: app/admin/RTMediaAdmin.php:2033
@@ -498,9 +477,7 @@ msgid "Allow user to comment on uploaded media"
498
  msgstr ""
499
 
500
  #: app/admin/RTMediaFormHandler.php:296
501
- msgid ""
502
- "This will display the comment form and comment listing on single media "
503
- "pages as well as inside lightbox (if lightbox is enabled)."
504
  msgstr ""
505
 
506
  #: app/admin/RTMediaFormHandler.php:301
@@ -556,9 +533,7 @@ msgid "and uncheck the crop box for thumbnails."
556
  msgstr ""
557
 
558
  #: app/admin/RTMediaFormHandler.php:344
559
- msgid ""
560
- "To set gallery for fixed width, set image height to 0 and width as per your "
561
- "requirement and vice-versa."
562
  msgstr ""
563
 
564
  #: app/admin/RTMediaFormHandler.php:347
@@ -590,10 +565,7 @@ msgid "Allow usage data tracking"
590
  msgstr ""
591
 
592
  #: app/admin/RTMediaFormHandler.php:402
593
- msgid ""
594
- "To make rtMedia better compatible with your sites, you can help the rtMedia "
595
- "team learn what themes and plugins you are using. No private information "
596
- "about your setup will be sent during tracking."
597
  msgstr ""
598
 
599
  #: app/admin/RTMediaFormHandler.php:406
@@ -601,9 +573,7 @@ msgid "Admin bar menu integration"
601
  msgstr ""
602
 
603
  #: app/admin/RTMediaFormHandler.php:411
604
- msgid ""
605
- "Add rtMedia menu to WordPress admin bar for easy access to settings and "
606
- "moderation page (if enabled)."
607
  msgstr ""
608
 
609
  #: app/admin/RTMediaFormHandler.php:416
@@ -619,9 +589,7 @@ msgid "Also add my affiliate-id to rtMedia footer link"
619
  msgstr ""
620
 
621
  #: app/admin/RTMediaFormHandler.php:431
622
- msgid ""
623
- "Add your affiliate-id along with footer link and get rewarded by our "
624
- "affiliation program."
625
  msgstr ""
626
 
627
  #: app/admin/RTMediaFormHandler.php:435
@@ -637,9 +605,7 @@ msgid "Enable JSON API"
637
  msgstr ""
638
 
639
  #: app/admin/RTMediaFormHandler.php:443
640
- msgid ""
641
- "This will allow handling API requests for rtMedia sent through any mobile "
642
- "app."
643
  msgstr ""
644
 
645
  #: app/admin/RTMediaFormHandler.php:446
@@ -666,7 +632,7 @@ msgstr ""
666
  msgid "Media Types Settings"
667
  msgstr ""
668
 
669
- #: app/admin/RTMediaFormHandler.php:557 app/helper/RTMediaSettings.php:318
670
  msgid "Media Type"
671
  msgstr ""
672
 
@@ -719,9 +685,7 @@ msgid "Number of thumbnails to generate on video upload"
719
  msgstr ""
720
 
721
  #: app/admin/RTMediaFormHandler.php:821
722
- msgid ""
723
- " If you choose more than 1 thumbnail, your users will be able to change the "
724
- "thumbnail by going to video 'edit' section. Maximum value is 10."
725
  msgstr ""
726
 
727
  #: app/admin/RTMediaFormHandler.php:829
@@ -749,9 +713,7 @@ msgid "rtMedia default styles"
749
  msgstr ""
750
 
751
  #: app/admin/RTMediaFormHandler.php:895
752
- msgid ""
753
- "Load default rtMedia styles. You need to write your own style for rtMedia "
754
- "if you disable it."
755
  msgstr ""
756
 
757
  #: app/admin/RTMediaFormHandler.php:900
@@ -783,9 +745,7 @@ msgid "Allow users to set privacy for their content"
783
  msgstr ""
784
 
785
  #: app/admin/RTMediaFormHandler.php:957
786
- msgid ""
787
- "If you choose this, users will be able to change privacy of their own "
788
- "uploads."
789
  msgstr ""
790
 
791
  #: app/admin/RTMediaFormHandler.php:961
@@ -821,11 +781,7 @@ msgid "Number of media items to show in activity stream"
821
  msgstr ""
822
 
823
  #: app/admin/RTMediaFormHandler.php:1039
824
- msgid ""
825
- "With bulk uploads activity, the stream may get flooded. You can control the "
826
- "maximum number of media items or files per activity. This limit will not "
827
- "affect the actual number of uploads. This is only for display. \"0\" means "
828
- "unlimited."
829
  msgstr ""
830
 
831
  #: app/admin/RTMediaFormHandler.php:1046
@@ -833,9 +789,7 @@ msgid "Enable media notification"
833
  msgstr ""
834
 
835
  #: app/admin/RTMediaFormHandler.php:1051
836
- msgid ""
837
- "This will enable notifications to media authors for media likes and "
838
- "comments."
839
  msgstr ""
840
 
841
  #: app/admin/RTMediaFormHandler.php:1057
@@ -859,9 +813,7 @@ msgid "Organize media into albums"
859
  msgstr ""
860
 
861
  #: app/admin/RTMediaFormHandler.php:1085
862
- msgid ""
863
- "This will add 'album' tab to BuddyPress profile and group depending on the "
864
- "^above^ settings."
865
  msgstr ""
866
 
867
  #: app/admin/templates/tmpl-rtm-album-favourites-importer.php:4
@@ -881,10 +833,7 @@ msgid "SEO"
881
  msgstr ""
882
 
883
  #: app/helper/RTMediaAddon.php:117
884
- msgid ""
885
- "Generate an XML sitemap for all the public media files uploaded via rtMedia "
886
- "plugin. These sitemaps can be useful to index search engine to improve "
887
- "website SEO."
888
  msgstr ""
889
 
890
  #: app/helper/RTMediaAddon.php:125
@@ -892,9 +841,7 @@ msgid "Moderation"
892
  msgstr ""
893
 
894
  #: app/helper/RTMediaAddon.php:128
895
- msgid ""
896
- "Report media if they find offensive. Set number of reports to automatically "
897
- "take down media from site."
898
  msgstr ""
899
 
900
  #: app/helper/RTMediaAddon.php:136
@@ -902,9 +849,7 @@ msgid "Custom Attributes"
902
  msgstr ""
903
 
904
  #: app/helper/RTMediaAddon.php:139
905
- msgid ""
906
- "Categories media based on attributes. Site owner need to create attributes. "
907
- "When user upload a media, can select in which attribute that media can add."
908
  msgstr ""
909
 
910
  #: app/helper/RTMediaAddon.php:147
@@ -912,9 +857,7 @@ msgid "Docs and Other files"
912
  msgstr ""
913
 
914
  #: app/helper/RTMediaAddon.php:150
915
- msgid ""
916
- "Allow users to upload documents and other file type using rtMedia upload "
917
- "box. This addon support all the file extensions which WordPress allows."
918
  msgstr ""
919
 
920
  #: app/helper/RTMediaAddon.php:158
@@ -922,9 +865,7 @@ msgid "Default Albums"
922
  msgstr ""
923
 
924
  #: app/helper/RTMediaAddon.php:161
925
- msgid ""
926
- "This plugin allows the creation of multiple default albums for rtMedia "
927
- "uploads. One of these albums can be set as the default global album."
928
  msgstr ""
929
 
930
  #: app/helper/RTMediaAddon.php:169
@@ -932,9 +873,7 @@ msgid "Podcast (RSS and Atom feeds)"
932
  msgstr ""
933
 
934
  #: app/helper/RTMediaAddon.php:172
935
- msgid ""
936
- "Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting "
937
- "software."
938
  msgstr ""
939
 
940
  #: app/helper/RTMediaAddon.php:180
@@ -942,9 +881,7 @@ msgid "Playlists"
942
  msgstr ""
943
 
944
  #: app/helper/RTMediaAddon.php:183
945
- msgid ""
946
- "Audio can be grouped into playlists. Once the user upload any audio file, "
947
- "can create a playlist or use existing one to manage audio files."
948
  msgstr ""
949
 
950
  #: app/helper/RTMediaAddon.php:191
@@ -952,9 +889,7 @@ msgid "Favorites"
952
  msgstr ""
953
 
954
  #: app/helper/RTMediaAddon.php:194
955
- msgid ""
956
- "Users can create their list of favorite media in which they can add media "
957
- "previously uploaded by any user."
958
  msgstr ""
959
 
960
  #: app/helper/RTMediaAddon.php:202
@@ -962,9 +897,7 @@ msgid "Restrictions"
962
  msgstr ""
963
 
964
  #: app/helper/RTMediaAddon.php:205
965
- msgid ""
966
- "Site admin can set an upload limit on the basis of time span, file size "
967
- "(MB) and number of files user can upload."
968
  msgstr ""
969
 
970
  #: app/helper/RTMediaAddon.php:213
@@ -980,9 +913,7 @@ msgid "WordPress Sitewide Gallery"
980
  msgstr ""
981
 
982
  #: app/helper/RTMediaAddon.php:227
983
- msgid ""
984
- "Site admin can create and upload media into WordPress album. Create album "
985
- "without being dependent on BuddyPress."
986
  msgstr ""
987
 
988
  #: app/helper/RTMediaAddon.php:235
@@ -990,9 +921,7 @@ msgid "WordPress Comment Attachments"
990
  msgstr ""
991
 
992
  #: app/helper/RTMediaAddon.php:238
993
- msgid ""
994
- "Allow users to upload a media file in WordPress comment attachment box. It "
995
- "will display a thumbnail of attached file."
996
  msgstr ""
997
 
998
  #: app/helper/RTMediaAddon.php:246
@@ -1000,9 +929,7 @@ msgid "Social Sharing"
1000
  msgstr ""
1001
 
1002
  #: app/helper/RTMediaAddon.php:249
1003
- msgid ""
1004
- "Share uploaded media on social network sites like Facebook, twitter, "
1005
- "linkedin, Google +. This addon integrate with rtSocial plugin."
1006
  msgstr ""
1007
 
1008
  #: app/helper/RTMediaAddon.php:257
@@ -1010,9 +937,7 @@ msgid "Sidebar Widgets"
1010
  msgstr ""
1011
 
1012
  #: app/helper/RTMediaAddon.php:260
1013
- msgid ""
1014
- "This addon provide widgets to upload media and display gallery for rtMedia "
1015
- "plugin."
1016
  msgstr ""
1017
 
1018
  #: app/helper/RTMediaAddon.php:268
@@ -1020,9 +945,7 @@ msgid "5 Star Ratings"
1020
  msgstr ""
1021
 
1022
  #: app/helper/RTMediaAddon.php:271
1023
- msgid ""
1024
- "Display 5 star rating for all the uploaded media. User can rate the media "
1025
- "files from 1 to 5 star."
1026
  msgstr ""
1027
 
1028
  #: app/helper/RTMediaAddon.php:279
@@ -1038,9 +961,7 @@ msgid "Media Sorting"
1038
  msgstr ""
1039
 
1040
  #: app/helper/RTMediaAddon.php:293
1041
- msgid ""
1042
- "Sort uploaded media based on file size, ascending/descending title, upload "
1043
- "date of media."
1044
  msgstr ""
1045
 
1046
  #: app/helper/RTMediaAddon.php:301
@@ -1048,10 +969,7 @@ msgid "Bulk Edit"
1048
  msgstr ""
1049
 
1050
  #: app/helper/RTMediaAddon.php:304
1051
- msgid ""
1052
- "Bulk edit option will allow user to quickly select media files and do "
1053
- "required actions like move files from one album to another, change "
1054
- "attributes, change privacy, delete files."
1055
  msgstr ""
1056
 
1057
  #: app/helper/RTMediaAddon.php:312
@@ -1075,9 +993,7 @@ msgid "Direct Download Link"
1075
  msgstr ""
1076
 
1077
  #: app/helper/RTMediaAddon.php:337
1078
- msgid ""
1079
- "User can download media from website. Site owner can restrict which media "
1080
- "type can be allowed to download."
1081
  msgstr ""
1082
 
1083
  #: app/helper/RTMediaAddon.php:345
@@ -1085,10 +1001,7 @@ msgid "Upload by URL"
1085
  msgstr ""
1086
 
1087
  #: app/helper/RTMediaAddon.php:348
1088
- msgid ""
1089
- "Users do not need to download media files from a URL and then upload it "
1090
- "with rtMedia. Just provide the absolute URL for the media and it will "
1091
- "upload on site."
1092
  msgstr ""
1093
 
1094
  #: app/helper/RTMediaAddon.php:356
@@ -1096,9 +1009,7 @@ msgid "Media Likes"
1096
  msgstr ""
1097
 
1098
  #: app/helper/RTMediaAddon.php:359
1099
- msgid ""
1100
- "This add-on let you know who liked the media. User can also see which media "
1101
- "they liked under their profile."
1102
  msgstr ""
1103
 
1104
  #: app/helper/RTMediaAddon.php:367
@@ -1106,10 +1017,7 @@ msgid "Activity URL Preview"
1106
  msgstr ""
1107
 
1108
  #: app/helper/RTMediaAddon.php:370
1109
- msgid ""
1110
- "This addon provides a preview of the URL that is shared in BuddyPress "
1111
- "activity. Just enter the URL you want to share on your site and see a "
1112
- "preview of it before it is shared."
1113
  msgstr ""
1114
 
1115
  #: app/helper/RTMediaAddon.php:378
@@ -1117,10 +1025,7 @@ msgid "View Counter"
1117
  msgstr ""
1118
 
1119
  #: app/helper/RTMediaAddon.php:381
1120
- msgid ""
1121
- "Enable view count for all the uploaded media. Whenever user open that media "
1122
- "file in lightbox or in single media view, that view count will be "
1123
- "calculated and display next to media file."
1124
  msgstr ""
1125
 
1126
  #: app/helper/RTMediaAddon.php:389
@@ -1128,9 +1033,7 @@ msgid "Shortcode Generator"
1128
  msgstr ""
1129
 
1130
  #: app/helper/RTMediaAddon.php:392
1131
- msgid ""
1132
- "This add-on will add shortcode generator button in WordPress post and page "
1133
- "editor for all the rtMedia shortcodes."
1134
  msgstr ""
1135
 
1136
  #: app/helper/RTMediaAddon.php:400
@@ -1138,10 +1041,7 @@ msgid "Album Privacy"
1138
  msgstr ""
1139
 
1140
  #: app/helper/RTMediaAddon.php:403
1141
- msgid ""
1142
- "Set album privacy when user create an album or change album privacy when "
1143
- "editing existing albums. The privacy levels are Public, Logged in user, "
1144
- "Friends and Private."
1145
  msgstr ""
1146
 
1147
  #: app/helper/RTMediaAddon.php:411
@@ -1157,9 +1057,7 @@ msgid "Set Custom Thumbnail for Audio/Video"
1157
  msgstr ""
1158
 
1159
  #: app/helper/RTMediaAddon.php:425
1160
- msgid ""
1161
- "Allow media owner to change the thumbnail of uploaded audio/video files. "
1162
- "The File Upload box will be provided to change media thumbnail."
1163
  msgstr ""
1164
 
1165
  #: app/helper/RTMediaAddon.php:433
@@ -1167,10 +1065,7 @@ msgid "myCRED"
1167
  msgstr ""
1168
 
1169
  #: app/helper/RTMediaAddon.php:436
1170
- msgid ""
1171
- "This plugin integrates rtMedia and myCRED plugin, users can be can award "
1172
- "virtual points for various rtMedia activities, like media upload, likes, "
1173
- "deleted etc."
1174
  msgstr ""
1175
 
1176
  #: app/helper/RTMediaAddon.php:444
@@ -1178,9 +1073,7 @@ msgid "Upload Terms"
1178
  msgstr ""
1179
 
1180
  #: app/helper/RTMediaAddon.php:447
1181
- msgid ""
1182
- "User must have to check the terms and conditions checkbox before uploading "
1183
- "the media."
1184
  msgstr ""
1185
 
1186
  #: app/helper/RTMediaAddon.php:455
@@ -1188,10 +1081,7 @@ msgid "CubePoints"
1188
  msgstr ""
1189
 
1190
  #: app/helper/RTMediaAddon.php:458
1191
- msgid ""
1192
- "If you are using CubePoints plugin on your website than rtMedia CubePoint "
1193
- "add-on can be integrate with that plugin to setup point management system "
1194
- "for rtMedia related activities."
1195
  msgstr ""
1196
 
1197
  #: app/helper/RTMediaAddon.php:466
@@ -1207,9 +1097,7 @@ msgid "Photo Watermark"
1207
  msgstr ""
1208
 
1209
  #: app/helper/RTMediaAddon.php:480
1210
- msgid ""
1211
- "rtMedia Photo Watermark let you add watermark on your images uploaded using "
1212
- "rtMedia."
1213
  msgstr ""
1214
 
1215
  #: app/helper/RTMediaAddon.php:488
@@ -1217,9 +1105,7 @@ msgid "Photo Tagging"
1217
  msgstr ""
1218
 
1219
  #: app/helper/RTMediaAddon.php:491
1220
- msgid ""
1221
- "rtMedia Photo Tagging enable users to tag their friends on photos uploaded "
1222
- "using rtMedia."
1223
  msgstr ""
1224
 
1225
  #: app/helper/RTMediaAddon.php:499
@@ -1227,9 +1113,7 @@ msgid "Photo Filters"
1227
  msgstr ""
1228
 
1229
  #: app/helper/RTMediaAddon.php:502
1230
- msgid ""
1231
- "rtMedia Photo Filters adds Instagram like filters to images uploaded with "
1232
- "rtMedia."
1233
  msgstr ""
1234
 
1235
  #: app/helper/RTMediaAddon.php:510
@@ -1237,9 +1121,7 @@ msgid "Kaltura Add-on"
1237
  msgstr ""
1238
 
1239
  #: app/helper/RTMediaAddon.php:513
1240
- msgid ""
1241
- "Add support for more video formats using Kaltura video solution. It works "
1242
- "with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1243
  msgstr ""
1244
 
1245
  #: app/helper/RTMediaAddon.php:521
@@ -1247,9 +1129,7 @@ msgid "FFMPEG Add-on"
1247
  msgstr ""
1248
 
1249
  #: app/helper/RTMediaAddon.php:524
1250
- msgid ""
1251
- "Add supports for more audio & video formats using open-source media-node. "
1252
- "Media node comes with automated setup script for Ubuntu/Debian."
1253
  msgstr ""
1254
 
1255
  #: app/helper/RTMediaAddon.php:532
@@ -1257,9 +1137,7 @@ msgid "Membership Add-on"
1257
  msgstr ""
1258
 
1259
  #: app/helper/RTMediaAddon.php:535
1260
- msgid ""
1261
- "rtMedia Membership add-on provides membership functionality in your site in "
1262
- "terms of media upload."
1263
  msgstr ""
1264
 
1265
  #: app/helper/RTMediaAddon.php:575
@@ -1346,73 +1224,67 @@ msgstr ""
1346
  msgid "other friends liked your"
1347
  msgstr ""
1348
 
1349
- #: app/helper/RTMediaSettings.php:215
1350
  msgid "BuddyPress Media Addons for Photos"
1351
  msgstr ""
1352
 
1353
- #: app/helper/RTMediaSettings.php:225
1354
  msgid "rtMedia Themes"
1355
  msgstr ""
1356
 
1357
- #: app/helper/RTMediaSettings.php:295
1358
- msgid ""
1359
- "Currently your network allows uploading of the following file types. You "
1360
- "can change the settings %s"
1361
  msgstr ""
1362
 
1363
- #: app/helper/RTMediaSettings.php:316 app/helper/RTMediaSettings.php:318
1364
  msgid "Atleast one Media Type Must be selected"
1365
  msgstr ""
1366
 
1367
- #: app/helper/RTMediaSettings.php:327 app/helper/RTMediaSettings.php:329
1368
  msgid "\"Number of media\" count value should be numeric and greater than 0."
1369
  msgstr ""
1370
 
1371
- #: app/helper/RTMediaSettings.php:329
1372
  msgid "Default Count"
1373
  msgstr ""
1374
 
1375
- #: app/helper/RTMediaSettings.php:334
1376
  msgid "Settings saved."
1377
  msgstr ""
1378
 
1379
- #: app/helper/RTMediaSettings.php:358
1380
  msgid "If you make changes to width, height or crop settings, you must use "
1381
  msgstr ""
1382
 
1383
- #: app/helper/RTMediaSettings.php:359
1384
  msgid "Regenerate Thumbnail Plugin"
1385
  msgstr ""
1386
 
1387
- #: app/helper/RTMediaSettings.php:360
1388
  msgid " to regenerate old images."
1389
  msgstr ""
1390
 
1391
- #: app/helper/RTMediaSettings.php:383
1392
  msgid "BuddyPress Media 2.6 requires a database upgrade. "
1393
  msgstr ""
1394
 
1395
- #: app/helper/RTMediaSettings.php:384
1396
  msgid "Update Database"
1397
  msgstr ""
1398
 
1399
- #: app/helper/RTMediaSettings.php:398
1400
- msgid ""
1401
- "If your site has some issues due to rtMedia and you want one on one support "
1402
- "then you can create a support topic on the "
1403
  msgstr ""
1404
 
1405
- #: app/helper/RTMediaSettings.php:399
1406
  msgid "rtMedia Support Forum"
1407
  msgstr ""
1408
 
1409
- #: app/helper/RTMediaSettings.php:401
1410
- msgid ""
1411
- "If you have any suggestions, enhancements or bug reports, then you can open "
1412
- "a new issue on "
1413
  msgstr ""
1414
 
1415
- #: app/helper/RTMediaSettings.php:402 app/helper/RTMediaSupport.php:419
1416
  msgid "GitHub"
1417
  msgstr ""
1418
 
@@ -1480,9 +1352,7 @@ msgid "Submit Support Request"
1480
  msgstr ""
1481
 
1482
  #: app/helper/RTMediaSupport.php:411
1483
- msgid ""
1484
- "If your site has some issues due to rtMedia and you want support, feel free "
1485
- "to create a support topic on %s"
1486
  msgstr ""
1487
 
1488
  #: app/helper/RTMediaSupport.php:412
@@ -1490,9 +1360,7 @@ msgid "Community Forum"
1490
  msgstr ""
1491
 
1492
  #: app/helper/RTMediaSupport.php:418
1493
- msgid ""
1494
- "If you have any suggestions, enhancements or bug reports, then you can open "
1495
- "a new issue on %s"
1496
  msgstr ""
1497
 
1498
  #: app/helper/RTMediaSupport.php:438
@@ -1584,15 +1452,13 @@ msgstr ""
1584
  msgid "rtDating"
1585
  msgstr ""
1586
 
1587
- #. Author of the plugin/theme
 
1588
  msgid "rtCamp"
1589
  msgstr ""
1590
 
1591
  #: app/helper/RTMediaThemes.php:111
1592
- msgid ""
1593
- "rtDating is a unique, clean and modern theme only for WordPress. This theme "
1594
- "is mostly useful for dating sites and community websites. It can also be "
1595
- "use for any other WordPress based website."
1596
  msgstr ""
1597
 
1598
  #: app/helper/RTMediaThemes.php:115
@@ -1600,9 +1466,7 @@ msgid "InspireBook"
1600
  msgstr ""
1601
 
1602
  #: app/helper/RTMediaThemes.php:121
1603
- msgid ""
1604
- "InspireBook is a premium WordPress theme, designed especially for "
1605
- "BuddyPress and rtMedia powered social-networks."
1606
  msgstr ""
1607
 
1608
  #: app/helper/RTMediaThemes.php:125
@@ -1610,9 +1474,7 @@ msgid "Foodmania"
1610
  msgstr ""
1611
 
1612
  #: app/helper/RTMediaThemes.php:131
1613
- msgid ""
1614
- "Its premium WordPress theme, designed especially for Food, recipe and "
1615
- "photography community sites."
1616
  msgstr ""
1617
 
1618
  #: app/helper/RTMediaThemes.php:149 app/helper/RTMediaThemes.php:302
@@ -1648,9 +1510,7 @@ msgid "Alkaweb"
1648
  msgstr ""
1649
 
1650
  #: app/helper/RTMediaThemes.php:233
1651
- msgid ""
1652
- "Woffice is a feature rich, powerful Multipurpose Intranet/Extranet "
1653
- "Wordpress theme."
1654
  msgstr ""
1655
 
1656
  #: app/helper/RTMediaThemes.php:237
@@ -1662,9 +1522,7 @@ msgid "dunhakdis"
1662
  msgstr ""
1663
 
1664
  #: app/helper/RTMediaThemes.php:243
1665
- msgid ""
1666
- "Thrive is an innovative WordPress Theme designed to cater company portals, "
1667
- "organisational websites, company intranet and extranets."
1668
  msgstr ""
1669
 
1670
  #: app/helper/RTMediaThemes.php:247
@@ -1676,11 +1534,7 @@ msgid "gavick"
1676
  msgstr ""
1677
 
1678
  #: app/helper/RTMediaThemes.php:253
1679
- msgid ""
1680
- "(M)Social is a sophisticated, vibrant community theme that offers "
1681
- "incredible grid layouts, with full BuddyPress support so your users can "
1682
- "interact with each other, create their own pages, and share their thoughts "
1683
- "and images with the community."
1684
  msgstr ""
1685
 
1686
  #: app/helper/RTMediaThemes.php:257
@@ -1688,10 +1542,7 @@ msgid "Klein"
1688
  msgstr ""
1689
 
1690
  #: app/helper/RTMediaThemes.php:263
1691
- msgid ""
1692
- "Klein is an innovative WordPress theme built to support BuddyPress, "
1693
- "bbPress, and WooCommerce out of the box. Perfect for websites that "
1694
- "interacts with many users."
1695
  msgstr ""
1696
 
1697
  #: app/helper/RTMediaThemes.php:267
@@ -1703,11 +1554,7 @@ msgid "SeventhQueen"
1703
  msgstr ""
1704
 
1705
  #: app/helper/RTMediaThemes.php:273
1706
- msgid ""
1707
- "SweetDate is a unique, clean and modern Premium Wordpress theme. It is "
1708
- "perfect for a dating or community website but can be used as well for any "
1709
- "other domain. They added all the things you need to create a perfect "
1710
- "community system."
1711
  msgstr ""
1712
 
1713
  #: app/helper/RTMediaThemes.php:277
@@ -1715,16 +1562,11 @@ msgid "KLEO"
1715
  msgstr ""
1716
 
1717
  #: app/helper/RTMediaThemes.php:283
1718
- msgid ""
1719
- "You no longer need to be a professional developer or designer to create an "
1720
- "awesome website. Let your imagination run wild and create the site of your "
1721
- "dreams. KLEO has all the tools to get you started."
1722
  msgstr ""
1723
 
1724
  #: app/helper/RTMediaThemes.php:365
1725
- msgid ""
1726
- "These are the third party themes. For any issues or queries regarding these "
1727
- "themes please contact theme developers."
1728
  msgstr ""
1729
 
1730
  #: app/helper/RTMediaThemes.php:368
@@ -1732,9 +1574,7 @@ msgid "Are you a developer?"
1732
  msgstr ""
1733
 
1734
  #: app/helper/RTMediaThemes.php:371
1735
- msgid ""
1736
- "If you have developed a rtMedia compatible theme and would like it to list "
1737
- "here, please email us at"
1738
  msgstr ""
1739
 
1740
  #: app/helper/RTMediaThemes.php:372
@@ -1742,9 +1582,7 @@ msgid "rtmedia@rtcamp.com"
1742
  msgstr ""
1743
 
1744
  #: app/helper/RTMediaUploadException.php:41
1745
- msgid ""
1746
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
1747
- "the HTML form"
1748
  msgstr ""
1749
 
1750
  #: app/helper/RTMediaUploadException.php:44
@@ -1780,9 +1618,7 @@ msgid "Warning!"
1780
  msgstr ""
1781
 
1782
  #: app/importers/BPMediaAlbumimporter.php:65
1783
- msgid ""
1784
- "This import process is irreversible. Although everything is tested, please "
1785
- "take a "
1786
  msgstr ""
1787
 
1788
  #: app/importers/BPMediaAlbumimporter.php:66
@@ -1790,9 +1626,7 @@ msgid "backup of your database and files"
1790
  msgstr ""
1791
 
1792
  #: app/importers/BPMediaAlbumimporter.php:67
1793
- msgid ""
1794
- ", before proceeding. If you don't know your way around databases and files, "
1795
- "consider "
1796
  msgstr ""
1797
 
1798
  #: app/importers/BPMediaAlbumimporter.php:68
@@ -1804,9 +1638,7 @@ msgid ", or another professional."
1804
  msgstr ""
1805
 
1806
  #: app/importers/BPMediaAlbumimporter.php:71
1807
- msgid ""
1808
- "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it "
1809
- "is set to \"false\", so that it doesn't conflict with the import process."
1810
  msgstr ""
1811
 
1812
  #: app/importers/BPMediaAlbumimporter.php:72
@@ -1871,9 +1703,7 @@ msgid "Tweet this"
1871
  msgstr ""
1872
 
1873
  #: app/importers/BPMediaAlbumimporter.php:154
1874
- msgid ""
1875
- "However, a lot of unnecessary files and a database table are still eating "
1876
- "up your resources. If everything seems fine, you can clean this data up."
1877
  msgstr ""
1878
 
1879
  #: app/importers/BPMediaAlbumimporter.php:157
@@ -1889,9 +1719,7 @@ msgid "Why don't you try adding some instagram like effects to your images?"
1889
  msgstr ""
1890
 
1891
  #: app/importers/BPMediaAlbumimporter.php:172
1892
- msgid ""
1893
- "rtMedia Photo Filters adds Instagram like filters to images uploaded with "
1894
- "BuddyPress Media."
1895
  msgstr ""
1896
 
1897
  #: app/importers/BPMediaAlbumimporter.php:173
@@ -1899,15 +1727,11 @@ msgid "Important"
1899
  msgstr ""
1900
 
1901
  #: app/importers/BPMediaAlbumimporter.php:173
1902
- msgid ""
1903
- "You need to have ImageMagick installed on your server for this addon to "
1904
- "work."
1905
  msgstr ""
1906
 
1907
  #: app/importers/BPMediaAlbumimporter.php:183
1908
- msgid ""
1909
- "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you "
1910
- "want an importer for?"
1911
  msgstr ""
1912
 
1913
  #: app/importers/BPMediaAlbumimporter.php:184
@@ -2070,13 +1894,13 @@ msgstr ""
2070
  msgid "Public - Visible to the world"
2071
  msgstr ""
2072
 
2073
- #: app/main/RTMedia.php:605 app/main/controllers/template/RTMediaNav.php:182
2074
  #: app/main/controllers/template/rt-template-functions.php:86
2075
  msgid "All"
2076
  msgstr ""
2077
 
2078
  #: app/main/RTMedia.php:617 app/main/controllers/media/RTMediaAlbum.php:54
2079
- #: app/main/controllers/template/rt-template-functions.php:1454
2080
  #: app/main/controllers/upload/RTMediaUploadView.php:52
2081
  #: app/main/controllers/upload/RTMediaUploadView.php:55
2082
  msgid "Album"
@@ -2088,8 +1912,8 @@ msgid "Albums"
2088
  msgstr ""
2089
 
2090
  #: app/main/RTMedia.php:631 app/main/controllers/media/RTMediaLoginPopup.php:38
2091
- #: app/main/controllers/template/rt-template-functions.php:2216
2092
- #: app/main/controllers/template/rt-template-functions.php:2220
2093
  msgid "Upload"
2094
  msgstr ""
2095
 
@@ -2196,16 +2020,16 @@ msgstr ""
2196
  #: app/main/RTMedia.php:985
2197
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:63
2198
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2199
- #: app/main/controllers/template/rt-template-functions.php:778
2200
- #: app/main/controllers/template/rt-template-functions.php:799
2201
  msgid "Edit"
2202
  msgstr ""
2203
 
2204
  #: app/main/RTMedia.php:986
2205
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:67
2206
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2207
- #: app/main/controllers/template/rt-template-functions.php:1535
2208
- #: app/main/controllers/template/rt-template-functions.php:1542
2209
  #: templates/media/album-single-edit.php:78
2210
  msgid "Delete"
2211
  msgstr ""
@@ -2264,7 +2088,7 @@ msgstr ""
2264
 
2265
  #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:319
2266
  #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:100
2267
- #: app/main/controllers/template/rt-template-functions.php:1569
2268
  msgid "You are not allowed to upload/attach media."
2269
  msgstr ""
2270
 
@@ -2363,9 +2187,7 @@ msgid "Username: %s"
2363
  msgstr ""
2364
 
2365
  #: app/main/controllers/api/RTMediaJsonApi.php:341
2366
- msgid ""
2367
- "To reset your password visit the following address, otherwise just ignore "
2368
- "this email and nothing will happen."
2369
  msgstr ""
2370
 
2371
  #: app/main/controllers/api/RTMediaJsonApi.php:344
@@ -2544,7 +2366,7 @@ msgid "Group Admin only"
2544
  msgstr ""
2545
 
2546
  #: app/main/controllers/group/RTMediaGroupExtension.php:116
2547
- #: app/main/controllers/privacy/RTMediaPrivacy.php:408
2548
  #: templates/media/album-single-edit.php:55
2549
  msgid "Save Changes"
2550
  msgstr ""
@@ -2559,11 +2381,15 @@ msgstr ""
2559
 
2560
  #: app/main/controllers/group/RTMediaGroupExtension.php:170
2561
  msgid ""
2562
- "You could display a small snippet of information from your group extension "
2563
- "here. It will show on the group\n"
2564
  "\t home screen."
2565
  msgstr ""
2566
 
 
 
 
 
 
2567
  #: app/main/controllers/media/RTMediaAlbum.php:36
2568
  msgid "Hidden (%s)"
2569
  msgid_plural "Hidden (%s)"
@@ -2575,12 +2401,12 @@ msgid "Create"
2575
  msgstr ""
2576
 
2577
  #: app/main/controllers/media/RTMediaAlbum.php:56
2578
- #: app/main/controllers/template/rt-template-functions.php:1847
2579
  msgid "Create Album"
2580
  msgstr ""
2581
 
2582
  #: app/main/controllers/media/RTMediaAlbum.php:57
2583
- #: app/main/controllers/template/rt-template-functions.php:1927
2584
  msgid "Edit Album"
2585
  msgstr ""
2586
 
@@ -2650,8 +2476,8 @@ msgid "Unlike"
2650
  msgstr ""
2651
 
2652
  #: app/main/controllers/media/RTMediaLoginPopup.php:38
2653
- #: app/main/controllers/template/rt-template-functions.php:2216
2654
- #: app/main/controllers/template/rt-template-functions.php:2220
2655
  msgid "Upload Media"
2656
  msgstr ""
2657
 
@@ -2687,15 +2513,15 @@ msgstr ""
2687
  msgid "%1$s added %4$d %3$s"
2688
  msgstr ""
2689
 
2690
- #: app/main/controllers/privacy/RTMediaPrivacy.php:370
2691
  msgid "No changes were made to your account."
2692
  msgstr ""
2693
 
2694
- #: app/main/controllers/privacy/RTMediaPrivacy.php:373
2695
  msgid "Your default privacy settings saved successfully."
2696
  msgstr ""
2697
 
2698
- #: app/main/controllers/privacy/RTMediaPrivacy.php:397
2699
  msgid "Default Privacy"
2700
  msgstr ""
2701
 
@@ -2723,200 +2549,206 @@ msgstr ""
2723
  msgid "Data mismatch, Please insert data properly."
2724
  msgstr ""
2725
 
2726
- #: app/main/controllers/template/RTMediaTemplate.php:105
2727
- #: app/main/controllers/template/RTMediaTemplate.php:156
 
 
 
 
 
2728
  msgid "Invalid attribute passed for rtmedia_gallery shortcode."
2729
  msgstr ""
2730
 
2731
- #: app/main/controllers/template/RTMediaTemplate.php:344
2732
- #: app/main/controllers/template/RTMediaTemplate.php:428
2733
- #: app/main/controllers/template/RTMediaTemplate.php:516
2734
- #: app/main/controllers/template/RTMediaTemplate.php:652
2735
  msgid "Ooops !!! Invalid access. No nonce was found !!"
2736
  msgstr ""
2737
 
2738
- #: app/main/controllers/template/RTMediaTemplate.php:351
2739
  msgid "Media updated Sucessfully"
2740
  msgstr ""
2741
 
2742
- #: app/main/controllers/template/RTMediaTemplate.php:357
2743
  msgid "Error in updating Media"
2744
  msgstr ""
2745
 
2746
- #: app/main/controllers/template/rt-template-functions.php:754
2747
- #: app/main/controllers/template/rt-template-functions.php:1752
2748
  msgid "Options"
2749
  msgstr ""
2750
 
2751
- #: app/main/controllers/template/rt-template-functions.php:842
2752
  msgid "There are no comments on this media yet."
2753
  msgstr ""
2754
 
2755
- #: app/main/controllers/template/rt-template-functions.php:878
2756
  msgid "Delete Comment"
2757
  msgstr ""
2758
 
2759
- #: app/main/controllers/template/rt-template-functions.php:1092
2760
  msgid "Go to page no : "
2761
  msgstr ""
2762
 
2763
- #: app/main/controllers/template/rt-template-functions.php:1097
2764
  msgid "Go"
2765
  msgstr ""
2766
 
2767
- #: app/main/controllers/template/rt-template-functions.php:1268
2768
  msgid "Video Thumbnail"
2769
  msgstr ""
2770
 
2771
- #: app/main/controllers/template/rt-template-functions.php:1318
2772
  msgid "Video Thumbnail:"
2773
  msgstr ""
2774
 
2775
- #: app/main/controllers/template/rt-template-functions.php:1405
2776
  msgid "Image"
2777
  msgstr ""
2778
 
2779
- #: app/main/controllers/template/rt-template-functions.php:1422
2780
  msgid "Modify Image"
2781
  msgstr ""
2782
 
2783
- #: app/main/controllers/template/rt-template-functions.php:1496
2784
  msgid "Type Comment..."
2785
  msgstr ""
2786
 
2787
- #: app/main/controllers/template/rt-template-functions.php:1499
2788
  #: templates/media/media-single.php:98 templates/media/media-single.php:141
2789
  msgid "Comment"
2790
  msgstr ""
2791
 
2792
- #: app/main/controllers/template/rt-template-functions.php:1535
2793
- #: app/main/controllers/template/rt-template-functions.php:1542
2794
  msgid "Delete Media"
2795
  msgstr ""
2796
 
2797
- #: app/main/controllers/template/rt-template-functions.php:1696
2798
  msgid "Profile Albums"
2799
  msgstr ""
2800
 
2801
- #: app/main/controllers/template/rt-template-functions.php:1699
2802
- #: app/main/controllers/template/rt-template-functions.php:1731
2803
  msgid "Group Albums"
2804
  msgstr ""
2805
 
2806
- #: app/main/controllers/template/rt-template-functions.php:1817
2807
  msgid "Create New Album"
2808
  msgstr ""
2809
 
2810
- #: app/main/controllers/template/rt-template-functions.php:1817
2811
  msgid "Add Album"
2812
  msgstr ""
2813
 
2814
- #: app/main/controllers/template/rt-template-functions.php:1833
2815
  msgid "Create an Album"
2816
  msgstr ""
2817
 
2818
- #: app/main/controllers/template/rt-template-functions.php:1836
2819
  msgid "Album Title : "
2820
  msgstr ""
2821
 
2822
- #: app/main/controllers/template/rt-template-functions.php:1878
2823
- #: app/main/controllers/template/rt-template-functions.php:1886
2824
- #: app/main/controllers/template/rt-template-functions.php:1937
2825
  msgid "Merge Album"
2826
  msgstr ""
2827
 
2828
- #: app/main/controllers/template/rt-template-functions.php:1881
2829
  msgid "Select Album to merge with : "
2830
  msgstr ""
2831
 
2832
- #: app/main/controllers/template/rt-template-functions.php:1928
2833
  msgid "Delete Album"
2834
  msgstr ""
2835
 
2836
- #: app/main/controllers/template/rt-template-functions.php:1965
2837
  msgid "Merge"
2838
  msgstr ""
2839
 
2840
- #: app/main/controllers/template/rt-template-functions.php:2024
2841
  msgid "Privacy : "
2842
  msgstr ""
2843
 
2844
- #: app/main/controllers/template/rt-template-functions.php:2204
2845
  msgid "people like this"
2846
  msgstr ""
2847
 
2848
- #: app/main/controllers/template/rt-template-functions.php:2299
2849
  msgid "Empowering your community with "
2850
  msgstr ""
2851
 
2852
- #: app/main/controllers/template/rt-template-functions.php:2301
2853
  msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2854
  msgstr ""
2855
 
2856
- #: app/main/controllers/template/rt-template-functions.php:2317
2857
  msgid "Close (Esc)"
2858
  msgstr ""
2859
 
2860
- #: app/main/controllers/template/rt-template-functions.php:2331
2861
  msgid "Public"
2862
  msgstr ""
2863
 
2864
- #: app/main/controllers/template/rt-template-functions.php:2335
2865
  msgid "All members"
2866
  msgstr ""
2867
 
2868
- #: app/main/controllers/template/rt-template-functions.php:2339
2869
  msgid "Your friends"
2870
  msgstr ""
2871
 
2872
- #: app/main/controllers/template/rt-template-functions.php:2343
2873
  msgid "Only you"
2874
  msgstr ""
2875
 
2876
- #: app/main/controllers/template/rt-template-functions.php:2347
2877
  msgid "Blocked temporarily"
2878
  msgstr ""
2879
 
2880
- #: app/main/controllers/template/rt-template-functions.php:2383
2881
  msgid "%s ago "
2882
  msgstr ""
2883
 
2884
- #: app/main/controllers/template/rt-template-functions.php:2399
2885
  msgid "1 second"
2886
  msgid_plural "%s seconds"
2887
  msgstr[0] ""
2888
  msgstr[1] ""
2889
 
2890
- #: app/main/controllers/template/rt-template-functions.php:2402
2891
  msgid "1 minute"
2892
  msgid_plural "%s minutes"
2893
  msgstr[0] ""
2894
  msgstr[1] ""
2895
 
2896
- #: app/main/controllers/template/rt-template-functions.php:2405
2897
  msgid "1 hour"
2898
  msgid_plural "%s hours"
2899
  msgstr[0] ""
2900
  msgstr[1] ""
2901
 
2902
- #: app/main/controllers/template/rt-template-functions.php:2790
2903
  #. translators: date format, see http:php.net/date
 
 
2904
  msgid "You can consider rtMedia Team for following :"
2905
  msgstr ""
2906
 
2907
- #: app/main/controllers/template/rt-template-functions.php:2793
2908
  msgid "rtMedia Customization ( in Upgrade Safe manner )"
2909
  msgstr ""
2910
 
2911
- #: app/main/controllers/template/rt-template-functions.php:2794
2912
  msgid "WordPress/BuddyPress Theme Design and Development"
2913
  msgstr ""
2914
 
2915
- #: app/main/controllers/template/rt-template-functions.php:2795
2916
  msgid "WordPress/BuddyPress Plugin Development"
2917
  msgstr ""
2918
 
2919
- #: app/main/controllers/template/rt-template-functions.php:2800
2920
  msgid "Contact Us"
2921
  msgstr ""
2922
 
@@ -2964,9 +2796,7 @@ msgstr ""
2964
 
2965
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:240
2966
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:245
2967
- msgid ""
2968
- "The MP4 file you have uploaded is using an unsupported video codec. "
2969
- "Supported video codec is H.264."
2970
  msgstr ""
2971
 
2972
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:250
@@ -2979,9 +2809,7 @@ msgstr ""
2979
 
2980
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:270
2981
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:275
2982
- msgid ""
2983
- "The MP3 file you have uploaded is using an unsupported audio format. "
2984
- "Supported audio format is MP3."
2985
  msgstr ""
2986
 
2987
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:280
@@ -2989,9 +2817,7 @@ msgid "The MP3 file you have uploaded is not an audio file."
2989
  msgstr ""
2990
 
2991
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:288
2992
- msgid ""
2993
- "Media File you have tried to upload is not supported. Supported media files "
2994
- "are .jpg, .png, .gif, .mp3, .mov and .mp4."
2995
  msgstr ""
2996
 
2997
  #: app/main/deprecated/RTMediaDeprecated.php:27
@@ -3044,9 +2870,7 @@ msgid "Unsubscribe"
3044
  msgstr ""
3045
 
3046
  #: app/services/RTMediaEncoding.php:278
3047
- msgid ""
3048
- "Just to improve our service we would like to know the reason for you to "
3049
- "leave us."
3050
  msgstr ""
3051
 
3052
  #: app/services/RTMediaEncoding.php:328 app/services/RTMediaEncoding.php:448
@@ -3172,9 +2996,7 @@ msgid "Could not read file."
3172
  msgstr ""
3173
 
3174
  #: app/services/RTMediaEncoding.php:583
3175
- msgid ""
3176
- "Something went wrong. The required attachment id does not exists. It must "
3177
- "have been deleted."
3178
  msgstr ""
3179
 
3180
  #: app/services/RTMediaEncoding.php:600
@@ -3295,36 +3117,22 @@ msgstr ""
3295
  #: templates/media/media-single.php:41
3296
  msgid "under"
3297
  msgstr ""
3298
-
3299
  #. Plugin Name of the plugin/theme
3300
  msgid "rtMedia for WordPress, BuddyPress and bbPress"
3301
  msgstr ""
3302
 
3303
  #. Plugin URI of the plugin/theme
3304
- msgid ""
3305
- "https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign="
3306
- "buddypress-media"
3307
  msgstr ""
3308
 
3309
  #. Description of the plugin/theme
3310
- msgid ""
3311
- "This plugin adds missing media rich features like photos, videos and audio "
3312
- "uploading to BuddyPress which are essential if you are building social "
3313
- "network, seriously!"
3314
  msgstr ""
3315
 
3316
- #. Author URI of the plugin/theme
3317
- msgid ""
3318
- "http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign="
3319
- "buddypress-media"
3320
  msgstr ""
3321
 
3322
- #: app/main/controllers/media/RTMediaAlbum.php:35
3323
- msgctxt "Status General Name"
3324
- msgid "hidden"
3325
  msgstr ""
3326
-
3327
- #: app/main/controllers/template/RTMediaNav.php:32
3328
- msgctxt "My Account Privacy sub nav"
3329
- msgid "Privacy"
3330
- msgstr ""
1
+ # <!=Copyright (C) 2016 rtCamp
2
+ # This file is distributed under the same license as the rtMedia for WordPress, BuddyPress and bbPress package.=!>
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 4.0.1\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/index\n"
7
+ "POT-Creation-Date: 2016-06-23 09:00:56+00:00\n"
8
  "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
  #: app/admin/RTMediaAdmin.php:154
16
  msgid "View &#8220;%s&#8221;"
31
  #: app/admin/RTMediaAdmin.php:225 app/admin/RTMediaAdmin.php:1166
32
  #: app/admin/RTMediaAdmin.php:1837 app/admin/RTMediaAdmin.php:1855
33
  #: app/admin/RTMediaAdmin.php:1873 app/admin/RTMediaFormHandler.php:435
34
+ #: app/admin/RTMediaFormHandler.php:446 app/helper/RTMediaSettings.php:297
35
  #: app/helper/RTMediaSupport.php:368 app/helper/RTMediaSupport.php:636
36
  msgid "here"
37
  msgstr ""
140
 
141
  #: app/admin/RTMediaAdmin.php:730 app/admin/RTMediaAdmin.php:824
142
  #: app/admin/RTMediaAdmin.php:827 app/admin/RTMediaAdmin.php:968
143
+ #: app/admin/RTMediaAdmin.php:1573 app/helper/RTMediaSettings.php:221
144
  #: app/helper/RTMediaSupport.php:52 app/helper/RTMediaSupport.php:53
145
  msgid "Support"
146
  msgstr ""
337
  msgstr ""
338
 
339
  #: app/admin/RTMediaAdmin.php:1689
340
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:417
341
  msgid "Privacy"
342
  msgstr ""
343
 
402
  msgstr ""
403
 
404
  #: app/admin/RTMediaAdmin.php:1836
405
+ msgid "You have images enabled on rtMedia but your network allowed filetypes do not permit uploading of %s. Click "
 
 
406
  msgstr ""
407
 
408
  #: app/admin/RTMediaAdmin.php:1838 app/admin/RTMediaAdmin.php:1856
421
  msgstr ""
422
 
423
  #: app/admin/RTMediaAdmin.php:1854
424
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes do not permit uploading of mp4. Click "
 
 
425
  msgstr ""
426
 
427
  #: app/admin/RTMediaAdmin.php:1872
428
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes do not permit uploading of mp3. Click "
 
 
429
  msgstr ""
430
 
431
  #: app/admin/RTMediaAdmin.php:1893
445
  msgstr ""
446
 
447
  #: app/admin/RTMediaAdmin.php:2033
448
+ msgid "Please update rtMedia template files if you have overridden the default rtMedia templates in your theme. If not, you can ignore and hide this notice."
 
 
 
449
  msgstr ""
450
 
451
  #: app/admin/RTMediaAdmin.php:2033
477
  msgstr ""
478
 
479
  #: app/admin/RTMediaFormHandler.php:296
480
+ msgid "This will display the comment form and comment listing on single media pages as well as inside lightbox (if lightbox is enabled)."
 
 
481
  msgstr ""
482
 
483
  #: app/admin/RTMediaFormHandler.php:301
533
  msgstr ""
534
 
535
  #: app/admin/RTMediaFormHandler.php:344
536
+ msgid "To set gallery for fixed width, set image height to 0 and width as per your requirement and vice-versa."
 
 
537
  msgstr ""
538
 
539
  #: app/admin/RTMediaFormHandler.php:347
565
  msgstr ""
566
 
567
  #: app/admin/RTMediaFormHandler.php:402
568
+ msgid "To make rtMedia better compatible with your sites, you can help the rtMedia team learn what themes and plugins you are using. No private information about your setup will be sent during tracking."
 
 
 
569
  msgstr ""
570
 
571
  #: app/admin/RTMediaFormHandler.php:406
573
  msgstr ""
574
 
575
  #: app/admin/RTMediaFormHandler.php:411
576
+ msgid "Add rtMedia menu to WordPress admin bar for easy access to settings and moderation page (if enabled)."
 
 
577
  msgstr ""
578
 
579
  #: app/admin/RTMediaFormHandler.php:416
589
  msgstr ""
590
 
591
  #: app/admin/RTMediaFormHandler.php:431
592
+ msgid "Add your affiliate-id along with footer link and get rewarded by our affiliation program."
 
 
593
  msgstr ""
594
 
595
  #: app/admin/RTMediaFormHandler.php:435
605
  msgstr ""
606
 
607
  #: app/admin/RTMediaFormHandler.php:443
608
+ msgid "This will allow handling API requests for rtMedia sent through any mobile app."
 
 
609
  msgstr ""
610
 
611
  #: app/admin/RTMediaFormHandler.php:446
632
  msgid "Media Types Settings"
633
  msgstr ""
634
 
635
+ #: app/admin/RTMediaFormHandler.php:557 app/helper/RTMediaSettings.php:319
636
  msgid "Media Type"
637
  msgstr ""
638
 
685
  msgstr ""
686
 
687
  #: app/admin/RTMediaFormHandler.php:821
688
+ msgid " If you choose more than 1 thumbnail, your users will be able to change the thumbnail by going to video 'edit' section. Maximum value is 10."
 
 
689
  msgstr ""
690
 
691
  #: app/admin/RTMediaFormHandler.php:829
713
  msgstr ""
714
 
715
  #: app/admin/RTMediaFormHandler.php:895
716
+ msgid "Load default rtMedia styles. You need to write your own style for rtMedia if you disable it."
 
 
717
  msgstr ""
718
 
719
  #: app/admin/RTMediaFormHandler.php:900
745
  msgstr ""
746
 
747
  #: app/admin/RTMediaFormHandler.php:957
748
+ msgid "If you choose this, users will be able to change privacy of their own uploads."
 
 
749
  msgstr ""
750
 
751
  #: app/admin/RTMediaFormHandler.php:961
781
  msgstr ""
782
 
783
  #: app/admin/RTMediaFormHandler.php:1039
784
+ msgid "With bulk uploads activity, the stream may get flooded. You can control the maximum number of media items or files per activity. This limit will not affect the actual number of uploads. This is only for display. \"0\" means unlimited."
 
 
 
 
785
  msgstr ""
786
 
787
  #: app/admin/RTMediaFormHandler.php:1046
789
  msgstr ""
790
 
791
  #: app/admin/RTMediaFormHandler.php:1051
792
+ msgid "This will enable notifications to media authors for media likes and comments."
 
 
793
  msgstr ""
794
 
795
  #: app/admin/RTMediaFormHandler.php:1057
813
  msgstr ""
814
 
815
  #: app/admin/RTMediaFormHandler.php:1085
816
+ msgid "This will add 'album' tab to BuddyPress profile and group depending on the ^above^ settings."
 
 
817
  msgstr ""
818
 
819
  #: app/admin/templates/tmpl-rtm-album-favourites-importer.php:4
833
  msgstr ""
834
 
835
  #: app/helper/RTMediaAddon.php:117
836
+ msgid "Generate an XML sitemap for all the public media files uploaded via rtMedia plugin. These sitemaps can be useful to index search engine to improve website SEO."
 
 
 
837
  msgstr ""
838
 
839
  #: app/helper/RTMediaAddon.php:125
841
  msgstr ""
842
 
843
  #: app/helper/RTMediaAddon.php:128
844
+ msgid "Report media if they find offensive. Set number of reports to automatically take down media from site."
 
 
845
  msgstr ""
846
 
847
  #: app/helper/RTMediaAddon.php:136
849
  msgstr ""
850
 
851
  #: app/helper/RTMediaAddon.php:139
852
+ msgid "Categories media based on attributes. Site owner need to create attributes. When user upload a media, can select in which attribute that media can add."
 
 
853
  msgstr ""
854
 
855
  #: app/helper/RTMediaAddon.php:147
857
  msgstr ""
858
 
859
  #: app/helper/RTMediaAddon.php:150
860
+ msgid "Allow users to upload documents and other file type using rtMedia upload box. This addon support all the file extensions which WordPress allows."
 
 
861
  msgstr ""
862
 
863
  #: app/helper/RTMediaAddon.php:158
865
  msgstr ""
866
 
867
  #: app/helper/RTMediaAddon.php:161
868
+ msgid "This plugin allows the creation of multiple default albums for rtMedia uploads. One of these albums can be set as the default global album."
 
 
869
  msgstr ""
870
 
871
  #: app/helper/RTMediaAddon.php:169
873
  msgstr ""
874
 
875
  #: app/helper/RTMediaAddon.php:172
876
+ msgid "Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting software."
 
 
877
  msgstr ""
878
 
879
  #: app/helper/RTMediaAddon.php:180
881
  msgstr ""
882
 
883
  #: app/helper/RTMediaAddon.php:183
884
+ msgid "Audio can be grouped into playlists. Once the user upload any audio file, can create a playlist or use existing one to manage audio files."
 
 
885
  msgstr ""
886
 
887
  #: app/helper/RTMediaAddon.php:191
889
  msgstr ""
890
 
891
  #: app/helper/RTMediaAddon.php:194
892
+ msgid "Users can create their list of favorite media in which they can add media previously uploaded by any user."
 
 
893
  msgstr ""
894
 
895
  #: app/helper/RTMediaAddon.php:202
897
  msgstr ""
898
 
899
  #: app/helper/RTMediaAddon.php:205
900
+ msgid "Site admin can set an upload limit on the basis of time span, file size (MB) and number of files user can upload."
 
 
901
  msgstr ""
902
 
903
  #: app/helper/RTMediaAddon.php:213
913
  msgstr ""
914
 
915
  #: app/helper/RTMediaAddon.php:227
916
+ msgid "Site admin can create and upload media into WordPress album. Create album without being dependent on BuddyPress."
 
 
917
  msgstr ""
918
 
919
  #: app/helper/RTMediaAddon.php:235
921
  msgstr ""
922
 
923
  #: app/helper/RTMediaAddon.php:238
924
+ msgid "Allow users to upload a media file in WordPress comment attachment box. It will display a thumbnail of attached file."
 
 
925
  msgstr ""
926
 
927
  #: app/helper/RTMediaAddon.php:246
929
  msgstr ""
930
 
931
  #: app/helper/RTMediaAddon.php:249
932
+ msgid "Share uploaded media on social network sites like Facebook, twitter, linkedin, Google +. This addon integrate with rtSocial plugin."
 
 
933
  msgstr ""
934
 
935
  #: app/helper/RTMediaAddon.php:257
937
  msgstr ""
938
 
939
  #: app/helper/RTMediaAddon.php:260
940
+ msgid "This addon provide widgets to upload media and display gallery for rtMedia plugin."
 
 
941
  msgstr ""
942
 
943
  #: app/helper/RTMediaAddon.php:268
945
  msgstr ""
946
 
947
  #: app/helper/RTMediaAddon.php:271
948
+ msgid "Display 5 star rating for all the uploaded media. User can rate the media files from 1 to 5 star."
 
 
949
  msgstr ""
950
 
951
  #: app/helper/RTMediaAddon.php:279
961
  msgstr ""
962
 
963
  #: app/helper/RTMediaAddon.php:293
964
+ msgid "Sort uploaded media based on file size, ascending/descending title, upload date of media."
 
 
965
  msgstr ""
966
 
967
  #: app/helper/RTMediaAddon.php:301
969
  msgstr ""
970
 
971
  #: app/helper/RTMediaAddon.php:304
972
+ msgid "Bulk edit option will allow user to quickly select media files and do required actions like move files from one album to another, change attributes, change privacy, delete files."
 
 
 
973
  msgstr ""
974
 
975
  #: app/helper/RTMediaAddon.php:312
993
  msgstr ""
994
 
995
  #: app/helper/RTMediaAddon.php:337
996
+ msgid "User can download media from website. Site owner can restrict which media type can be allowed to download."
 
 
997
  msgstr ""
998
 
999
  #: app/helper/RTMediaAddon.php:345
1001
  msgstr ""
1002
 
1003
  #: app/helper/RTMediaAddon.php:348
1004
+ msgid "Users do not need to download media files from a URL and then upload it with rtMedia. Just provide the absolute URL for the media and it will upload on site."
 
 
 
1005
  msgstr ""
1006
 
1007
  #: app/helper/RTMediaAddon.php:356
1009
  msgstr ""
1010
 
1011
  #: app/helper/RTMediaAddon.php:359
1012
+ msgid "This add-on let you know who liked the media. User can also see which media they liked under their profile."
 
 
1013
  msgstr ""
1014
 
1015
  #: app/helper/RTMediaAddon.php:367
1017
  msgstr ""
1018
 
1019
  #: app/helper/RTMediaAddon.php:370
1020
+ msgid "This addon provides a preview of the URL that is shared in BuddyPress activity. Just enter the URL you want to share on your site and see a preview of it before it is shared."
 
 
 
1021
  msgstr ""
1022
 
1023
  #: app/helper/RTMediaAddon.php:378
1025
  msgstr ""
1026
 
1027
  #: app/helper/RTMediaAddon.php:381
1028
+ msgid "Enable view count for all the uploaded media. Whenever user open that media file in lightbox or in single media view, that view count will be calculated and display next to media file."
 
 
 
1029
  msgstr ""
1030
 
1031
  #: app/helper/RTMediaAddon.php:389
1033
  msgstr ""
1034
 
1035
  #: app/helper/RTMediaAddon.php:392
1036
+ msgid "This add-on will add shortcode generator button in WordPress post and page editor for all the rtMedia shortcodes."
 
 
1037
  msgstr ""
1038
 
1039
  #: app/helper/RTMediaAddon.php:400
1041
  msgstr ""
1042
 
1043
  #: app/helper/RTMediaAddon.php:403
1044
+ msgid "Set album privacy when user create an album or change album privacy when editing existing albums. The privacy levels are Public, Logged in user, Friends and Private."
 
 
 
1045
  msgstr ""
1046
 
1047
  #: app/helper/RTMediaAddon.php:411
1057
  msgstr ""
1058
 
1059
  #: app/helper/RTMediaAddon.php:425
1060
+ msgid "Allow media owner to change the thumbnail of uploaded audio/video files. The File Upload box will be provided to change media thumbnail."
 
 
1061
  msgstr ""
1062
 
1063
  #: app/helper/RTMediaAddon.php:433
1065
  msgstr ""
1066
 
1067
  #: app/helper/RTMediaAddon.php:436
1068
+ msgid "This plugin integrates rtMedia and myCRED plugin, users can be can award virtual points for various rtMedia activities, like media upload, likes, deleted etc."
 
 
 
1069
  msgstr ""
1070
 
1071
  #: app/helper/RTMediaAddon.php:444
1073
  msgstr ""
1074
 
1075
  #: app/helper/RTMediaAddon.php:447
1076
+ msgid "User must have to check the terms and conditions checkbox before uploading the media."
 
 
1077
  msgstr ""
1078
 
1079
  #: app/helper/RTMediaAddon.php:455
1081
  msgstr ""
1082
 
1083
  #: app/helper/RTMediaAddon.php:458
1084
+ msgid "If you are using CubePoints plugin on your website than rtMedia CubePoint add-on can be integrate with that plugin to setup point management system for rtMedia related activities."
 
 
 
1085
  msgstr ""
1086
 
1087
  #: app/helper/RTMediaAddon.php:466
1097
  msgstr ""
1098
 
1099
  #: app/helper/RTMediaAddon.php:480
1100
+ msgid "rtMedia Photo Watermark let you add watermark on your images uploaded using rtMedia."
 
 
1101
  msgstr ""
1102
 
1103
  #: app/helper/RTMediaAddon.php:488
1105
  msgstr ""
1106
 
1107
  #: app/helper/RTMediaAddon.php:491
1108
+ msgid "rtMedia Photo Tagging enable users to tag their friends on photos uploaded using rtMedia."
 
 
1109
  msgstr ""
1110
 
1111
  #: app/helper/RTMediaAddon.php:499
1113
  msgstr ""
1114
 
1115
  #: app/helper/RTMediaAddon.php:502
1116
+ msgid "rtMedia Photo Filters adds Instagram like filters to images uploaded with rtMedia."
 
 
1117
  msgstr ""
1118
 
1119
  #: app/helper/RTMediaAddon.php:510
1121
  msgstr ""
1122
 
1123
  #: app/helper/RTMediaAddon.php:513
1124
+ msgid "Add support for more video formats using Kaltura video solution. It works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
 
 
1125
  msgstr ""
1126
 
1127
  #: app/helper/RTMediaAddon.php:521
1129
  msgstr ""
1130
 
1131
  #: app/helper/RTMediaAddon.php:524
1132
+ msgid "Add supports for more audio & video formats using open-source media-node. Media node comes with automated setup script for Ubuntu/Debian."
 
 
1133
  msgstr ""
1134
 
1135
  #: app/helper/RTMediaAddon.php:532
1137
  msgstr ""
1138
 
1139
  #: app/helper/RTMediaAddon.php:535
1140
+ msgid "rtMedia Membership add-on provides membership functionality in your site in terms of media upload."
 
 
1141
  msgstr ""
1142
 
1143
  #: app/helper/RTMediaAddon.php:575
1224
  msgid "other friends liked your"
1225
  msgstr ""
1226
 
1227
+ #: app/helper/RTMediaSettings.php:216
1228
  msgid "BuddyPress Media Addons for Photos"
1229
  msgstr ""
1230
 
1231
+ #: app/helper/RTMediaSettings.php:226
1232
  msgid "rtMedia Themes"
1233
  msgstr ""
1234
 
1235
+ #: app/helper/RTMediaSettings.php:296
1236
+ msgid "Currently your network allows uploading of the following file types. You can change the settings %s"
 
 
1237
  msgstr ""
1238
 
1239
+ #: app/helper/RTMediaSettings.php:317 app/helper/RTMediaSettings.php:319
1240
  msgid "Atleast one Media Type Must be selected"
1241
  msgstr ""
1242
 
1243
+ #: app/helper/RTMediaSettings.php:328 app/helper/RTMediaSettings.php:330
1244
  msgid "\"Number of media\" count value should be numeric and greater than 0."
1245
  msgstr ""
1246
 
1247
+ #: app/helper/RTMediaSettings.php:330
1248
  msgid "Default Count"
1249
  msgstr ""
1250
 
1251
+ #: app/helper/RTMediaSettings.php:335
1252
  msgid "Settings saved."
1253
  msgstr ""
1254
 
1255
+ #: app/helper/RTMediaSettings.php:359
1256
  msgid "If you make changes to width, height or crop settings, you must use "
1257
  msgstr ""
1258
 
1259
+ #: app/helper/RTMediaSettings.php:360
1260
  msgid "Regenerate Thumbnail Plugin"
1261
  msgstr ""
1262
 
1263
+ #: app/helper/RTMediaSettings.php:361
1264
  msgid " to regenerate old images."
1265
  msgstr ""
1266
 
1267
+ #: app/helper/RTMediaSettings.php:384
1268
  msgid "BuddyPress Media 2.6 requires a database upgrade. "
1269
  msgstr ""
1270
 
1271
+ #: app/helper/RTMediaSettings.php:385
1272
  msgid "Update Database"
1273
  msgstr ""
1274
 
1275
+ #: app/helper/RTMediaSettings.php:399
1276
+ msgid "If your site has some issues due to rtMedia and you want one on one support then you can create a support topic on the "
 
 
1277
  msgstr ""
1278
 
1279
+ #: app/helper/RTMediaSettings.php:400
1280
  msgid "rtMedia Support Forum"
1281
  msgstr ""
1282
 
1283
+ #: app/helper/RTMediaSettings.php:402
1284
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on "
 
 
1285
  msgstr ""
1286
 
1287
+ #: app/helper/RTMediaSettings.php:403 app/helper/RTMediaSupport.php:419
1288
  msgid "GitHub"
1289
  msgstr ""
1290
 
1352
  msgstr ""
1353
 
1354
  #: app/helper/RTMediaSupport.php:411
1355
+ msgid "If your site has some issues due to rtMedia and you want support, feel free to create a support topic on %s"
 
 
1356
  msgstr ""
1357
 
1358
  #: app/helper/RTMediaSupport.php:412
1360
  msgstr ""
1361
 
1362
  #: app/helper/RTMediaSupport.php:418
1363
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on %s"
 
 
1364
  msgstr ""
1365
 
1366
  #: app/helper/RTMediaSupport.php:438
1452
  msgid "rtDating"
1453
  msgstr ""
1454
 
1455
+ #: app/helper/RTMediaThemes.php:108 app/helper/RTMediaThemes.php:118
1456
+ #: app/helper/RTMediaThemes.php:128
1457
  msgid "rtCamp"
1458
  msgstr ""
1459
 
1460
  #: app/helper/RTMediaThemes.php:111
1461
+ msgid "rtDating is a unique, clean and modern theme only for WordPress. This theme is mostly useful for dating sites and community websites. It can also be use for any other WordPress based website."
 
 
 
1462
  msgstr ""
1463
 
1464
  #: app/helper/RTMediaThemes.php:115
1466
  msgstr ""
1467
 
1468
  #: app/helper/RTMediaThemes.php:121
1469
+ msgid "InspireBook is a premium WordPress theme, designed especially for BuddyPress and rtMedia powered social-networks."
 
 
1470
  msgstr ""
1471
 
1472
  #: app/helper/RTMediaThemes.php:125
1474
  msgstr ""
1475
 
1476
  #: app/helper/RTMediaThemes.php:131
1477
+ msgid "Its premium WordPress theme, designed especially for Food, recipe and photography community sites."
 
 
1478
  msgstr ""
1479
 
1480
  #: app/helper/RTMediaThemes.php:149 app/helper/RTMediaThemes.php:302
1510
  msgstr ""
1511
 
1512
  #: app/helper/RTMediaThemes.php:233
1513
+ msgid "Woffice is a feature rich, powerful Multipurpose Intranet/Extranet Wordpress theme."
 
 
1514
  msgstr ""
1515
 
1516
  #: app/helper/RTMediaThemes.php:237
1522
  msgstr ""
1523
 
1524
  #: app/helper/RTMediaThemes.php:243
1525
+ msgid "Thrive is an innovative WordPress Theme designed to cater company portals, organisational websites, company intranet and extranets."
 
 
1526
  msgstr ""
1527
 
1528
  #: app/helper/RTMediaThemes.php:247
1534
  msgstr ""
1535
 
1536
  #: app/helper/RTMediaThemes.php:253
1537
+ msgid "(M)Social is a sophisticated, vibrant community theme that offers incredible grid layouts, with full BuddyPress support so your users can interact with each other, create their own pages, and share their thoughts and images with the community."
 
 
 
 
1538
  msgstr ""
1539
 
1540
  #: app/helper/RTMediaThemes.php:257
1542
  msgstr ""
1543
 
1544
  #: app/helper/RTMediaThemes.php:263
1545
+ msgid "Klein is an innovative WordPress theme built to support BuddyPress, bbPress, and WooCommerce out of the box. Perfect for websites that interacts with many users."
 
 
 
1546
  msgstr ""
1547
 
1548
  #: app/helper/RTMediaThemes.php:267
1554
  msgstr ""
1555
 
1556
  #: app/helper/RTMediaThemes.php:273
1557
+ msgid "SweetDate is a unique, clean and modern Premium Wordpress theme. It is perfect for a dating or community website but can be used as well for any other domain. They added all the things you need to create a perfect community system."
 
 
 
 
1558
  msgstr ""
1559
 
1560
  #: app/helper/RTMediaThemes.php:277
1562
  msgstr ""
1563
 
1564
  #: app/helper/RTMediaThemes.php:283
1565
+ msgid "You no longer need to be a professional developer or designer to create an awesome website. Let your imagination run wild and create the site of your dreams. KLEO has all the tools to get you started."
 
 
 
1566
  msgstr ""
1567
 
1568
  #: app/helper/RTMediaThemes.php:365
1569
+ msgid "These are the third party themes. For any issues or queries regarding these themes please contact theme developers."
 
 
1570
  msgstr ""
1571
 
1572
  #: app/helper/RTMediaThemes.php:368
1574
  msgstr ""
1575
 
1576
  #: app/helper/RTMediaThemes.php:371
1577
+ msgid "If you have developed a rtMedia compatible theme and would like it to list here, please email us at"
 
 
1578
  msgstr ""
1579
 
1580
  #: app/helper/RTMediaThemes.php:372
1582
  msgstr ""
1583
 
1584
  #: app/helper/RTMediaUploadException.php:41
1585
+ msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
 
 
1586
  msgstr ""
1587
 
1588
  #: app/helper/RTMediaUploadException.php:44
1618
  msgstr ""
1619
 
1620
  #: app/importers/BPMediaAlbumimporter.php:65
1621
+ msgid "This import process is irreversible. Although everything is tested, please take a "
 
 
1622
  msgstr ""
1623
 
1624
  #: app/importers/BPMediaAlbumimporter.php:66
1626
  msgstr ""
1627
 
1628
  #: app/importers/BPMediaAlbumimporter.php:67
1629
+ msgid ", before proceeding. If you don't know your way around databases and files, consider "
 
 
1630
  msgstr ""
1631
 
1632
  #: app/importers/BPMediaAlbumimporter.php:68
1638
  msgstr ""
1639
 
1640
  #: app/importers/BPMediaAlbumimporter.php:71
1641
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
 
 
1642
  msgstr ""
1643
 
1644
  #: app/importers/BPMediaAlbumimporter.php:72
1703
  msgstr ""
1704
 
1705
  #: app/importers/BPMediaAlbumimporter.php:154
1706
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
 
 
1707
  msgstr ""
1708
 
1709
  #: app/importers/BPMediaAlbumimporter.php:157
1719
  msgstr ""
1720
 
1721
  #: app/importers/BPMediaAlbumimporter.php:172
1722
+ msgid "rtMedia Photo Filters adds Instagram like filters to images uploaded with BuddyPress Media."
 
 
1723
  msgstr ""
1724
 
1725
  #: app/importers/BPMediaAlbumimporter.php:173
1727
  msgstr ""
1728
 
1729
  #: app/importers/BPMediaAlbumimporter.php:173
1730
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
 
 
1731
  msgstr ""
1732
 
1733
  #: app/importers/BPMediaAlbumimporter.php:183
1734
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
 
 
1735
  msgstr ""
1736
 
1737
  #: app/importers/BPMediaAlbumimporter.php:184
1894
  msgid "Public - Visible to the world"
1895
  msgstr ""
1896
 
1897
+ #: app/main/RTMedia.php:605 app/main/controllers/template/RTMediaNav.php:206
1898
  #: app/main/controllers/template/rt-template-functions.php:86
1899
  msgid "All"
1900
  msgstr ""
1901
 
1902
  #: app/main/RTMedia.php:617 app/main/controllers/media/RTMediaAlbum.php:54
1903
+ #: app/main/controllers/template/rt-template-functions.php:1466
1904
  #: app/main/controllers/upload/RTMediaUploadView.php:52
1905
  #: app/main/controllers/upload/RTMediaUploadView.php:55
1906
  msgid "Album"
1912
  msgstr ""
1913
 
1914
  #: app/main/RTMedia.php:631 app/main/controllers/media/RTMediaLoginPopup.php:38
1915
+ #: app/main/controllers/template/rt-template-functions.php:2228
1916
+ #: app/main/controllers/template/rt-template-functions.php:2232
1917
  msgid "Upload"
1918
  msgstr ""
1919
 
2020
  #: app/main/RTMedia.php:985
2021
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:63
2022
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2023
+ #: app/main/controllers/template/rt-template-functions.php:790
2024
+ #: app/main/controllers/template/rt-template-functions.php:811
2025
  msgid "Edit"
2026
  msgstr ""
2027
 
2028
  #: app/main/RTMedia.php:986
2029
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:67
2030
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2031
+ #: app/main/controllers/template/rt-template-functions.php:1547
2032
+ #: app/main/controllers/template/rt-template-functions.php:1554
2033
  #: templates/media/album-single-edit.php:78
2034
  msgid "Delete"
2035
  msgstr ""
2088
 
2089
  #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:319
2090
  #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:100
2091
+ #: app/main/controllers/template/rt-template-functions.php:1581
2092
  msgid "You are not allowed to upload/attach media."
2093
  msgstr ""
2094
 
2187
  msgstr ""
2188
 
2189
  #: app/main/controllers/api/RTMediaJsonApi.php:341
2190
+ msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen."
 
 
2191
  msgstr ""
2192
 
2193
  #: app/main/controllers/api/RTMediaJsonApi.php:344
2366
  msgstr ""
2367
 
2368
  #: app/main/controllers/group/RTMediaGroupExtension.php:116
2369
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:409
2370
  #: templates/media/album-single-edit.php:55
2371
  msgid "Save Changes"
2372
  msgstr ""
2381
 
2382
  #: app/main/controllers/group/RTMediaGroupExtension.php:170
2383
  msgid ""
2384
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
 
2385
  "\t home screen."
2386
  msgstr ""
2387
 
2388
+ #: app/main/controllers/media/RTMediaAlbum.php:35
2389
+ msgctxt "Status General Name"
2390
+ msgid "hidden"
2391
+ msgstr ""
2392
+
2393
  #: app/main/controllers/media/RTMediaAlbum.php:36
2394
  msgid "Hidden (%s)"
2395
  msgid_plural "Hidden (%s)"
2401
  msgstr ""
2402
 
2403
  #: app/main/controllers/media/RTMediaAlbum.php:56
2404
+ #: app/main/controllers/template/rt-template-functions.php:1859
2405
  msgid "Create Album"
2406
  msgstr ""
2407
 
2408
  #: app/main/controllers/media/RTMediaAlbum.php:57
2409
+ #: app/main/controllers/template/rt-template-functions.php:1939
2410
  msgid "Edit Album"
2411
  msgstr ""
2412
 
2476
  msgstr ""
2477
 
2478
  #: app/main/controllers/media/RTMediaLoginPopup.php:38
2479
+ #: app/main/controllers/template/rt-template-functions.php:2228
2480
+ #: app/main/controllers/template/rt-template-functions.php:2232
2481
  msgid "Upload Media"
2482
  msgstr ""
2483
 
2513
  msgid "%1$s added %4$d %3$s"
2514
  msgstr ""
2515
 
2516
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:371
2517
  msgid "No changes were made to your account."
2518
  msgstr ""
2519
 
2520
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:374
2521
  msgid "Your default privacy settings saved successfully."
2522
  msgstr ""
2523
 
2524
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:398
2525
  msgid "Default Privacy"
2526
  msgstr ""
2527
 
2549
  msgid "Data mismatch, Please insert data properly."
2550
  msgstr ""
2551
 
2552
+ #: app/main/controllers/template/RTMediaNav.php:32
2553
+ msgctxt "My Account Privacy sub nav"
2554
+ msgid "Privacy"
2555
+ msgstr ""
2556
+
2557
+ #: app/main/controllers/template/RTMediaTemplate.php:109
2558
+ #: app/main/controllers/template/RTMediaTemplate.php:160
2559
  msgid "Invalid attribute passed for rtmedia_gallery shortcode."
2560
  msgstr ""
2561
 
2562
+ #: app/main/controllers/template/RTMediaTemplate.php:348
2563
+ #: app/main/controllers/template/RTMediaTemplate.php:432
2564
+ #: app/main/controllers/template/RTMediaTemplate.php:520
2565
+ #: app/main/controllers/template/RTMediaTemplate.php:656
2566
  msgid "Ooops !!! Invalid access. No nonce was found !!"
2567
  msgstr ""
2568
 
2569
+ #: app/main/controllers/template/RTMediaTemplate.php:355
2570
  msgid "Media updated Sucessfully"
2571
  msgstr ""
2572
 
2573
+ #: app/main/controllers/template/RTMediaTemplate.php:361
2574
  msgid "Error in updating Media"
2575
  msgstr ""
2576
 
2577
+ #: app/main/controllers/template/rt-template-functions.php:766
2578
+ #: app/main/controllers/template/rt-template-functions.php:1764
2579
  msgid "Options"
2580
  msgstr ""
2581
 
2582
+ #: app/main/controllers/template/rt-template-functions.php:854
2583
  msgid "There are no comments on this media yet."
2584
  msgstr ""
2585
 
2586
+ #: app/main/controllers/template/rt-template-functions.php:890
2587
  msgid "Delete Comment"
2588
  msgstr ""
2589
 
2590
+ #: app/main/controllers/template/rt-template-functions.php:1104
2591
  msgid "Go to page no : "
2592
  msgstr ""
2593
 
2594
+ #: app/main/controllers/template/rt-template-functions.php:1109
2595
  msgid "Go"
2596
  msgstr ""
2597
 
2598
+ #: app/main/controllers/template/rt-template-functions.php:1280
2599
  msgid "Video Thumbnail"
2600
  msgstr ""
2601
 
2602
+ #: app/main/controllers/template/rt-template-functions.php:1330
2603
  msgid "Video Thumbnail:"
2604
  msgstr ""
2605
 
2606
+ #: app/main/controllers/template/rt-template-functions.php:1417
2607
  msgid "Image"
2608
  msgstr ""
2609
 
2610
+ #: app/main/controllers/template/rt-template-functions.php:1434
2611
  msgid "Modify Image"
2612
  msgstr ""
2613
 
2614
+ #: app/main/controllers/template/rt-template-functions.php:1508
2615
  msgid "Type Comment..."
2616
  msgstr ""
2617
 
2618
+ #: app/main/controllers/template/rt-template-functions.php:1511
2619
  #: templates/media/media-single.php:98 templates/media/media-single.php:141
2620
  msgid "Comment"
2621
  msgstr ""
2622
 
2623
+ #: app/main/controllers/template/rt-template-functions.php:1547
2624
+ #: app/main/controllers/template/rt-template-functions.php:1554
2625
  msgid "Delete Media"
2626
  msgstr ""
2627
 
2628
+ #: app/main/controllers/template/rt-template-functions.php:1708
2629
  msgid "Profile Albums"
2630
  msgstr ""
2631
 
2632
+ #: app/main/controllers/template/rt-template-functions.php:1711
2633
+ #: app/main/controllers/template/rt-template-functions.php:1743
2634
  msgid "Group Albums"
2635
  msgstr ""
2636
 
2637
+ #: app/main/controllers/template/rt-template-functions.php:1829
2638
  msgid "Create New Album"
2639
  msgstr ""
2640
 
2641
+ #: app/main/controllers/template/rt-template-functions.php:1829
2642
  msgid "Add Album"
2643
  msgstr ""
2644
 
2645
+ #: app/main/controllers/template/rt-template-functions.php:1845
2646
  msgid "Create an Album"
2647
  msgstr ""
2648
 
2649
+ #: app/main/controllers/template/rt-template-functions.php:1848
2650
  msgid "Album Title : "
2651
  msgstr ""
2652
 
2653
+ #: app/main/controllers/template/rt-template-functions.php:1890
2654
+ #: app/main/controllers/template/rt-template-functions.php:1898
2655
+ #: app/main/controllers/template/rt-template-functions.php:1949
2656
  msgid "Merge Album"
2657
  msgstr ""
2658
 
2659
+ #: app/main/controllers/template/rt-template-functions.php:1893
2660
  msgid "Select Album to merge with : "
2661
  msgstr ""
2662
 
2663
+ #: app/main/controllers/template/rt-template-functions.php:1940
2664
  msgid "Delete Album"
2665
  msgstr ""
2666
 
2667
+ #: app/main/controllers/template/rt-template-functions.php:1977
2668
  msgid "Merge"
2669
  msgstr ""
2670
 
2671
+ #: app/main/controllers/template/rt-template-functions.php:2036
2672
  msgid "Privacy : "
2673
  msgstr ""
2674
 
2675
+ #: app/main/controllers/template/rt-template-functions.php:2216
2676
  msgid "people like this"
2677
  msgstr ""
2678
 
2679
+ #: app/main/controllers/template/rt-template-functions.php:2311
2680
  msgid "Empowering your community with "
2681
  msgstr ""
2682
 
2683
+ #: app/main/controllers/template/rt-template-functions.php:2313
2684
  msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2685
  msgstr ""
2686
 
2687
+ #: app/main/controllers/template/rt-template-functions.php:2329
2688
  msgid "Close (Esc)"
2689
  msgstr ""
2690
 
2691
+ #: app/main/controllers/template/rt-template-functions.php:2343
2692
  msgid "Public"
2693
  msgstr ""
2694
 
2695
+ #: app/main/controllers/template/rt-template-functions.php:2347
2696
  msgid "All members"
2697
  msgstr ""
2698
 
2699
+ #: app/main/controllers/template/rt-template-functions.php:2351
2700
  msgid "Your friends"
2701
  msgstr ""
2702
 
2703
+ #: app/main/controllers/template/rt-template-functions.php:2355
2704
  msgid "Only you"
2705
  msgstr ""
2706
 
2707
+ #: app/main/controllers/template/rt-template-functions.php:2359
2708
  msgid "Blocked temporarily"
2709
  msgstr ""
2710
 
2711
+ #: app/main/controllers/template/rt-template-functions.php:2395
2712
  msgid "%s ago "
2713
  msgstr ""
2714
 
2715
+ #: app/main/controllers/template/rt-template-functions.php:2408
2716
  msgid "1 second"
2717
  msgid_plural "%s seconds"
2718
  msgstr[0] ""
2719
  msgstr[1] ""
2720
 
2721
+ #: app/main/controllers/template/rt-template-functions.php:2411
2722
  msgid "1 minute"
2723
  msgid_plural "%s minutes"
2724
  msgstr[0] ""
2725
  msgstr[1] ""
2726
 
2727
+ #: app/main/controllers/template/rt-template-functions.php:2414
2728
  msgid "1 hour"
2729
  msgid_plural "%s hours"
2730
  msgstr[0] ""
2731
  msgstr[1] ""
2732
 
 
2733
  #. translators: date format, see http:php.net/date
2734
+
2735
+ #: app/main/controllers/template/rt-template-functions.php:2799
2736
  msgid "You can consider rtMedia Team for following :"
2737
  msgstr ""
2738
 
2739
+ #: app/main/controllers/template/rt-template-functions.php:2802
2740
  msgid "rtMedia Customization ( in Upgrade Safe manner )"
2741
  msgstr ""
2742
 
2743
+ #: app/main/controllers/template/rt-template-functions.php:2803
2744
  msgid "WordPress/BuddyPress Theme Design and Development"
2745
  msgstr ""
2746
 
2747
+ #: app/main/controllers/template/rt-template-functions.php:2804
2748
  msgid "WordPress/BuddyPress Plugin Development"
2749
  msgstr ""
2750
 
2751
+ #: app/main/controllers/template/rt-template-functions.php:2809
2752
  msgid "Contact Us"
2753
  msgstr ""
2754
 
2796
 
2797
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:240
2798
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:245
2799
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
 
 
2800
  msgstr ""
2801
 
2802
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:250
2809
 
2810
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:270
2811
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:275
2812
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
 
 
2813
  msgstr ""
2814
 
2815
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:280
2817
  msgstr ""
2818
 
2819
  #: app/main/controllers/upload/processors/RTMediaUploadFile.php:288
2820
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
 
 
2821
  msgstr ""
2822
 
2823
  #: app/main/deprecated/RTMediaDeprecated.php:27
2870
  msgstr ""
2871
 
2872
  #: app/services/RTMediaEncoding.php:278
2873
+ msgid "Just to improve our service we would like to know the reason for you to leave us."
 
 
2874
  msgstr ""
2875
 
2876
  #: app/services/RTMediaEncoding.php:328 app/services/RTMediaEncoding.php:448
2996
  msgstr ""
2997
 
2998
  #: app/services/RTMediaEncoding.php:583
2999
+ msgid "Something went wrong. The required attachment id does not exists. It must have been deleted."
 
 
3000
  msgstr ""
3001
 
3002
  #: app/services/RTMediaEncoding.php:600
3117
  #: templates/media/media-single.php:41
3118
  msgid "under"
3119
  msgstr ""
 
3120
  #. Plugin Name of the plugin/theme
3121
  msgid "rtMedia for WordPress, BuddyPress and bbPress"
3122
  msgstr ""
3123
 
3124
  #. Plugin URI of the plugin/theme
3125
+ msgid "https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media"
 
 
3126
  msgstr ""
3127
 
3128
  #. Description of the plugin/theme
3129
+ msgid "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!"
 
 
 
3130
  msgstr ""
3131
 
3132
+ #. Author of the plugin/theme
3133
+ msgid "rtCamp"
 
 
3134
  msgstr ""
3135
 
3136
+ #. Author URI of the plugin/theme
3137
+ msgid "http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media"
 
3138
  msgstr ""
 
 
 
 
 
readme.txt CHANGED
@@ -5,8 +5,8 @@ Tags: BuddyPress, media, multimedia, album, audio, songs, music, video, photo, i
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
- Tested up to: 4.5.2
9
- Stable tag: 4.0
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
12
 
@@ -138,6 +138,14 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
138
 
139
  == Changelog ==
140
 
 
 
 
 
 
 
 
 
141
  = 4.0 [Jun 21, 2016] =
142
  * Removed esc_html causing stripping of html tags in rtMedia featured for WordPress VIP compatibility
143
  * Fixed BuddyPress nav items in group issue for BuddyPress 2.6 with backward compatibility
@@ -1161,8 +1169,8 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
1161
 
1162
  == Upgrade Notice ==
1163
 
1164
- = 4.0 =
1165
- Requires BuddyPress 1.7 or higher, if using BuddyPress. WordPress VIP compatibility and fixes for BuddyPress 2.6
1166
 
1167
  == Sponsors ==
1168
 
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
+ Tested up to: 4.5.3
9
+ Stable tag: 4.0.1
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
12
 
138
 
139
  == Changelog ==
140
 
141
+ = 4.0.1 [Jun 23, 2016] =
142
+ * Fixed issue of wpdb prepare statement missing argument
143
+ * Fixed time conversion issue in lightbox
144
+ * Fixed context & context_id for profile media upload
145
+ * Fixed lightbox loading whole site
146
+ * Fixed Keep current tab active when traversing different media type tabs
147
+ * Removed the_content filter and used wpautop function for media description
148
+
149
  = 4.0 [Jun 21, 2016] =
150
  * Removed esc_html causing stripping of html tags in rtMedia featured for WordPress VIP compatibility
151
  * Fixed BuddyPress nav items in group issue for BuddyPress 2.6 with backward compatibility
1169
 
1170
  == Upgrade Notice ==
1171
 
1172
+ = 4.0.1 =
1173
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Fixed lightbox issue and other bug fixes.
1174
 
1175
  == Sponsors ==
1176
 
templates/main.php CHANGED
@@ -12,7 +12,7 @@ $rt_ajax_request = false;
12
  //todo sanitize and fix $_SERVER variable usage
13
  // check if it is an ajax request
14
 
15
- $_rt_ajax_request = filter_input( INPUT_SERVER, 'HTTP_X_REQUESTED_WITH', FILTER_SANITIZE_STRING );
16
  if ( 'xmlhttprequest' === strtolower( $_rt_ajax_request ) ) {
17
  $rt_ajax_request = true;
18
  }
12
  //todo sanitize and fix $_SERVER variable usage
13
  // check if it is an ajax request
14
 
15
+ $_rt_ajax_request = rtm_get_server_var( 'HTTP_X_REQUESTED_WITH', 'FILTER_SANITIZE_STRING' );
16
  if ( 'xmlhttprequest' === strtolower( $_rt_ajax_request ) ) {
17
  $rt_ajax_request = true;
18
  }
templates/media/media-single.php CHANGED
@@ -86,7 +86,7 @@
86
  </div>
87
 
88
  <div class="rtmedia-media-description rtm-more">
89
- <?php echo strip_tags( str_replace( '</p>', '</p><br>', rtmedia_description( $echo = false ) ), '<br>' ); // @codingStandardsIgnoreLine ?>
90
  </div>
91
 
92
  <?php if ( rtmedia_comments_enabled() ) { ?>
86
  </div>
87
 
88
  <div class="rtmedia-media-description rtm-more">
89
+ <?php echo rtmedia_description( $echo = false ); ?>
90
  </div>
91
 
92
  <?php if ( rtmedia_comments_enabled() ) { ?>