rtMedia for WordPress, BuddyPress and bbPress - Version 3.6.11

Version Description

  • Update Russian and Polish translations
  • Bug fixes
Download this release

Release Info

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

Code changes from version 3.6.10 to 3.6.11

app/importers/RTMediaMediaSizeImporter.php CHANGED
@@ -18,6 +18,7 @@ class RTMediaMediaSizeImporter {
18
  add_action( 'wp_ajax_rtmedia_media_size_import', array( $this, "rtmedia_media_size_import" ) );
19
  add_action( 'admin_init', array( $this, 'add_admin_notice' ) );
20
  add_action( 'admin_menu', array( $this, 'menu' ), 10 );
 
21
  }
22
 
23
  function menu() {
@@ -30,12 +31,25 @@ class RTMediaMediaSizeImporter {
30
  return $admin_pages;
31
  }
32
 
 
 
 
 
 
 
 
 
 
33
  function add_admin_notice() {
34
  $pending = $this->get_pending_count();
35
  if ( $pending < 0 ){
36
  $pending = 0;
37
  }
38
  rtmedia_update_site_option( "rtmedia_media_size_import_pending_count", $pending );
 
 
 
 
39
  if ( $pending > 0 ){
40
  if ( ! ( isset ( $_REQUEST[ "page" ] ) && $_REQUEST[ "page" ] == "rtmedia-migration-media-size-import" ) ){
41
  $site_option = get_site_option( "rtmedia_media_size_import_notice" );
@@ -49,8 +63,8 @@ class RTMediaMediaSizeImporter {
49
 
50
  function add_rtmedia_media_size_import_notice() {
51
  if ( current_user_can( 'manage_options' ) ){
52
- $this->create_notice( "<p><strong>rtMedia</strong>: <a href='" . admin_url( "admin.php?page=rtmedia-migration-media-size-import&force=true" ) . "'>Click Here</a> to import media sizes. <a href='#' onclick='rtmedia_hide_media_size_import_notice()' style='float:right'>" . __( "Hide" ) . "</a> </p>" );
53
- ?>
54
  <script type="text/javascript">
55
  function rtmedia_hide_media_size_import_notice() {
56
  var data = {action: 'rtmedia_hide_media_size_import_notice'};
@@ -76,18 +90,18 @@ class RTMediaMediaSizeImporter {
76
  $done = $total - $pending;
77
  ?>
78
  <div class="wrap">
79
- <h2>rtMedia Media Size Import</h2>
80
- <?php
81
- echo '<span class="pending">' . rtmedia_migrate_formatseconds( $total - $done ) . '</span><br />';
82
  echo '<span class="finished">' . $done . '</span>/<span class="total">' . $total . '</span>';
83
  echo '<img src="images/loading.gif" alt="syncing" id="rtMediaSyncing" style="display:none" />';
84
 
85
  $temp = $prog->progress( $done, $total );
86
  $prog->progress_ui( $temp, true );
87
- ?>
88
  <script type="text/javascript">
89
- var false_count = 0;
90
- var curr_done = 0;
91
  jQuery( document ).ready( function ( e ) {
92
  jQuery( "#toplevel_page_rtmedia-settings" ).addClass( "wp-has-current-submenu" )
93
  jQuery( "#toplevel_page_rtmedia-settings" ).removeClass( "wp-not-current-submenu" )
@@ -97,17 +111,19 @@ class RTMediaMediaSizeImporter {
97
  if ( db_total < 1 )
98
  jQuery( "#submit" ).attr( 'disabled', "disabled" );
99
  } )
100
- function db_start_migration( db_done, db_total ) {
101
 
102
  if ( db_done < db_total ) {
103
  jQuery( "#rtMediaSyncing" ).show();
 
 
 
 
 
104
  jQuery.ajax( {
105
  url: rtmedia_admin_ajax,
106
  type: 'post',
107
- data: {
108
- "action": "rtmedia_media_size_import",
109
- "done": db_done
110
- },
111
  success: function ( sdata ) {
112
 
113
  try {
@@ -127,17 +143,10 @@ class RTMediaMediaSizeImporter {
127
  jQuery( 'span.finished' ).html( done );
128
  jQuery( 'span.total' ).html( total );
129
  jQuery( 'span.pending' ).html( data.pending );
130
- if( curr_done == done ) {
131
- false_count++;
132
- } else {
133
- false_count = 0;
134
- }
135
- curr_done = done;
136
- if( false_count > 5 ) {
137
- rtm_show_file_error( done, total );
138
- } else {
139
- db_start_migration( done, total );
140
  }
 
141
  } else {
142
  alert( "Migration completed." );
143
  jQuery( "#rtMediaSyncing" ).hide();
@@ -150,18 +159,23 @@ class RTMediaMediaSizeImporter {
150
  } );
151
  } else {
152
  alert( "Migration completed." );
 
 
 
153
  jQuery( "#rtMediaSyncing" ).hide();
154
  }
155
  }
156
- function rtm_show_file_error( done, total ) {
157
- jQuery( 'span.pending' ).html( "File size of " + ( total - done ) + " file(s) are not imported. Don't worry, you can end importing media size now :)" );
158
- jQuery( "#rtMediaSyncing" ).hide();
 
 
159
  }
160
  var db_done = <?php echo $done; ?>;
161
  var db_total = <?php echo $total; ?>;
162
  jQuery( document ).on( 'click', '#submit', function ( e ) {
163
  e.preventDefault();
164
- db_start_migration( db_done, db_total );
165
  jQuery( this ).attr( 'disabled', 'disabled' );
166
  } );
167
  </script>
@@ -173,10 +187,13 @@ class RTMediaMediaSizeImporter {
173
  <?php
174
  }
175
 
176
- function get_pending_count() {
177
  global $wpdb;
178
  $rtmedia_model = new RTMediaModel();
179
  $query_pending = "SELECT COUNT(*) as pending from {$rtmedia_model->table_name} where file_size IS NULL AND media_type in ('photo','video','document','music','other')";
 
 
 
180
  $pending_count = $wpdb->get_results( $query_pending );
181
  if ( $pending_count && sizeof( $pending_count ) > 0 ){
182
  return $pending_count[ 0 ]->pending;
@@ -201,32 +218,41 @@ class RTMediaMediaSizeImporter {
201
  global $wpdb;
202
  $rtmedia_model = new RTMediaModel();
203
  $get_media_sql = "SELECT * from {$rtmedia_model->table_name} where file_size is NULL and media_type in ('photo','video','document','music','other') order by id limit " . $limit;
 
 
 
204
  if ( $lastid ){
205
  $get_media_sql = "SELECT * from {$rtmedia_model->table_name} where id > '" . $lastid . "' AND file_size is NULL and media_type in ('photo','video','document','music','other') order by id limit " . $limit;
206
  }
207
  $result = $wpdb->get_results( $get_media_sql );
208
  if ( $result && sizeof( $result ) > 0 ){
209
- $this->migrate_single_media( $result[ 0 ] );
210
  }
211
- $this->return_migration();
212
  }
213
 
214
  function migrate_single_media( $result ) {
215
  global $wpdb;
216
  $rtmedia_model = new RTMediaModel();
217
  $attached_file = get_attached_file( $result->media_id );
218
- if ( ! file_exists( $attached_file ) ){
219
- $this->rtmedia_media_size_import( $result->id );
 
 
 
 
 
 
220
  }
221
- $file_size = filesize( $attached_file );
222
  $post = get_post( $result->media_id );
223
  $post_date = $post->post_date;
224
  $rtmedia_model->update( array( 'upload_date' => $post_date, 'file_size' => $file_size ), array( 'id' => $result->id ) );
 
225
  }
226
 
227
- function return_migration() {
228
  $total = $this->get_total_count();
229
- $pending = $this->get_pending_count();
230
  $done = $total - $pending;
231
  if ( $pending < 0 ){
232
  $pending = 0;
@@ -237,7 +263,7 @@ class RTMediaMediaSizeImporter {
237
  }
238
  rtmedia_update_site_option( 'rtmedia_media_size_import_pending_count', $pending );
239
  $pending_time = rtmedia_migrate_formatseconds( $pending ). " (estimated)";
240
- echo json_encode( array( "status" => true, "done" => $done, "total" => $total, "pending" => $pending_time ) );
241
  die();
242
  }
243
  }
18
  add_action( 'wp_ajax_rtmedia_media_size_import', array( $this, "rtmedia_media_size_import" ) );
19
  add_action( 'admin_init', array( $this, 'add_admin_notice' ) );
20
  add_action( 'admin_menu', array( $this, 'menu' ), 10 );
21
+ add_action( 'wp_ajax_rtmedia_hide_media_size_import_notice', array( $this, "rtmedia_hide_media_size_import_notice" ) );
22
  }
23
 
24
  function menu() {
31
  return $admin_pages;
32
  }
33
 
34
+ function rtmedia_hide_media_size_import_notice() {
35
+ if( rtmedia_update_site_option( "rtmedia_hide_media_size_import_notice", true ) ) {
36
+ echo '1';
37
+ } else {
38
+ echo '0';
39
+ }
40
+ wp_die();
41
+ }
42
+
43
  function add_admin_notice() {
44
  $pending = $this->get_pending_count();
45
  if ( $pending < 0 ){
46
  $pending = 0;
47
  }
48
  rtmedia_update_site_option( "rtmedia_media_size_import_pending_count", $pending );
49
+ $hide_admin_option = rtmedia_get_site_option( 'rtmedia_hide_media_size_import_notice' );
50
+ if( $hide_admin_option ) {
51
+ return;
52
+ }
53
  if ( $pending > 0 ){
54
  if ( ! ( isset ( $_REQUEST[ "page" ] ) && $_REQUEST[ "page" ] == "rtmedia-migration-media-size-import" ) ){
55
  $site_option = get_site_option( "rtmedia_media_size_import_notice" );
63
 
64
  function add_rtmedia_media_size_import_notice() {
65
  if ( current_user_can( 'manage_options' ) ){
66
+ $this->create_notice( "<p><strong>rtMedia</strong>: Database table structure for rtMedia has been updated. Please <a href='" . admin_url( "admin.php?page=rtmedia-migration-media-size-import&force=true" ) . "'>Click Here</a> to import media sizes. <a href='#' onclick='rtmedia_hide_media_size_import_notice()' style='float:right'>" . __( "Hide" ) . "</a> </p>" );
67
+ ?>
68
  <script type="text/javascript">
69
  function rtmedia_hide_media_size_import_notice() {
70
  var data = {action: 'rtmedia_hide_media_size_import_notice'};
90
  $done = $total - $pending;
91
  ?>
92
  <div class="wrap">
93
+ <h2>rtMedia: Import Media Size</h2>
94
+ <?php
95
+ echo '<span class="pending">' . rtmedia_migrate_formatseconds( $total - $done ) . ' (estimated)</span><br />';
96
  echo '<span class="finished">' . $done . '</span>/<span class="total">' . $total . '</span>';
97
  echo '<img src="images/loading.gif" alt="syncing" id="rtMediaSyncing" style="display:none" />';
98
 
99
  $temp = $prog->progress( $done, $total );
100
  $prog->progress_ui( $temp, true );
101
+ ?>
102
  <script type="text/javascript">
103
+ var fail_id = new Array();
104
+ var ajax_data;
105
  jQuery( document ).ready( function ( e ) {
106
  jQuery( "#toplevel_page_rtmedia-settings" ).addClass( "wp-has-current-submenu" )
107
  jQuery( "#toplevel_page_rtmedia-settings" ).removeClass( "wp-not-current-submenu" )
111
  if ( db_total < 1 )
112
  jQuery( "#submit" ).attr( 'disabled', "disabled" );
113
  } )
114
+ function db_start_migration( db_done, db_total, last_id ) {
115
 
116
  if ( db_done < db_total ) {
117
  jQuery( "#rtMediaSyncing" ).show();
118
+ ajax_data = {
119
+ "action": "rtmedia_media_size_import",
120
+ "done": db_done,
121
+ "last_id" : last_id
122
+ }
123
  jQuery.ajax( {
124
  url: rtmedia_admin_ajax,
125
  type: 'post',
126
+ data: ajax_data,
 
 
 
127
  success: function ( sdata ) {
128
 
129
  try {
143
  jQuery( 'span.finished' ).html( done );
144
  jQuery( 'span.total' ).html( total );
145
  jQuery( 'span.pending' ).html( data.pending );
146
+ if( data.imported === false ) {
147
+ fail_id.push(data.media_id);
 
 
 
 
 
 
 
 
148
  }
149
+ db_start_migration( done, total, parseInt( data.media_id ) );
150
  } else {
151
  alert( "Migration completed." );
152
  jQuery( "#rtMediaSyncing" ).hide();
159
  } );
160
  } else {
161
  alert( "Migration completed." );
162
+ if( fail_id.length > 0 ) {
163
+ rtm_show_file_error();
164
+ }
165
  jQuery( "#rtMediaSyncing" ).hide();
166
  }
167
  }
168
+ function rtm_show_file_error() {
169
+ jQuery( 'span.pending' ).html( "Media with ID: " + fail_id.join() + " can not be imported. Please check your server error log for more details. Don't worry, you can end importing media size now :)" );
170
+ // var data = {action: 'rtmedia_hide_media_size_import_notice'};
171
+ // jQuery.post( ajaxurl, data, function ( response ) { } );
172
+ // jQuery( "#rtMediaSyncing" ).hide();
173
  }
174
  var db_done = <?php echo $done; ?>;
175
  var db_total = <?php echo $total; ?>;
176
  jQuery( document ).on( 'click', '#submit', function ( e ) {
177
  e.preventDefault();
178
+ db_start_migration( db_done, db_total, 0 );
179
  jQuery( this ).attr( 'disabled', 'disabled' );
180
  } );
181
  </script>
187
  <?php
188
  }
189
 
190
+ function get_pending_count( $media_id = false ) {
191
  global $wpdb;
192
  $rtmedia_model = new RTMediaModel();
193
  $query_pending = "SELECT COUNT(*) as pending from {$rtmedia_model->table_name} where file_size IS NULL AND media_type in ('photo','video','document','music','other')";
194
+ if( $media_id ) {
195
+ $query_pending = "SELECT COUNT(*) as pending from {$rtmedia_model->table_name} where file_size IS NULL AND media_type in ('photo','video','document','music','other') AND id > '" . $media_id . "'";
196
+ }
197
  $pending_count = $wpdb->get_results( $query_pending );
198
  if ( $pending_count && sizeof( $pending_count ) > 0 ){
199
  return $pending_count[ 0 ]->pending;
218
  global $wpdb;
219
  $rtmedia_model = new RTMediaModel();
220
  $get_media_sql = "SELECT * from {$rtmedia_model->table_name} where file_size is NULL and media_type in ('photo','video','document','music','other') order by id limit " . $limit;
221
+ if( isset( $_REQUEST['last_id'] ) ) {
222
+ $lastid = $_REQUEST['last_id'];
223
+ }
224
  if ( $lastid ){
225
  $get_media_sql = "SELECT * from {$rtmedia_model->table_name} where id > '" . $lastid . "' AND file_size is NULL and media_type in ('photo','video','document','music','other') order by id limit " . $limit;
226
  }
227
  $result = $wpdb->get_results( $get_media_sql );
228
  if ( $result && sizeof( $result ) > 0 ){
229
+ $migrate = $this->migrate_single_media( $result[ 0 ] );
230
  }
231
+ $this->return_migration( $result[ 0 ], $migrate );
232
  }
233
 
234
  function migrate_single_media( $result ) {
235
  global $wpdb;
236
  $rtmedia_model = new RTMediaModel();
237
  $attached_file = get_attached_file( $result->media_id );
238
+ $return = true;
239
+ if ( file_exists( $attached_file ) ){
240
+ $file_size = filesize( $attached_file );
241
+ } else {
242
+ $file_size = '0';
243
+ error_log( 'rtMedia size importer: file not exist. Media ID: '.$result->id.', File: '.$attached_file );
244
+ $return = false;
245
+ return false;
246
  }
 
247
  $post = get_post( $result->media_id );
248
  $post_date = $post->post_date;
249
  $rtmedia_model->update( array( 'upload_date' => $post_date, 'file_size' => $file_size ), array( 'id' => $result->id ) );
250
+ return $return;
251
  }
252
 
253
+ function return_migration( $media, $migrate = true ) {
254
  $total = $this->get_total_count();
255
+ $pending = $this->get_pending_count( $media->id );
256
  $done = $total - $pending;
257
  if ( $pending < 0 ){
258
  $pending = 0;
263
  }
264
  rtmedia_update_site_option( 'rtmedia_media_size_import_pending_count', $pending );
265
  $pending_time = rtmedia_migrate_formatseconds( $pending ). " (estimated)";
266
+ echo json_encode( array( "status" => true, "done" => $done, "total" => $total, "pending" => $pending_time, "media_id" => $media->id, "imported" => $migrate ) );
267
  die();
268
  }
269
  }
app/main/controllers/template/RTMediaNav.php CHANGED
@@ -37,7 +37,7 @@ class RTMediaNav {
37
  if ( $rtmedia->options[ "buddypress_enableOnProfile" ] != 0 ) {
38
  bp_core_new_nav_item ( array(
39
  'name' => RTMEDIA_MEDIA_LABEL . '<span>' . $profile_counts[ 'total' ][ 'all' ] . '</span>',
40
- 'slug' => RTMEDIA_MEDIA_SLUG,
41
  'screen_function' => array( $this, 'media_screen' ),
42
  'default_subnav_slug' => 'all',
43
  'position' => $tab_position
37
  if ( $rtmedia->options[ "buddypress_enableOnProfile" ] != 0 ) {
38
  bp_core_new_nav_item ( array(
39
  'name' => RTMEDIA_MEDIA_LABEL . '<span>' . $profile_counts[ 'total' ][ 'all' ] . '</span>',
40
+ 'slug' => apply_filters('rtmedia_media_tab_slug', RTMEDIA_MEDIA_SLUG ),
41
  'screen_function' => array( $this, 'media_screen' ),
42
  'default_subnav_slug' => 'all',
43
  'position' => $tab_position
app/main/controllers/template/RTMediaTemplate.php CHANGED
@@ -10,622 +10,661 @@
10
  */
11
  class RTMediaTemplate {
12
 
13
- public $media_args;
14
-
15
- function __construct () {
16
- global $rtmedia_query;
17
- if ( $rtmedia_query ) {
18
- add_action ( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
19
- add_action ( 'wp_enqueue_scripts', array( $this, 'enqueue_image_editor_scripts' ) );
20
- }
21
- }
22
-
23
- /**
24
- * Enqueues required scripts on the page
25
- */
26
- function enqueue_scripts () {
27
- wp_enqueue_script ( 'rtmedia-backbone' );
28
- $is_album = is_rtmedia_album () ? true : false;
29
- $is_edit_allowed = is_rtmedia_edit_allowed () ? true : false;
30
- wp_localize_script ( 'rtmedia-backbone', 'is_album', array( $is_album ) );
31
- wp_localize_script ( 'rtmedia-backbone', 'is_edit_allowed', array( $is_edit_allowed ) );
32
- }
33
-
34
- function enqueue_image_editor_scripts () {
35
- $suffix = defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
36
- wp_enqueue_script ( 'wp-ajax-response' );
37
- wp_enqueue_script ( 'rtmedia-image-edit', admin_url ( "js/image-edit$suffix.js" ), array( 'jquery', 'json2', 'imgareaselect' ), false, 1 );
38
- wp_enqueue_style ( 'rtmedia-image-edit', RTMEDIA_URL . 'app/assets/css/image-edit.css' );
39
- wp_enqueue_style ( 'rtmedia-image-area-select', includes_url ( '/js/imgareaselect/imgareaselect.css' ) );
40
- }
41
-
42
- /**
43
- * redirects to the template according to the page request
44
- * Pass on the shortcode attributes to the template so that the shortcode can berendered accordingly.
45
- *
46
- * Also handles the json request coming from the AJAX calls for the media
47
- *
48
- * @global type $rtmedia_query
49
- * @global type $rtmedia_interaction
50
- * @param type $template
51
- * @param type $shortcode_attr
52
- * @return type
53
- */
54
- function set_template ( $template = false, $shortcode_attr = false ) {
55
-
56
- global $rtmedia_query, $rtmedia_interaction, $rtmedia_media;
57
-
58
- do_action ( 'rtmedia_pre_template' );
59
-
60
- //print_r($rtmedia_query);
61
-
62
- if ( isset ( $rtmedia_query->action_query->action ) ) {
63
- //echo $rtmedia_query->action_query->action;
64
- do_action ( 'rtmedia_pre_action_' . $rtmedia_query->action_query->action );
65
- } else {
66
- do_action ( 'rtmedia_pre_action_default' );
67
- }
68
-
69
- $this->check_return_json ();
70
-
71
- $this->check_return_upload ();
72
-
73
- if ( $rtmedia_interaction && isset( $rtmedia_interaction->context ) && in_array ( $rtmedia_interaction->context->type, array( "profile", "group" ) ) ) {
74
-
75
-
76
- $this->check_return_edit ();
77
-
78
- $this->check_return_delete ();
79
-
80
- $this->check_return_merge ();
81
-
82
- $this->check_return_comments ();
83
-
84
- $this->check_delete_comments ();
85
- if( isset($rtmedia_query->is_gallery_shortcode) && $rtmedia_query->is_gallery_shortcode == true && isset( $shortcode_attr[ 'name' ] ) && $shortcode_attr[ 'name' ] == 'gallery' ) {
86
- echo "<div class='rtmedia_gallery_wrapper'>";
87
- $this->add_hidden_fields_in_gallery ();
88
- $gallery_template = apply_filters("rtmedia-before-template",$template,$shortcode_attr);
89
- include $this->locate_template ( $gallery_template );
90
- echo "</div>";
91
- } else {
92
- return $this->get_default_template ();
93
- }
94
- } else if ( ! $shortcode_attr ) {
95
- return $this->get_default_template ();
96
- } else if ( $shortcode_attr[ 'name' ] == 'gallery' ) {
97
- $valid = $this->sanitize_gallery_attributes ( $shortcode_attr[ 'attr' ] );
98
- if ( $valid ) {
99
- if ( is_array ( $shortcode_attr[ 'attr' ] ) ) {
100
- $this->update_global_query ( $shortcode_attr[ 'attr' ] );
101
- }
102
- global $rtaccount;
103
- if ( ! isset ( $rtaccount ) ) {
104
- $rtaccount = 0;
105
- }
106
- //add_action("rtmedia_before_media_gallery",array(&$this,"")) ;
107
- if( isset( $shortcode_attr[ 'attr' ] ) && isset( $shortcode_attr[ 'attr' ]['uploader'] ) && $shortcode_attr[ 'attr' ]['uploader'] == "before" ) {
108
- echo RTMediaUploadShortcode::pre_render($shortcode_attr[ 'attr' ]);
109
- }
110
- echo "<div class='rtmedia_gallery_wrapper'>";
111
- $this->add_hidden_fields_in_gallery ();
112
- $gallery_template = apply_filters("rtmedia-before-template",$template,$shortcode_attr);
113
- include $this->locate_template ( $gallery_template );
114
- echo "</div>";
115
- if( isset( $shortcode_attr[ 'attr' ] ) && isset( $shortcode_attr[ 'attr' ]['uploader'] ) && ( $shortcode_attr[ 'attr' ]['uploader'] == "after" || $shortcode_attr[ 'attr' ]['uploader'] == "true" ) ) {
116
- echo RTMediaUploadShortcode::pre_render($shortcode_attr[ 'attr' ]);
117
- }
118
- } else {
119
- echo __ ( 'Invalid attribute passed for rtmedia_gallery shortcode.', 'rtmedia' );
120
- return false;
121
- }
122
- }
123
- }
124
-
125
- function add_hidden_fields_in_gallery () {
126
- global $rtmedia_query;
127
- $return_str = "<input name='rtmedia_shortcode' value='true' type='hidden' />";
128
- if ( $rtmedia_query->original_query && is_array ( $rtmedia_query->original_query ) ) {
129
- foreach ( $rtmedia_query->original_query as $key => $val ) {
130
- $return_str.= '<input name="' . $key . '" value="' . $val . '" type="hidden" />';
131
- }
132
- }
133
- echo $return_str;
134
- }
135
-
136
- function check_return_json () {
137
- global $rtmedia_query;
138
- if ( $rtmedia_query->format == 'json' ) {
139
- $this->json_output ();
140
- } else {
141
- return;
142
- }
143
- }
144
-
145
- function check_return_upload () {
146
- global $rtmedia_query;
147
- if ( $rtmedia_query->action_query->action != 'upload' )
148
- return;
149
- $upload = new RTMediaUploadEndpoint();
150
- $upload->template_redirect ();
151
- }
152
-
153
- function json_output () {
154
- global $rtmedia_query;
155
- $media_array = array( );
156
- if ( $rtmedia_query->media ) {
157
- foreach ( $rtmedia_query->media as $key => $media ) {
158
- $media_array[ $key ] = $media;
159
- $media_array[ $key ]->guid = rtmedia_image('rt_media_thumbnail', $media->id ,false);
160
- $media_array[ $key ]->rt_permalink = get_rtmedia_permalink ( $media->id );
161
- }
162
- }
163
- $return_array[ 'data' ] = $media_array;
164
- $return_array[ 'prev' ] = rtmedia_page () - 1;
165
- $return_array[ 'next' ] = (rtmedia_offset () + rtmedia_per_page_media () < rtmedia_count ()) ? (rtmedia_page () + 1) : -1;
166
- echo json_encode ( $return_array );
167
- die;
168
- }
169
-
170
- function check_return_edit () {
171
- global $rtmedia_query;
172
- if ( $rtmedia_query->action_query->action == 'edit' && count ( $_POST ) )
173
- $this->save_edit ();
174
- return $this->get_default_template ();
175
- }
176
-
177
- function save_edit () {
178
- if ( is_rtmedia_single () ) {
179
- $this->save_single_edit ();
180
- } elseif ( is_rtmedia_album () ) {
181
- $this->save_album_edit ();
182
- }
183
- }
184
-
185
- function save_single_edit () {
186
- global $rtmedia_query;
187
- $nonce = $_POST[ 'rtmedia_media_nonce' ];
188
- if ( wp_verify_nonce ( $nonce, 'rtmedia_' . $rtmedia_query->action_query->id ) ) {
189
- do_action ( 'rtmedia_before_update_media', $rtmedia_query->action_query->id );
190
- $data_array = array( 'media_title', 'description', 'privacy' );
191
- //for medias except album and playlist, if album_is is found, then update album_id for the media also
192
- if( isset( $_POST['album_id'] ) && $_POST['album_id'] != ''){
193
- $data_array[] = 'album_id';
194
- }
195
- $data = rtmedia_sanitize_object ( $_POST, $data_array );
196
- $media = new RTMediaMedia();
197
- $image_path = get_attached_file( $rtmedia_query->media[ 0 ]->media_id );
198
- if( $image_path && $rtmedia_query->media[ 0 ]->media_type == "photo" ) {
199
- $image_meta_data = wp_generate_attachment_metadata( $rtmedia_query->media[ 0 ]->media_id, $image_path );
200
- wp_update_attachment_metadata( $rtmedia_query->media[ 0 ]->media_id, $image_meta_data );
201
- }
202
- $state = $media->update ( $rtmedia_query->action_query->id, $data, $rtmedia_query->media[ 0 ]->media_id );
203
- $rtmedia_query->query ( false );
204
- global $rtmedia_points_media_id;
205
- $rtmedia_points_media_id = $rtmedia_query->action_query->id;
206
- do_action ( 'rtmedia_after_edit_media', $rtmedia_query->action_query->id, $state );
207
-
208
- //refresh
209
- $rtMediaNav = new RTMediaNav();
210
- if ( $rtmedia_query->media[ 0 ]->context == "group" ) {
211
- $rtMediaNav->refresh_counts ( $rtmedia_query->media[ 0 ]->context_id, array( "context" => $rtmedia_query->media[ 0 ]->context, 'context_id' => $rtmedia_query->media[ 0 ]->context_id ) );
212
- } else {
213
- $rtMediaNav->refresh_counts ( $rtmedia_query->media[ 0 ]->media_author, array( "context" => "profile", 'media_author' => $rtmedia_query->media[ 0 ]->media_author ) );
214
- }
215
- $state = apply_filters('rtmedia_single_edit_state',$state);
216
- if ( $state !== false ) {
217
- add_action ( "rtmedia_before_template_load", array( &$this, "media_update_success_messege" ) );
218
- } else {
219
- add_action ( "rtmedia_before_template_load", array( &$this, "media_update_success_error" ) );
220
- }
221
- } else {
222
- _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
223
- }
224
- }
225
-
226
- function media_update_success_messege () {
227
- $message = apply_filters ( "rtmedia_update_media_message", __( 'Media updated Sucessfully', 'rtmedia' ), false );
228
- $html = "<div class='rtmedia-success media-edit-messge'>" . __ ( $message, "rtmedia" ) . "</div>";
229
- echo apply_filters ( "rtmedia_update_media_message_html", $html, $message, false );
230
- }
231
-
232
- function media_update_success_error () {
233
- $message = apply_filters ( "rtmedia_update_media_message", __( 'Error in updating Media', 'rtmedia' ), true );
234
- $html = "<div class='rtmedia-error media-edit-messge'>" . __ ( $message, "rtmedia" ) . "</div>";
235
- echo apply_filters ( "rtmedia_update_media_message_html", $html, $message, true );
236
- }
237
-
238
- function save_album_edit () {
239
- global $rtmedia_query;
240
- $nonce = $_REQUEST[ 'rtmedia_media_nonce' ];
241
- if ( wp_verify_nonce ( $nonce, 'rtmedia_' . $rtmedia_query->media_query[ 'album_id' ] ) ) {
242
- $media = new RTMediaMedia();
243
- $model = new RTMediaModel();
244
- if ( isset ( $_POST[ 'submit' ] ) ) {
245
- $data = $_POST;
246
- unset ( $data[ 'rtmedia_media_nonce' ] );
247
- unset ( $data[ '_wp_http_referer' ] );
248
- unset ( $data[ 'submit' ] );
249
- $album = $model->get_media ( array( 'id' => $rtmedia_query->media_query[ 'album_id' ] ), false, false );
250
- $state = $media->update ( $album[ 0 ]->id, $data, $album[ 0 ]->media_id );
251
- global $rtmedia_points_media_id;
252
- $rtmedia_points_media_id = $album[ 0 ]->id;
253
- do_action ( 'rtmedia_after_update_album', $album[ 0 ]->id, $state );
254
- } elseif ( isset ( $_POST[ 'move-selected' ] ) ) {
255
- // print_r($_POST);die;
256
- $album_move = $_POST[ 'album' ];
257
- $selected_ids = NULL;
258
-
259
- if ( isset ( $_POST[ 'selected' ] ) ) {
260
- $selected_ids = $_POST[ 'selected' ];
261
- unset ( $_POST[ 'selected' ] );
262
- }
263
- if ( ! empty ( $selected_ids ) && is_array ( $selected_ids ) ) {
264
- $album_move_details = $model->get_media ( array( 'id' => $album_move ), false, false );
265
- foreach ( $selected_ids as $media_id ) {
266
- $media_details = $model->get_media ( array( 'id' => $media_id ), false, false );
267
- $post_array[ 'ID' ] = $media_details[ 0 ]->media_id;
268
- $post_array[ 'post_parent' ] = $album_move_details[ 0 ]->media_id;
269
- wp_update_post ( $post_array );
270
- $media->update ( $media_details[ 0 ]->id, array( 'album_id' => $album_move_details[ 0 ]->id ), $media_details[ 0 ]->media_id );
271
- }
272
- }
273
- }
274
- //refresh
275
- $rtMediaNav = new RTMediaNav();
276
- if ( $rtmedia_query->media[ 0 ]->context == "group" ) {
277
- $rtMediaNav->refresh_counts ( $rtmedia_query->media[ 0 ]->context_id, array( "context" => $rtmedia_query->media[ 0 ]->context, 'context_id' => $rtmedia_query->media[ 0 ]->context_id ) );
278
- } else {
279
- $rtMediaNav->refresh_counts ( $rtmedia_query->media[ 0 ]->media_author, array( "context" => "profile", 'media_author' => $rtmedia_query->media[ 0 ]->media_author ) );
280
- }
281
- wp_safe_redirect ( get_rtmedia_permalink ( $rtmedia_query->media_query[ 'album_id' ] ) . 'edit/' );
282
- die();
283
- } else {
284
- _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
285
- }
286
- }
287
-
288
- function check_return_delete () {
289
-
290
- global $rtmedia_query;
291
- if ( $rtmedia_query->action_query->action != 'delete' )
292
- return;
293
- if ( ! count ( $_POST ) )
294
- return;
295
-
296
- if ( isset ( $rtmedia_query->action_query->default ) && $rtmedia_query->action_query->default == 'delete' ) {
297
- $this->bulk_delete ();
298
- } else {
299
- if ( is_rtmedia_single () ) {
300
- $this->single_delete ();
301
- } elseif ( is_rtmedia_album () ) {
302
-
303
- $this->album_delete ();
304
- }
305
- }
306
- }
307
-
308
- function bulk_delete () {
309
- $nonce = $_POST[ 'rtmedia_bulk_delete_nonce' ];
310
-
311
- $media = new RTMediaMedia();
312
- if ( wp_verify_nonce ( $nonce, 'rtmedia_bulk_delete_nonce' ) && isset ( $_POST[ 'selected' ] ) ) {
313
- $ids = $_POST[ 'selected' ];
314
- foreach ( $ids as $id ) {
315
- $media->delete ( $id );
316
- }
317
- }
318
- wp_safe_redirect ( $_POST[ '_wp_http_referer' ] );
319
- die();
320
- }
321
-
322
- function single_delete () {
323
- global $rtmedia_query;
324
- $nonce = $_REQUEST[ 'rtmedia_media_nonce' ];
325
- if ( wp_verify_nonce ( $nonce, 'rtmedia_' . $rtmedia_query->media[ 0 ]->id ) ) {
326
-
327
- // do_action('rtmedia_before_delete_media',$rtmedia_query->media[ 0 ]->id);
328
-
329
- $id = $_POST;
330
- unset ( $id[ 'rtmedia_media_nonce' ] );
331
- unset ( $id[ '_wp_http_referer' ] );
332
- $media = new RTMediaMedia();
333
- $media->delete ( $rtmedia_query->media[ 0 ]->id );
334
-
335
- $post = get_post ( $rtmedia_query->media[ 0 ] );
336
-
337
- $parent_link = '';
338
- if ( function_exists ( 'bp_core_get_user_domain' ) ) {
339
- $parent_link = bp_core_get_user_domain ( $post->media_author );
340
- } else {
341
- $parent_link = get_author_posts_url ( $post->media_author );
342
- }
343
- $redirect_url = $_SERVER[ "HTTP_REFERER" ];
344
-
345
-
346
- if ( strpos ( $_SERVER[ "HTTP_REFERER" ], "/" . $rtmedia_query->media[ 0 ]->id ) > 0 ) {
347
- if ( isset ( $rtmedia_query->media[ 0 ]->album_id ) && intval ( $rtmedia_query->media[ 0 ]->album_id ) > 0 ) {
348
- $redirect_url = trailingslashit ( $parent_link ) . "media/" . $rtmedia_query->media[ 0 ]->album_id;
349
- } else {
350
- $redirect_url = trailingslashit ( $parent_link ) . "media/";
351
- }
352
- }
353
- $redirect_url = apply_filters( 'rtmedia_before_delete_media_redirect', $redirect_url );
354
- wp_safe_redirect ( $redirect_url );
355
- die();
356
- } else {
357
- _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
358
- }
359
- }
360
-
361
- function album_delete () {
362
- global $rtmedia_query;
363
- $nonce = $_REQUEST[ 'rtmedia_delete_album_nonce' ];
364
- if ( wp_verify_nonce ( $nonce, 'rtmedia_delete_album_' . $rtmedia_query->media_query[ 'album_id' ] ) ) {
365
- $media = new RTMediaMedia();
366
- $model = new RTMediaModel();
367
- $album_contents = $model->get ( array( 'album_id' => $rtmedia_query->media_query[ 'album_id' ] ), false, false );
368
- foreach ( $album_contents as $album_media ) {
369
- $media->delete ( $album_media->id );
370
- }
371
- $media->delete ( $rtmedia_query->media_query[ 'album_id' ] );
372
- }
373
- if(isset($rtmedia_query->media_query['context']) && $rtmedia_query->media_query['context'] == "group") {
374
- global $bp;
375
- $group_link = bp_get_group_permalink($bp->groups->current_group);
376
- wp_safe_redirect ( trailingslashit( $group_link ) . RTMEDIA_MEDIA_SLUG . '/album/' );
377
- } else {
378
- wp_safe_redirect ( trailingslashit( get_rtmedia_user_link ( get_current_user_id () ) ) . RTMEDIA_MEDIA_SLUG . '/album/' );
379
  }
380
- exit;
381
- }
382
-
383
- function check_return_merge () {
384
- global $rtmedia_query;
385
- if ( $rtmedia_query->action_query->action != 'merge' )
386
- return;
387
- $nonce = $_REQUEST[ 'rtmedia_merge_album_nonce' ];
388
- if ( wp_verify_nonce ( $nonce, 'rtmedia_merge_album_' . $rtmedia_query->media_query[ 'album_id' ] ) ) {
389
- $media = new RTMediaMedia();
390
- $model = new RTMediaModel();
391
- $album_contents = $model->get ( array( 'album_id' => $rtmedia_query->media_query[ 'album_id' ] ), false, false );
392
- // print_r($album_contents); die;
393
- $album_move_details = $model->get_media ( array( 'id' => $_POST[ 'album' ] ), false, false );
394
- foreach ( $album_contents as $album_media ) {
395
-
396
- $post_array[ 'ID' ] = $album_media->media_id;
397
- $post_array[ 'post_parent' ] = $album_move_details[ 0 ]->media_id;
398
- wp_update_post ( $post_array );
399
- $media->update ( $album_media->id, array( 'album_id' => $album_move_details[ 0 ]->id ), $album_media->media_id );
400
- }
401
- $media->delete ( $rtmedia_query->media_query[ 'album_id' ] );
402
- }
403
- if(isset($rtmedia_query->media_query['context']) && $rtmedia_query->media_query['context'] == "group") {
404
- global $bp;
405
- $group_link = bp_get_group_permalink($bp->groups->current_group);
406
- wp_safe_redirect ( trailingslashit( $group_link ) . RTMEDIA_MEDIA_SLUG . '/album/' );
407
- } else {
408
- wp_safe_redirect ( trailingslashit( get_rtmedia_user_link ( get_current_user_id () ) ) . RTMEDIA_MEDIA_SLUG . '/album/' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  }
410
- exit;
411
- }
412
-
413
- function check_return_comments () {
414
- global $rtmedia_query;
415
-
416
- if ( $rtmedia_query->action_query->action != 'comment' )
417
- return;
418
- if ( isset ( $rtmedia_query->action_query->id ) && count ( $_POST ) ) {
419
- /**
420
- * /media/comments [POST]
421
- * Post a comment to the album by post id
422
- */
423
- $nonce = $_REQUEST[ 'rtmedia_comment_nonce' ];
424
- if ( wp_verify_nonce ( $nonce, 'rtmedia_comment_nonce' ) ) {
425
- if ( empty ( $_POST[ 'comment_content' ] ) ) {
426
- return false;
427
- }
428
- $comment = new RTMediaComment();
429
- $attr = $_POST;
430
- $mediaModel = new RTMediaModel();
431
- $result = $mediaModel->get ( array( 'id' => $rtmedia_query->action_query->id ) );
432
-
433
- if ( ! isset ( $attr[ 'comment_post_ID' ] ) )
434
- $attr[ 'comment_post_ID' ] = $result[ 0 ]->media_id;
435
- $id = $comment->add ( $attr );
436
-
437
-
438
- if ( $result[ 0 ]->activity_id != NULL ) {
439
- global $rtmedia_buddypress_activity;
440
- remove_action ( "bp_activity_comment_posted", array( $rtmedia_buddypress_activity, "comment_sync" ), 10, 2 );
441
- if ( function_exists ( 'bp_activity_new_comment' ) ) {
442
- $comment_activity_id = bp_activity_new_comment ( array( 'content' => $_POST[ 'comment_content' ], 'activity_id' => $result[ 0 ]->activity_id ) );
443
- }
444
- }
445
- if(!empty($comment_activity_id)){
446
- update_comment_meta($id, 'activity_id', $comment_activity_id);
447
- }
448
- if ( isset ( $_POST[ "rtajax" ] ) ) {
449
- global $wpdb;
450
- $comments = $wpdb->get_row ( $wpdb->prepare ( "SELECT * FROM $wpdb->comments WHERE comment_ID = %d", $id ), ARRAY_A );
451
- echo rmedia_single_comment ( $comments );
452
- exit;
453
- }
454
- } else {
455
- _e ( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
456
- }
457
- }
458
- }
459
- function check_delete_comments () {
460
- global $rtmedia_query;
461
-
462
- if ( $rtmedia_query->action_query->action != 'delete-comment' )
463
- return;
464
-
465
- if ( count ( $_POST ) ) {
466
- /**
467
- * /media/id/delete-comment [POST]
468
- * Delete Comment by Comment ID
469
- */
470
-
471
- if ( empty ( $_POST[ 'comment_id' ] ) ) {
472
- return false;
473
- }
474
- $comment = new RTMediaComment();
475
- $id = $_POST['comment_id'];
476
- $activity_id = get_comment_meta($id, 'activity_id',true);
477
-
478
- if(!empty($activity_id)){
479
- if(function_exists('bp_activity_delete_comment')){ //if buddypress is active
480
- $activity_deleted = bp_activity_delete_comment ($activity_id, $id);
481
- $delete = bp_activity_delete( array( 'id' => $activity_id, 'type' => 'activity_comment' ) );
482
- }
483
- }
484
- $comment_deleted = $comment->remove ( $id );
485
-
486
-
487
- echo $comment_deleted;
488
- exit;
489
- }
490
- }
491
-
492
- /**
493
- * Helper method to fetch allowed media types from each section
494
- *
495
- * @param type $allowed_type
496
- * @return type
497
- */
498
- function get_allowed_type_name ( $allowed_type ) {
499
- return $allowed_type[ 'name' ];
500
- }
501
-
502
- /**
503
- * Validates all the attributes for gallery shortcode
504
- *
505
- * @global type $rtmedia
506
- * @param string $attr
507
- * @return type
508
- */
509
- function sanitize_gallery_attributes ( &$attr ) {
510
- global $rtmedia;
511
-
512
- $flag = true;
513
-
514
- if ( isset ( $attr[ 'media_type' ] ) ) {
515
- $allowed_type_names = array_map ( array( $this, 'get_allowed_type_name' ), $rtmedia->allowed_types );
516
-
517
- if ( strtolower ( $attr[ 'media_type' ] ) == 'all' ) {
518
- $flag = $flag && true;
519
- unset ( $attr[ 'media_type' ] );
520
- } else if(strtolower ( $attr[ 'media_type' ] ) == 'album' ){
521
- $flag = $flag && true;
522
- }
523
- else
524
- $flag = $flag && in_array ( $attr[ 'media_type' ], $allowed_type_names );
525
- }
526
-
527
- if ( isset ( $attr[ 'order_by' ] ) ) {
528
-
529
- $allowed_columns = array( 'date', 'views', 'downloads', 'ratings', 'likes', 'dislikes' );
530
- $allowed_columns = apply_filters ( 'filter_allowed_sorting_columns', $allowed_columns );
531
-
532
- $flag = $flag && in_array ( $attr[ 'order_by' ], $allowed_columns );
533
-
534
- if ( strtolower ( $attr[ 'order_by' ] ) == 'date' )
535
- $attr[ 'order_by' ] = 'media_id';
536
- }
537
-
538
- if ( isset ( $attr[ 'order' ] ) ) {
539
- $flag = $flag && strtolower ( $attr[ 'order' ] ) == 'asc' || strtolower ( $attr[ 'order' ] ) == 'desc';
540
- }
541
-
542
- return $flag;
543
- }
544
-
545
- function update_global_query ( $attr ) {
546
- global $rtmedia_query;
547
- $rtmedia_query->query ( $attr );
548
- }
549
-
550
- /**
551
- * filter to change the template path independent of the plugin
552
- *
553
- * @return type
554
- */
555
- function get_default_template () {
556
-
557
- return apply_filters ( 'rtmedia_media_template_include', self::locate_template ( 'main', '' ) );
558
- }
559
-
560
- /**
561
- * Template Locator
562
- *
563
- * @param type $template
564
- * @return string
565
- */
566
- static function locate_template ( $template = false, $context = false, $url = false ) {
567
- $located = '';
568
- if ( ! $template ) {
569
- global $rtmedia_query;
570
-
571
- if ( is_rtmedia_album_gallery () ) {
572
- $template = 'album-gallery';
573
- } elseif ( is_rtmedia_album () || is_rtmedia_gallery () ) {
574
- $template = 'media-gallery';
575
- if (
576
- is_rtmedia_album () &&
577
- isset ( $rtmedia_query->media_query ) &&
578
- $rtmedia_query->action_query->action == 'edit'
579
- ) {
580
- if ( rtmedia_is_album_editable() || is_rt_admin() ) {
581
- $template = 'album-single-edit';
582
- }
583
- }
584
- } else if ( is_rtmedia_single () ) {
585
- $template = 'media-single';
586
- if ( $rtmedia_query->action_query->action == 'edit' )
587
- $template = 'media-single-edit';
588
- }else {
589
- return;
590
- }
591
- $template = apply_filters('rtmedia_template_filter',$template);
592
- }
593
-
594
- $context = apply_filters( 'rtmedia_context_filter' , $context );
595
-
596
- $template_name = $template . '.php';
597
-
598
- if ( $context === false ) {
599
- $context = 'media/';
600
- }
601
- if ( ! $context === '' ) {
602
- $context .='/';
603
- }
604
-
605
- $path = 'rtmedia/' . $context;
606
- $ogpath = 'templates/' . $context;
607
-
608
- if ( file_exists ( trailingslashit ( STYLESHEETPATH ) . $path . $template_name ) ) {
609
- if ( $url ) {
610
- $located = trailingslashit ( get_stylesheet_directory_uri () ) . $path . $template_name;
611
- } else {
612
- $located = trailingslashit ( STYLESHEETPATH ) . $path . $template_name;
613
- }
614
- } else if ( file_exists ( trailingslashit ( TEMPLATEPATH ) . $path . $template_name ) ) {
615
- if ( $url ) {
616
- $located = trailingslashit ( get_template_directory_uri () ) . $path . $template_name;
617
- } else {
618
- $located = trailingslashit ( TEMPLATEPATH ) . $path . $template_name;
619
- }
620
- } else {
621
- if ( $url ) {
622
- $located = trailingslashit ( RTMEDIA_URL ) . $ogpath . $template_name;
623
- } else {
624
- $located = trailingslashit ( RTMEDIA_PATH ) . $ogpath . $template_name;
625
- }
626
- $located = apply_filters('rtmedia_located_template', $located , $url, $ogpath, $template_name );// filter for rtmedia pro
627
- }
628
- return $located;
629
- }
630
 
631
  }
10
  */
11
  class RTMediaTemplate {
12
 
13
+ public $media_args;
14
+
15
+ function __construct() {
16
+ global $rtmedia_query;
17
+ if ( $rtmedia_query ){
18
+ add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
19
+ add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_image_editor_scripts' ) );
20
+ }
21
+ }
22
+
23
+ /**
24
+ * Enqueues required scripts on the page
25
+ */
26
+ function enqueue_scripts() {
27
+ wp_enqueue_script( 'rtmedia-backbone' );
28
+ $is_album = is_rtmedia_album() ? true : false;
29
+ $is_edit_allowed = is_rtmedia_edit_allowed() ? true : false;
30
+ wp_localize_script( 'rtmedia-backbone', 'is_album', array( $is_album ) );
31
+ wp_localize_script( 'rtmedia-backbone', 'is_edit_allowed', array( $is_edit_allowed ) );
32
+ }
33
+
34
+ function enqueue_image_editor_scripts() {
35
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
36
+ wp_enqueue_script( 'wp-ajax-response' );
37
+ wp_enqueue_script( 'rtmedia-image-edit', admin_url( "js/image-edit$suffix.js" ), array( 'jquery', 'json2', 'imgareaselect' ), false, 1 );
38
+ wp_enqueue_style( 'rtmedia-image-edit', RTMEDIA_URL . 'app/assets/css/image-edit.css' );
39
+ wp_enqueue_style( 'rtmedia-image-area-select', includes_url( '/js/imgareaselect/imgareaselect.css' ) );
40
+ }
41
+
42
+ /**
43
+ * redirects to the template according to the page request
44
+ * Pass on the shortcode attributes to the template so that the shortcode can berendered accordingly.
45
+ *
46
+ * Also handles the json request coming from the AJAX calls for the media
47
+ *
48
+ * @global type $rtmedia_query
49
+ * @global type $rtmedia_interaction
50
+ *
51
+ * @param type $template
52
+ * @param type $shortcode_attr
53
+ *
54
+ * @return type
55
+ */
56
+ function set_template( $template = false, $shortcode_attr = false ) {
57
+
58
+ global $rtmedia_query, $rtmedia_interaction, $rtmedia_media;
59
+
60
+ do_action( 'rtmedia_pre_template' );
61
+
62
+ //print_r($rtmedia_query);
63
+
64
+ if ( isset ( $rtmedia_query->action_query->action ) ){
65
+ //echo $rtmedia_query->action_query->action;
66
+ do_action( 'rtmedia_pre_action_' . $rtmedia_query->action_query->action );
67
+ } else {
68
+ do_action( 'rtmedia_pre_action_default' );
69
+ }
70
+
71
+ $this->check_return_json();
72
+
73
+ $this->check_return_upload();
74
+
75
+ if ( $rtmedia_interaction && isset( $rtmedia_interaction->context ) && in_array( $rtmedia_interaction->context->type, array( "profile", "group" ) ) ){
76
+
77
+
78
+ $this->check_return_edit();
79
+
80
+ $this->check_return_delete();
81
+
82
+ $this->check_return_merge();
83
+
84
+ $this->check_return_comments();
85
+
86
+ $this->check_delete_comments();
87
+ if ( isset( $rtmedia_query->is_gallery_shortcode ) && $rtmedia_query->is_gallery_shortcode == true && isset( $shortcode_attr[ 'name' ] ) && $shortcode_attr[ 'name' ] == 'gallery' ){
88
+
89
+ $valid = $this->sanitize_gallery_attributes( $shortcode_attr[ 'attr' ] );
90
+
91
+ if ( $valid ) {
92
+ if ( is_array( $shortcode_attr[ 'attr' ] ) ) {
93
+ $this->update_global_query( $shortcode_attr[ 'attr' ] );
94
+ }
95
+ echo "<div class='rtmedia_gallery_wrapper'>";
96
+ $this->add_hidden_fields_in_gallery();
97
+ $gallery_template = apply_filters( "rtmedia-before-template", $template, $shortcode_attr );
98
+ include $this->locate_template( $gallery_template );
99
+ echo "</div>";
100
+ } else {
101
+ echo __( 'Invalid attribute passed for rtmedia_gallery shortcode.', 'rtmedia' );
102
+
103
+ return false;
104
+ }
105
+ } else {
106
+ return $this->get_default_template();
107
+ }
108
+ } else {
109
+ if ( ! $shortcode_attr ){
110
+ return $this->get_default_template();
111
+ } else {
112
+ if ( $shortcode_attr[ 'name' ] == 'gallery' ){
113
+ $valid = $this->sanitize_gallery_attributes( $shortcode_attr[ 'attr' ] );
114
+ if ( $valid ){
115
+ if ( is_array( $shortcode_attr[ 'attr' ] ) ){
116
+ $this->update_global_query( $shortcode_attr[ 'attr' ] );
117
+ }
118
+ global $rtaccount;
119
+ if ( ! isset ( $rtaccount ) ){
120
+ $rtaccount = 0;
121
+ }
122
+ //add_action("rtmedia_before_media_gallery",array(&$this,"")) ;
123
+ if ( isset( $shortcode_attr[ 'attr' ] ) && isset( $shortcode_attr[ 'attr' ][ 'uploader' ] ) && $shortcode_attr[ 'attr' ][ 'uploader' ] == "before" ){
124
+ echo RTMediaUploadShortcode::pre_render( $shortcode_attr[ 'attr' ] );
125
+ }
126
+ echo "<div class='rtmedia_gallery_wrapper'>";
127
+ $this->add_hidden_fields_in_gallery();
128
+ $gallery_template = apply_filters( "rtmedia-before-template", $template, $shortcode_attr );
129
+ include $this->locate_template( $gallery_template );
130
+ echo "</div>";
131
+ if ( isset( $shortcode_attr[ 'attr' ] ) && isset( $shortcode_attr[ 'attr' ][ 'uploader' ] ) && ( $shortcode_attr[ 'attr' ][ 'uploader' ] == "after" || $shortcode_attr[ 'attr' ][ 'uploader' ] == "true" ) ){
132
+ echo RTMediaUploadShortcode::pre_render( $shortcode_attr[ 'attr' ] );
133
+ }
134
+ } else {
135
+ echo __( 'Invalid attribute passed for rtmedia_gallery shortcode.', 'rtmedia' );
136
+
137
+ return false;
138
+ }
139
+ }
140
+ }
141
+ }
142
+ }
143
+
144
+ function add_hidden_fields_in_gallery() {
145
+ global $rtmedia_query;
146
+ $return_str = "<input name='rtmedia_shortcode' value='true' type='hidden' />";
147
+ if ( $rtmedia_query->original_query && is_array( $rtmedia_query->original_query ) ){
148
+ foreach ( $rtmedia_query->original_query as $key => $val ) {
149
+ $return_str .= '<input name="' . $key . '" value="' . $val . '" type="hidden" />';
150
+ }
151
+ }
152
+ echo $return_str;
153
+ }
154
+
155
+ function check_return_json() {
156
+ global $rtmedia_query;
157
+ if ( $rtmedia_query->format == 'json' ){
158
+ $this->json_output();
159
+ } else {
160
+ return;
161
+ }
162
+ }
163
+
164
+ function check_return_upload() {
165
+ global $rtmedia_query;
166
+ if ( $rtmedia_query->action_query->action != 'upload' ){
167
+ return;
168
+ }
169
+ $upload = new RTMediaUploadEndpoint();
170
+ $upload->template_redirect();
171
+ }
172
+
173
+ function json_output() {
174
+ global $rtmedia_query;
175
+ $media_array = array();
176
+ if ( $rtmedia_query->media ){
177
+ foreach ( $rtmedia_query->media as $key => $media ) {
178
+ $media_array[ $key ] = $media;
179
+ $media_array[ $key ]->guid = rtmedia_image( 'rt_media_thumbnail', $media->id, false );
180
+ $media_array[ $key ]->rt_permalink = get_rtmedia_permalink( $media->id );
181
+ }
182
+ }
183
+ $return_array[ 'data' ] = $media_array;
184
+ $return_array[ 'prev' ] = rtmedia_page() - 1;
185
+ $return_array[ 'next' ] = ( rtmedia_offset() + rtmedia_per_page_media() < rtmedia_count() ) ? ( rtmedia_page() + 1 ) : - 1;
186
+ echo json_encode( $return_array );
187
+ die;
188
+ }
189
+
190
+ function check_return_edit() {
191
+ global $rtmedia_query;
192
+ if ( $rtmedia_query->action_query->action == 'edit' && count( $_POST ) ){
193
+ $this->save_edit();
194
+ }
195
+
196
+ return $this->get_default_template();
197
+ }
198
+
199
+ function save_edit() {
200
+ if ( is_rtmedia_single() ){
201
+ $this->save_single_edit();
202
+ } elseif ( is_rtmedia_album() ) {
203
+ $this->save_album_edit();
204
+ }
205
+ }
206
+
207
+ function save_single_edit() {
208
+ global $rtmedia_query;
209
+ $nonce = $_POST[ 'rtmedia_media_nonce' ];
210
+ if ( wp_verify_nonce( $nonce, 'rtmedia_' . $rtmedia_query->action_query->id ) ){
211
+ do_action( 'rtmedia_before_update_media', $rtmedia_query->action_query->id );
212
+ $data_array = array( 'media_title', 'description', 'privacy' );
213
+ //for medias except album and playlist, if album_is is found, then update album_id for the media also
214
+ if ( isset( $_POST[ 'album_id' ] ) && $_POST[ 'album_id' ] != '' ){
215
+ $data_array[ ] = 'album_id';
216
+ }
217
+ $data = rtmedia_sanitize_object( $_POST, $data_array );
218
+ $media = new RTMediaMedia();
219
+ $image_path = get_attached_file( $rtmedia_query->media[ 0 ]->media_id );
220
+ if ( $image_path && $rtmedia_query->media[ 0 ]->media_type == "photo" ){
221
+ $image_meta_data = wp_generate_attachment_metadata( $rtmedia_query->media[ 0 ]->media_id, $image_path );
222
+ wp_update_attachment_metadata( $rtmedia_query->media[ 0 ]->media_id, $image_meta_data );
223
+ }
224
+ $state = $media->update( $rtmedia_query->action_query->id, $data, $rtmedia_query->media[ 0 ]->media_id );
225
+ $rtmedia_query->query( false );
226
+ global $rtmedia_points_media_id;
227
+ $rtmedia_points_media_id = $rtmedia_query->action_query->id;
228
+ do_action( 'rtmedia_after_edit_media', $rtmedia_query->action_query->id, $state );
229
+
230
+ //refresh
231
+ $rtMediaNav = new RTMediaNav();
232
+ if ( $rtmedia_query->media[ 0 ]->context == "group" ){
233
+ $rtMediaNav->refresh_counts( $rtmedia_query->media[ 0 ]->context_id, array( "context" => $rtmedia_query->media[ 0 ]->context, 'context_id' => $rtmedia_query->media[ 0 ]->context_id ) );
234
+ } else {
235
+ $rtMediaNav->refresh_counts( $rtmedia_query->media[ 0 ]->media_author, array( "context" => "profile", 'media_author' => $rtmedia_query->media[ 0 ]->media_author ) );
236
+ }
237
+ $state = apply_filters( 'rtmedia_single_edit_state', $state );
238
+ if ( $state !== false ){
239
+ add_action( "rtmedia_before_template_load", array( &$this, "media_update_success_messege" ) );
240
+ } else {
241
+ add_action( "rtmedia_before_template_load", array( &$this, "media_update_success_error" ) );
242
+ }
243
+ } else {
244
+ _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
245
+ }
246
+ }
247
+
248
+ function media_update_success_messege() {
249
+ $message = apply_filters( "rtmedia_update_media_message", __( 'Media updated Sucessfully', 'rtmedia' ), false );
250
+ $html = "<div class='rtmedia-success media-edit-messge'>" . __( $message, "rtmedia" ) . "</div>";
251
+ echo apply_filters( "rtmedia_update_media_message_html", $html, $message, false );
252
+ }
253
+
254
+ function media_update_success_error() {
255
+ $message = apply_filters( "rtmedia_update_media_message", __( 'Error in updating Media', 'rtmedia' ), true );
256
+ $html = "<div class='rtmedia-error media-edit-messge'>" . __( $message, "rtmedia" ) . "</div>";
257
+ echo apply_filters( "rtmedia_update_media_message_html", $html, $message, true );
258
+ }
259
+
260
+ function save_album_edit() {
261
+ global $rtmedia_query;
262
+ $nonce = $_REQUEST[ 'rtmedia_media_nonce' ];
263
+ if ( wp_verify_nonce( $nonce, 'rtmedia_' . $rtmedia_query->media_query[ 'album_id' ] ) ){
264
+ $media = new RTMediaMedia();
265
+ $model = new RTMediaModel();
266
+ if ( isset ( $_POST[ 'submit' ] ) ){
267
+ $data = $_POST;
268
+ unset ( $data[ 'rtmedia_media_nonce' ] );
269
+ unset ( $data[ '_wp_http_referer' ] );
270
+ unset ( $data[ 'submit' ] );
271
+ $album = $model->get_media( array( 'id' => $rtmedia_query->media_query[ 'album_id' ] ), false, false );
272
+ $state = $media->update( $album[ 0 ]->id, $data, $album[ 0 ]->media_id );
273
+ global $rtmedia_points_media_id;
274
+ $rtmedia_points_media_id = $album[ 0 ]->id;
275
+ do_action( 'rtmedia_after_update_album', $album[ 0 ]->id, $state );
276
+ } elseif ( isset ( $_POST[ 'move-selected' ] ) ) {
277
+ // print_r($_POST);die;
278
+ $album_move = $_POST[ 'album' ];
279
+ $selected_ids = null;
280
+
281
+ if ( isset ( $_POST[ 'selected' ] ) ){
282
+ $selected_ids = $_POST[ 'selected' ];
283
+ unset ( $_POST[ 'selected' ] );
284
+ }
285
+ if ( ! empty ( $selected_ids ) && is_array( $selected_ids ) ){
286
+ $album_move_details = $model->get_media( array( 'id' => $album_move ), false, false );
287
+ foreach ( $selected_ids as $media_id ) {
288
+ $media_details = $model->get_media( array( 'id' => $media_id ), false, false );
289
+ $post_array[ 'ID' ] = $media_details[ 0 ]->media_id;
290
+ $post_array[ 'post_parent' ] = $album_move_details[ 0 ]->media_id;
291
+ wp_update_post( $post_array );
292
+ $media->update( $media_details[ 0 ]->id, array( 'album_id' => $album_move_details[ 0 ]->id ), $media_details[ 0 ]->media_id );
293
+ }
294
+ }
295
+ }
296
+ //refresh
297
+ $rtMediaNav = new RTMediaNav();
298
+ if ( $rtmedia_query->media[ 0 ]->context == "group" ){
299
+ $rtMediaNav->refresh_counts( $rtmedia_query->media[ 0 ]->context_id, array( "context" => $rtmedia_query->media[ 0 ]->context, 'context_id' => $rtmedia_query->media[ 0 ]->context_id ) );
300
+ } else {
301
+ $rtMediaNav->refresh_counts( $rtmedia_query->media[ 0 ]->media_author, array( "context" => "profile", 'media_author' => $rtmedia_query->media[ 0 ]->media_author ) );
302
+ }
303
+ wp_safe_redirect( get_rtmedia_permalink( $rtmedia_query->media_query[ 'album_id' ] ) . 'edit/' );
304
+ die();
305
+ } else {
306
+ _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
307
+ }
308
+ }
309
+
310
+ function check_return_delete() {
311
+
312
+ global $rtmedia_query;
313
+ if ( $rtmedia_query->action_query->action != 'delete' ){
314
+ return;
315
+ }
316
+ if ( ! count( $_POST ) ){
317
+ return;
318
+ }
319
+
320
+ if ( isset ( $rtmedia_query->action_query->default ) && $rtmedia_query->action_query->default == 'delete' ){
321
+ $this->bulk_delete();
322
+ } else {
323
+ if ( is_rtmedia_single() ){
324
+ $this->single_delete();
325
+ } elseif ( is_rtmedia_album() ) {
326
+
327
+ $this->album_delete();
328
+ }
329
+ }
330
+ }
331
+
332
+ function bulk_delete() {
333
+ $nonce = $_POST[ 'rtmedia_bulk_delete_nonce' ];
334
+
335
+ $media = new RTMediaMedia();
336
+ if ( wp_verify_nonce( $nonce, 'rtmedia_bulk_delete_nonce' ) && isset ( $_POST[ 'selected' ] ) ){
337
+ $ids = $_POST[ 'selected' ];
338
+ foreach ( $ids as $id ) {
339
+ $media->delete( $id );
340
+ }
341
+ }
342
+ wp_safe_redirect( $_POST[ '_wp_http_referer' ] );
343
+ die();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  }
345
+
346
+ function single_delete() {
347
+ global $rtmedia_query;
348
+ $nonce = $_REQUEST[ 'rtmedia_media_nonce' ];
349
+ if ( wp_verify_nonce( $nonce, 'rtmedia_' . $rtmedia_query->media[ 0 ]->id ) ){
350
+
351
+ // do_action('rtmedia_before_delete_media',$rtmedia_query->media[ 0 ]->id);
352
+
353
+ $id = $_POST;
354
+ unset ( $id[ 'rtmedia_media_nonce' ] );
355
+ unset ( $id[ '_wp_http_referer' ] );
356
+ $media = new RTMediaMedia();
357
+ $media->delete( $rtmedia_query->media[ 0 ]->id );
358
+
359
+ $post = get_post( $rtmedia_query->media[ 0 ] );
360
+
361
+ $parent_link = '';
362
+ if ( function_exists( 'bp_core_get_user_domain' ) ){
363
+ $parent_link = bp_core_get_user_domain( $post->media_author );
364
+ } else {
365
+ $parent_link = get_author_posts_url( $post->media_author );
366
+ }
367
+ $redirect_url = $_SERVER[ "HTTP_REFERER" ];
368
+
369
+
370
+ if ( strpos( $_SERVER[ "HTTP_REFERER" ], "/" . $rtmedia_query->media[ 0 ]->id ) > 0 ){
371
+ if ( isset ( $rtmedia_query->media[ 0 ]->album_id ) && intval( $rtmedia_query->media[ 0 ]->album_id ) > 0 ){
372
+ $redirect_url = trailingslashit( $parent_link ) . "media/" . $rtmedia_query->media[ 0 ]->album_id;
373
+ } else {
374
+ $redirect_url = trailingslashit( $parent_link ) . "media/";
375
+ }
376
+ }
377
+ $redirect_url = apply_filters( 'rtmedia_before_delete_media_redirect', $redirect_url );
378
+ wp_safe_redirect( $redirect_url );
379
+ die();
380
+ } else {
381
+ _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
382
+ }
383
+ }
384
+
385
+ function album_delete() {
386
+ global $rtmedia_query;
387
+ $nonce = $_REQUEST[ 'rtmedia_delete_album_nonce' ];
388
+ if ( wp_verify_nonce( $nonce, 'rtmedia_delete_album_' . $rtmedia_query->media_query[ 'album_id' ] ) ){
389
+ $media = new RTMediaMedia();
390
+ $model = new RTMediaModel();
391
+ $album_contents = $model->get( array( 'album_id' => $rtmedia_query->media_query[ 'album_id' ] ), false, false );
392
+ foreach ( $album_contents as $album_media ) {
393
+ $media->delete( $album_media->id );
394
+ }
395
+ $media->delete( $rtmedia_query->media_query[ 'album_id' ] );
396
+ }
397
+ if ( isset( $rtmedia_query->media_query[ 'context' ] ) && $rtmedia_query->media_query[ 'context' ] == "group" ){
398
+ global $bp;
399
+ $group_link = bp_get_group_permalink( $bp->groups->current_group );
400
+ wp_safe_redirect( trailingslashit( $group_link ) . RTMEDIA_MEDIA_SLUG . '/album/' );
401
+ } else {
402
+ wp_safe_redirect( trailingslashit( get_rtmedia_user_link( get_current_user_id() ) ) . RTMEDIA_MEDIA_SLUG . '/album/' );
403
+ }
404
+ exit;
405
+ }
406
+
407
+ function check_return_merge() {
408
+ global $rtmedia_query;
409
+ if ( $rtmedia_query->action_query->action != 'merge' ){
410
+ return;
411
+ }
412
+ $nonce = $_REQUEST[ 'rtmedia_merge_album_nonce' ];
413
+ if ( wp_verify_nonce( $nonce, 'rtmedia_merge_album_' . $rtmedia_query->media_query[ 'album_id' ] ) ){
414
+ $media = new RTMediaMedia();
415
+ $model = new RTMediaModel();
416
+ $album_contents = $model->get( array( 'album_id' => $rtmedia_query->media_query[ 'album_id' ] ), false, false );
417
+ // print_r($album_contents); die;
418
+ $album_move_details = $model->get_media( array( 'id' => $_POST[ 'album' ] ), false, false );
419
+ foreach ( $album_contents as $album_media ) {
420
+
421
+ $post_array[ 'ID' ] = $album_media->media_id;
422
+ $post_array[ 'post_parent' ] = $album_move_details[ 0 ]->media_id;
423
+ wp_update_post( $post_array );
424
+ $media->update( $album_media->id, array( 'album_id' => $album_move_details[ 0 ]->id ), $album_media->media_id );
425
+ }
426
+ $media->delete( $rtmedia_query->media_query[ 'album_id' ] );
427
+ }
428
+ if ( isset( $rtmedia_query->media_query[ 'context' ] ) && $rtmedia_query->media_query[ 'context' ] == "group" ){
429
+ global $bp;
430
+ $group_link = bp_get_group_permalink( $bp->groups->current_group );
431
+ wp_safe_redirect( trailingslashit( $group_link ) . RTMEDIA_MEDIA_SLUG . '/album/' );
432
+ } else {
433
+ wp_safe_redirect( trailingslashit( get_rtmedia_user_link( get_current_user_id() ) ) . RTMEDIA_MEDIA_SLUG . '/album/' );
434
+ }
435
+ exit;
436
+ }
437
+
438
+ function check_return_comments() {
439
+ global $rtmedia_query;
440
+
441
+ if ( $rtmedia_query->action_query->action != 'comment' ){
442
+ return;
443
+ }
444
+ if ( isset ( $rtmedia_query->action_query->id ) && count( $_POST ) ){
445
+ /**
446
+ * /media/comments [POST]
447
+ * Post a comment to the album by post id
448
+ */
449
+ $nonce = $_REQUEST[ 'rtmedia_comment_nonce' ];
450
+ if ( wp_verify_nonce( $nonce, 'rtmedia_comment_nonce' ) ){
451
+ if ( empty ( $_POST[ 'comment_content' ] ) ){
452
+ return false;
453
+ }
454
+ $comment = new RTMediaComment();
455
+ $attr = $_POST;
456
+ $mediaModel = new RTMediaModel();
457
+ $result = $mediaModel->get( array( 'id' => $rtmedia_query->action_query->id ) );
458
+
459
+ if ( ! isset ( $attr[ 'comment_post_ID' ] ) ){
460
+ $attr[ 'comment_post_ID' ] = $result[ 0 ]->media_id;
461
+ }
462
+ $id = $comment->add( $attr );
463
+
464
+
465
+ if ( $result[ 0 ]->activity_id != null ){
466
+ global $rtmedia_buddypress_activity;
467
+ remove_action( "bp_activity_comment_posted", array( $rtmedia_buddypress_activity, "comment_sync" ), 10, 2 );
468
+ if ( function_exists( 'bp_activity_new_comment' ) ){
469
+ $comment_activity_id = bp_activity_new_comment( array( 'content' => $_POST[ 'comment_content' ], 'activity_id' => $result[ 0 ]->activity_id ) );
470
+ }
471
+ }
472
+ if ( ! empty( $comment_activity_id ) ){
473
+ update_comment_meta( $id, 'activity_id', $comment_activity_id );
474
+ }
475
+ if ( isset ( $_POST[ "rtajax" ] ) ){
476
+ global $wpdb;
477
+ $comments = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->comments WHERE comment_ID = %d", $id ), ARRAY_A );
478
+ echo rmedia_single_comment( $comments );
479
+ exit;
480
+ }
481
+ } else {
482
+ _e( 'Ooops !!! Invalid access. No nonce was found !!', 'rtmedia' );
483
+ }
484
+ }
485
+ }
486
+
487
+ function check_delete_comments() {
488
+ global $rtmedia_query;
489
+
490
+ if ( $rtmedia_query->action_query->action != 'delete-comment' ){
491
+ return;
492
+ }
493
+
494
+ if ( count( $_POST ) ){
495
+ /**
496
+ * /media/id/delete-comment [POST]
497
+ * Delete Comment by Comment ID
498
+ */
499
+
500
+ if ( empty ( $_POST[ 'comment_id' ] ) ){
501
+ return false;
502
+ }
503
+ $comment = new RTMediaComment();
504
+ $id = $_POST[ 'comment_id' ];
505
+ $activity_id = get_comment_meta( $id, 'activity_id', true );
506
+
507
+ if ( ! empty( $activity_id ) ){
508
+ if ( function_exists( 'bp_activity_delete_comment' ) ){ //if buddypress is active
509
+ $activity_deleted = bp_activity_delete_comment( $activity_id, $id );
510
+ $delete = bp_activity_delete( array( 'id' => $activity_id, 'type' => 'activity_comment' ) );
511
+ }
512
+ }
513
+ $comment_deleted = $comment->remove( $id );
514
+
515
+
516
+ echo $comment_deleted;
517
+ exit;
518
+ }
519
+ }
520
+
521
+ /**
522
+ * Helper method to fetch allowed media types from each section
523
+ *
524
+ * @param type $allowed_type
525
+ *
526
+ * @return type
527
+ */
528
+ function get_allowed_type_name( $allowed_type ) {
529
+ return $allowed_type[ 'name' ];
530
+ }
531
+
532
+ /**
533
+ * Validates all the attributes for gallery shortcode
534
+ *
535
+ * @global type $rtmedia
536
+ *
537
+ * @param string $attr
538
+ *
539
+ * @return type
540
+ */
541
+ function sanitize_gallery_attributes( &$attr ) {
542
+ global $rtmedia;
543
+
544
+ $flag = true;
545
+
546
+ if ( isset ( $attr[ 'media_type' ] ) ){
547
+ $allowed_type_names = array_map( array( $this, 'get_allowed_type_name' ), $rtmedia->allowed_types );
548
+
549
+ if ( strtolower( $attr[ 'media_type' ] ) == 'all' ){
550
+ $flag = $flag && true;
551
+ unset ( $attr[ 'media_type' ] );
552
+ } else {
553
+ if ( strtolower( $attr[ 'media_type' ] ) == 'album' ){
554
+ $flag = $flag && true;
555
+ } else {
556
+ $flag = $flag && in_array( $attr[ 'media_type' ], $allowed_type_names );
557
+ }
558
+ }
559
+ }
560
+
561
+ if ( isset ( $attr[ 'order_by' ] ) ){
562
+
563
+ $allowed_columns = array( 'date', 'views', 'downloads', 'ratings', 'likes', 'dislikes' );
564
+ $allowed_columns = apply_filters( 'filter_allowed_sorting_columns', $allowed_columns );
565
+
566
+ $flag = $flag && in_array( $attr[ 'order_by' ], $allowed_columns );
567
+
568
+ if ( strtolower( $attr[ 'order_by' ] ) == 'date' ){
569
+ $attr[ 'order_by' ] = 'media_id';
570
+ }
571
+ }
572
+
573
+ if ( isset ( $attr[ 'order' ] ) ){
574
+ $flag = $flag && strtolower( $attr[ 'order' ] ) == 'asc' || strtolower( $attr[ 'order' ] ) == 'desc';
575
+ }
576
+
577
+ return $flag;
578
+ }
579
+
580
+ function update_global_query( $attr ) {
581
+ global $rtmedia_query;
582
+ $rtmedia_query->query( $attr );
583
+ }
584
+
585
+ /**
586
+ * filter to change the template path independent of the plugin
587
+ *
588
+ * @return type
589
+ */
590
+ function get_default_template() {
591
+
592
+ return apply_filters( 'rtmedia_media_template_include', self::locate_template( 'main', '' ) );
593
+ }
594
+
595
+ /**
596
+ * Template Locator
597
+ *
598
+ * @param type $template
599
+ *
600
+ * @return string
601
+ */
602
+ static function locate_template( $template = false, $context = false, $url = false ) {
603
+ $located = '';
604
+ if ( ! $template ){
605
+ global $rtmedia_query;
606
+
607
+ if ( is_rtmedia_album_gallery() ){
608
+ $template = 'album-gallery';
609
+ } elseif ( is_rtmedia_album() || is_rtmedia_gallery() ) {
610
+ $template = 'media-gallery';
611
+ if ( is_rtmedia_album() && isset ( $rtmedia_query->media_query ) && $rtmedia_query->action_query->action == 'edit'
612
+ ){
613
+ if ( rtmedia_is_album_editable() || is_rt_admin() ){
614
+ $template = 'album-single-edit';
615
+ }
616
+ }
617
+ } else {
618
+ if ( is_rtmedia_single() ){
619
+ $template = 'media-single';
620
+ if ( $rtmedia_query->action_query->action == 'edit' ){
621
+ $template = 'media-single-edit';
622
+ }
623
+ } else {
624
+ return;
625
+ }
626
+ }
627
+ $template = apply_filters( 'rtmedia_template_filter', $template );
628
+ }
629
+
630
+ $context = apply_filters( 'rtmedia_context_filter', $context );
631
+
632
+ $template_name = $template . '.php';
633
+
634
+ if ( $context === false ){
635
+ $context = 'media/';
636
+ }
637
+ if ( ! $context === '' ){
638
+ $context .= '/';
639
+ }
640
+
641
+ $path = 'rtmedia/' . $context;
642
+ $ogpath = 'templates/' . $context;
643
+
644
+ if ( file_exists( trailingslashit( STYLESHEETPATH ) . $path . $template_name ) ){
645
+ if ( $url ){
646
+ $located = trailingslashit( get_stylesheet_directory_uri() ) . $path . $template_name;
647
+ } else {
648
+ $located = trailingslashit( STYLESHEETPATH ) . $path . $template_name;
649
+ }
650
+ } else {
651
+ if ( file_exists( trailingslashit( TEMPLATEPATH ) . $path . $template_name ) ){
652
+ if ( $url ){
653
+ $located = trailingslashit( get_template_directory_uri() ) . $path . $template_name;
654
+ } else {
655
+ $located = trailingslashit( TEMPLATEPATH ) . $path . $template_name;
656
+ }
657
+ } else {
658
+ if ( $url ){
659
+ $located = trailingslashit( RTMEDIA_URL ) . $ogpath . $template_name;
660
+ } else {
661
+ $located = trailingslashit( RTMEDIA_PATH ) . $ogpath . $template_name;
662
+ }
663
+ $located = apply_filters( 'rtmedia_located_template', $located, $url, $ogpath, $template_name ); // filter for rtmedia pro
664
+ }
665
+ }
666
+
667
+ return $located;
668
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
 
670
  }
app/main/controllers/template/rt-template-functions.php CHANGED
@@ -1377,7 +1377,7 @@ function rtmedia_create_album ( $options) {
1377
  if ( $display === true ) {
1378
 
1379
  add_action('rtmedia_before_media_gallery','rtmedia_create_album_modal');
1380
- $options[] = "<a href='#rtmedia-create-album-modal' class='rtmedia-reveal-modal rtmedia-modal-link' title='". __( 'Create New Album', 'rtmedia' ) ."'><i class='rtmicon-plus-circle'></i>" . __('Add Album') . "</a>";
1381
  return $options;
1382
 
1383
  }
@@ -1725,7 +1725,7 @@ function show_rtmedia_like_counts(){
1725
  $count = get_rtmedia_like();
1726
  if( !(isset($options['general_enableLikes']) && $options['general_enableLikes'] == 0)){
1727
  ?>
1728
- <div class='rtmedia-like-info<?php if($count == 0) echo " hide";?>'><i class="rtmicon-thumbs-up"></i> <span class="rtmedia-like-counter-wrap"><span class="rtmedia-like-counter"><?php echo $count; ?></span> <?php _e('people like this');?></span></div>
1729
  <?php }
1730
 
1731
  }
1377
  if ( $display === true ) {
1378
 
1379
  add_action('rtmedia_before_media_gallery','rtmedia_create_album_modal');
1380
+ $options[] = "<a href='#rtmedia-create-album-modal' class='rtmedia-reveal-modal rtmedia-modal-link' title='". __( 'Create New Album', 'rtmedia' ) ."'><i class='rtmicon-plus-circle'></i>" . __('Add Album', 'rtmedia') . "</a>";
1381
  return $options;
1382
 
1383
  }
1725
  $count = get_rtmedia_like();
1726
  if( !(isset($options['general_enableLikes']) && $options['general_enableLikes'] == 0)){
1727
  ?>
1728
+ <div class='rtmedia-like-info<?php if($count == 0) echo " hide";?>'><i class="rtmicon-thumbs-up"></i> <span class="rtmedia-like-counter-wrap"><span class="rtmedia-like-counter"><?php echo $count; ?></span> <?php _e('people like this', 'rtmedia');?></span></div>
1729
  <?php }
1730
 
1731
  }
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/buddypress-media/?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: 3.6.10
8
  Author: rtCamp
9
  Text Domain: rtmedia
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: http://rtcamp.com/buddypress-media/?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: 3.6.11
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
languages/rtmedia-pl_PL.mo CHANGED
Binary file
languages/rtmedia-ru_RU.mo CHANGED
Binary file
languages/rtmedia.mo CHANGED
Binary file
languages/rtmedia.po CHANGED
@@ -2,1074 +2,1032 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-26 19:54+0530\n"
6
- "PO-Revision-Date: 2014-03-26 19:54+0530\n"
7
  "Last-Translator: faishal <faishal.saiyed@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: en_IN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
  "X-Poedit-Basepath: ../.\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: app/main/RTMedia.php:254
19
- msgid "Photo"
20
  msgstr ""
21
 
22
- #: app/main/RTMedia.php:255
23
- msgid "Photos"
24
  msgstr ""
25
 
26
- #: app/main/RTMedia.php:263
27
- msgid "Video"
28
  msgstr ""
29
 
30
- #: app/main/RTMedia.php:264
31
- msgid "Videos"
32
  msgstr ""
33
 
34
- #: app/main/RTMedia.php:272 app/main/RTMedia.php:273
35
- msgid "Music"
 
 
36
  msgstr ""
37
 
38
- #: app/main/RTMedia.php:360
39
- msgid "<strong>Private</strong> - Visible only to the user"
40
  msgstr ""
41
 
42
- #: app/main/RTMedia.php:361
43
- msgid "<strong>Friends</strong> - Visible to user's friends"
44
  msgstr ""
45
 
46
- #: app/main/RTMedia.php:362
47
- msgid "<strong>Logged in Users</strong> - Visible to registered users"
48
  msgstr ""
49
 
50
- #: app/main/RTMedia.php:363
51
- msgid "<strong>Public</strong> - Visible to the world"
52
  msgstr ""
53
 
54
- #: app/main/RTMedia.php:514 app/importers/BPMediaAlbumimporter.php:91
55
- msgid "Media"
56
  msgstr ""
57
 
58
- #: app/main/RTMedia.php:520 app/main/controllers/template/RTMediaNav.php:146
59
- msgid "All"
60
  msgstr ""
61
 
62
- #: app/main/RTMedia.php:529
63
- #: app/main/controllers/template/rt-template-functions.php:1057
64
- #: app/main/controllers/media/RTMediaAlbum.php:54
65
- msgid "Album"
66
  msgstr ""
67
 
68
- #: app/main/RTMedia.php:532 app/main/controllers/template/RTMediaNav.php:95
69
- #: app/main/controllers/template/RTMediaNav.php:167
70
- #: app/main/controllers/media/RTMediaAlbum.php:53
71
- #: app/main/controllers/media/RTMediaAlbum.php:65
72
- msgid "Albums"
73
  msgstr ""
74
 
75
- #: app/main/RTMedia.php:540
76
- #: app/main/controllers/template/rt-template-functions.php:1738
77
- #: app/main/controllers/template/rt-template-functions.php:1741
78
- msgid "Upload"
79
  msgstr ""
80
 
81
- #: app/main/RTMedia.php:544
82
- msgid "Wall Post"
83
  msgstr ""
84
 
85
- #: app/main/RTMedia.php:735
86
- msgid "Wall Posts"
87
  msgstr ""
88
 
89
- #: app/main/RTMedia.php:775
90
- msgid ": Can't Create Database table. Please check create table permission."
91
  msgstr ""
92
 
93
- #: app/main/RTMedia.php:809
94
- msgid "Loading media"
95
  msgstr ""
96
 
97
- #: app/main/RTMedia.php:810
98
- msgid "Please enter some content to post."
 
99
  msgstr ""
100
 
101
- #: app/main/RTMedia.php:811
102
- msgid "Empty Comment is not allowed."
 
103
  msgstr ""
104
 
105
- #: app/main/RTMedia.php:812
106
- msgid "Are you sure you want to delete this media?"
 
107
  msgstr ""
108
 
109
- #: app/main/RTMedia.php:813
110
- msgid "Are you sure you want to delete this comment?"
 
 
111
  msgstr ""
112
 
113
- #: app/main/RTMedia.php:814
114
- msgid "Are you sure you want to delete this Album?"
 
115
  msgstr ""
116
 
117
- #: app/main/RTMedia.php:815
118
- msgid "Drop files here"
 
119
  msgstr ""
120
 
121
- #: app/main/RTMedia.php:816
122
- msgid "album created successfully."
123
  msgstr ""
124
 
125
- #: app/main/RTMedia.php:817
126
- msgid "Something went wrong. Please try again."
127
  msgstr ""
128
 
129
- #: app/main/RTMedia.php:818
130
- msgid "Enter an album name."
131
  msgstr ""
132
 
133
- #: app/main/RTMedia.php:819
134
- msgid "Max file Size Limit : "
 
 
135
  msgstr ""
136
 
137
- #: app/main/RTMedia.php:820
138
- msgid "Allowed File Formats"
139
  msgstr ""
140
 
141
- #: app/main/RTMedia.php:821 templates/media/album-single-edit.php:58
142
- msgid "Select All Visible"
 
 
143
  msgstr ""
144
 
145
- #: app/main/RTMedia.php:822
146
- msgid "Unselect All Visible"
147
  msgstr ""
148
 
149
- #: app/main/RTMedia.php:823
150
- msgid "Please select some media."
151
  msgstr ""
152
 
153
- #: app/main/RTMedia.php:824
154
- msgid "Are you sure you want to delete the selected medias?"
155
  msgstr ""
156
 
157
- #: app/main/RTMedia.php:825
158
- msgid "Are you sure you want to move the selected medias?"
159
  msgstr ""
160
 
161
- #: app/main/RTMedia.php:826
162
- msgid "Waiting"
163
  msgstr ""
164
 
165
- #: app/main/RTMedia.php:827
166
- msgid "Uploaded"
167
  msgstr ""
168
 
169
- #: app/main/RTMedia.php:828
170
- msgid "Uploading"
171
  msgstr ""
172
 
173
- #: app/main/RTMedia.php:829
174
- msgid "Failed"
175
  msgstr ""
176
 
177
- #: app/main/RTMedia.php:830
178
- msgid "Close"
179
  msgstr ""
180
 
181
- #: app/main/RTMedia.php:831
182
- #: app/main/controllers/template/rt-template-functions.php:591
183
- #: app/main/controllers/template/rt-template-functions.php:612
184
- msgid "Edit"
 
 
185
  msgstr ""
186
 
187
- #: app/main/RTMedia.php:832
188
- #: app/main/controllers/template/rt-template-functions.php:1136
189
- #: app/main/controllers/template/rt-template-functions.php:1143
190
- #: templates/media/album-single-edit.php:60
191
- msgid "Delete"
192
  msgstr ""
193
 
194
- #: app/main/RTMedia.php:833 templates/media/media-single-edit.php:13
195
- msgid "Edit Media"
196
  msgstr ""
197
 
198
- #: app/main/RTMedia.php:834
199
- msgid "Remove from queue"
200
  msgstr ""
201
 
202
- #: app/main/RTMedia.php:835
203
- msgid "Add more files"
204
  msgstr ""
205
 
206
- #: app/main/RTMedia.php:836
207
- msgid "File not supported"
208
  msgstr ""
209
 
210
- #: app/main/RTMedia.php:837
211
- msgid "more"
212
  msgstr ""
213
 
214
- #: app/main/RTMedia.php:838
215
- msgid "less"
216
  msgstr ""
217
 
218
- #: app/main/RTMedia.php:839
219
- msgid "This media is uploaded. Are you sure you want to delete this media?"
220
  msgstr ""
221
 
222
- #: app/main/deprecated/RTMediaDeprecated.php:27
223
- #, php-format
224
- msgid "Deprecated %s. Please use %s."
225
  msgstr ""
226
 
227
- #: app/main/controllers/template/RTMediaTemplate.php:119
228
- msgid "Invalid attribute passed for rtmedia_gallery shortcode."
229
  msgstr ""
230
 
231
- #: app/main/controllers/template/RTMediaTemplate.php:222
232
- #: app/main/controllers/template/RTMediaTemplate.php:284
233
- #: app/main/controllers/template/RTMediaTemplate.php:357
234
- #: app/main/controllers/template/RTMediaTemplate.php:455
235
- msgid "Ooops !!! Invalid access. No nonce was found !!"
236
  msgstr ""
237
 
238
- #: app/main/controllers/template/RTMediaTemplate.php:227
239
- msgid "Media updated Sucessfully"
 
240
  msgstr ""
241
 
242
- #: app/main/controllers/template/RTMediaTemplate.php:233
243
- msgid "Error in updating Media"
244
  msgstr ""
245
 
246
- #: app/main/controllers/template/rt-template-functions.php:56
247
- msgid "All Photos"
248
  msgstr ""
249
 
250
- #: app/main/controllers/template/rt-template-functions.php:57
251
- msgid "All Videos"
252
  msgstr ""
253
 
254
- #: app/main/controllers/template/rt-template-functions.php:58
255
- msgid "All Music"
 
256
  msgstr ""
257
 
258
- #: app/main/controllers/template/rt-template-functions.php:60
259
- #: app/main/controllers/template/rt-template-functions.php:62
260
- msgid "All "
261
- msgstr ""
262
-
263
- #: app/main/controllers/template/rt-template-functions.php:567
264
- #: app/main/controllers/template/rt-template-functions.php:1325
265
- msgid "Options"
266
- msgstr ""
267
-
268
- #: app/main/controllers/template/rt-template-functions.php:657
269
- msgid "There are no comments on this media yet."
270
- msgstr ""
271
-
272
- #: app/main/controllers/template/rt-template-functions.php:689
273
- msgid "Delete Comment"
274
- msgstr ""
275
-
276
- #: app/main/controllers/template/rt-template-functions.php:891
277
- msgid "Video Thumbnail"
278
- msgstr ""
279
-
280
- #: app/main/controllers/template/rt-template-functions.php:934
281
- msgid "Video Thumbnail:"
282
- msgstr ""
283
-
284
- #: app/main/controllers/template/rt-template-functions.php:1011
285
- msgid "Image"
286
- msgstr ""
287
-
288
- #: app/main/controllers/template/rt-template-functions.php:1026
289
- msgid "Modify Image"
290
- msgstr ""
291
-
292
- #: app/main/controllers/template/rt-template-functions.php:1098
293
- msgid "Type Comment..."
294
  msgstr ""
295
 
296
- #: app/main/controllers/template/rt-template-functions.php:1101
297
- #: templates/media/media-single.php:71 templates/media/media-single.php:110
298
- msgid "Comment"
299
  msgstr ""
300
 
301
- #: app/main/controllers/template/rt-template-functions.php:1136
302
- #: app/main/controllers/template/rt-template-functions.php:1143
303
- msgid "Delete Media"
304
  msgstr ""
305
 
306
- #: app/main/controllers/template/rt-template-functions.php:1168
307
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:180
308
- #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:103
309
- msgid "You are not allowed to upload/attach media."
310
  msgstr ""
311
 
312
- #: app/main/controllers/template/rt-template-functions.php:1269
313
- msgid "Profile Albums"
314
  msgstr ""
315
 
316
- #: app/main/controllers/template/rt-template-functions.php:1271
317
- #: app/main/controllers/template/rt-template-functions.php:1307
318
- msgid "Group Albums"
319
  msgstr ""
320
 
321
- #: app/main/controllers/template/rt-template-functions.php:1380
322
- #: app/main/controllers/template/rt-template-functions.php:1393
323
- msgid "Create New Album"
324
  msgstr ""
325
 
326
- #: app/main/controllers/template/rt-template-functions.php:1380
327
- msgid "Add Album"
328
  msgstr ""
329
 
330
- #: app/main/controllers/template/rt-template-functions.php:1395
331
- msgid "Album Title : "
332
  msgstr ""
333
 
334
- #: app/main/controllers/template/rt-template-functions.php:1399
335
- #: app/main/controllers/media/RTMediaAlbum.php:56
336
- msgid "Create Album"
337
  msgstr ""
338
 
339
- #: app/main/controllers/template/rt-template-functions.php:1428
340
- #: app/main/controllers/template/rt-template-functions.php:1433
341
- #: app/main/controllers/template/rt-template-functions.php:1484
342
- msgid "Merge Album"
343
  msgstr ""
344
 
345
- #: app/main/controllers/template/rt-template-functions.php:1430
346
- msgid "Select Album to merge with : "
347
  msgstr ""
348
 
349
- #: app/main/controllers/template/rt-template-functions.php:1473
350
- #: app/main/controllers/media/RTMediaAlbum.php:57
351
- msgid "Edit Album"
352
  msgstr ""
353
 
354
- #: app/main/controllers/template/rt-template-functions.php:1476
355
- msgid "Delete Album"
 
 
 
 
356
  msgstr ""
357
 
358
- #: app/main/controllers/template/rt-template-functions.php:1509
359
- msgid "Merge"
 
360
  msgstr ""
361
 
362
- #: app/main/controllers/template/rt-template-functions.php:1558
363
- #: app/main/controllers/upload/RTMediaUploadView.php:65
364
- msgid "Privacy : "
365
  msgstr ""
366
 
367
- #: app/main/controllers/template/rt-template-functions.php:1728
368
- msgid "people like this"
 
 
 
 
369
  msgstr ""
370
 
371
- #: app/main/controllers/template/rt-template-functions.php:1738
372
- #: app/main/controllers/template/rt-template-functions.php:1741
373
- msgid "Upload Media"
 
 
 
374
  msgstr ""
375
 
376
- #: app/main/controllers/template/rt-template-functions.php:1784
377
- msgid "Go PRO!"
378
  msgstr ""
379
 
380
- #: app/main/controllers/template/rt-template-functions.php:1805
381
- msgid "Reasons to buy rtMedia-PRO"
382
  msgstr ""
383
 
384
- #: app/main/controllers/template/rt-template-functions.php:1810
385
- msgid "RSS Feed/Podcasting Support"
386
  msgstr ""
387
 
388
- #: app/main/controllers/template/rt-template-functions.php:1811
389
  msgid ""
390
- "You can consume rtMedia uploads from iTunes as well as any feed-reader/"
391
- "podcasting software."
392
- msgstr ""
393
-
394
- #: app/main/controllers/template/rt-template-functions.php:1817
395
- msgid "WordPress Comment Attachment"
396
  msgstr ""
397
 
398
- #: app/main/controllers/template/rt-template-functions.php:1818
399
- msgid "You can attach files to WordPress comments."
 
 
400
  msgstr ""
401
 
402
- #: app/main/controllers/template/rt-template-functions.php:1824
403
- msgid "bbPress Attachment"
 
404
  msgstr ""
405
 
406
- #: app/main/controllers/template/rt-template-functions.php:1825
407
- msgid "You can attach files to bbPress topic and reply."
408
  msgstr ""
409
 
410
- #: app/main/controllers/template/rt-template-functions.php:1831
411
- msgid "Document Support"
412
  msgstr ""
413
 
414
- #: app/main/controllers/template/rt-template-functions.php:1832
415
  msgid ""
416
- "You can add, view and download documents like txt, doc, pdf, also add and "
417
- "upload other file types like zip, tar and tar.gz etc."
418
  msgstr ""
419
 
420
- #: app/main/controllers/template/rt-template-functions.php:1838
421
- msgid "CubePoints & MyCRED Integration"
422
  msgstr ""
423
 
424
- #: app/main/controllers/template/rt-template-functions.php:1839
425
- msgid ""
426
- "Integrating CubePoints/myCRED with rtMedia, you can reward users with "
427
- "virtual points on rtMedia activities."
428
  msgstr ""
429
 
430
- #: app/main/controllers/template/rt-template-functions.php:1845
431
- msgid "Album Privacy"
432
  msgstr ""
433
 
434
- #: app/main/controllers/template/rt-template-functions.php:1846
435
- msgid ""
436
- "This will allow you to set album privacy while creating albums or change "
437
- "album privacy with editing albums too."
438
  msgstr ""
439
 
440
- #: app/main/controllers/template/rt-template-functions.php:1852
441
- msgid "Audio Playlist"
442
  msgstr ""
443
 
444
- #: app/main/controllers/template/rt-template-functions.php:1853
445
  msgid ""
446
- "With this feature you can create your audio playlists and listen to your "
447
- "favorite music at will."
 
448
  msgstr ""
449
 
450
- #: app/main/controllers/template/rt-template-functions.php:1859
451
- msgid "Report Button & Moderation Tools"
452
  msgstr ""
453
 
454
- #: app/main/controllers/template/rt-template-functions.php:1860
455
  msgid ""
456
- "Users can report media if they find it offensive. Set number of reports to "
457
- "automatically take down media."
458
  msgstr ""
459
 
460
- #: app/main/controllers/template/rt-template-functions.php:1866
461
- msgid "Download Button For Media"
462
  msgstr ""
463
 
464
- #: app/main/controllers/template/rt-template-functions.php:1867
465
- msgid ""
466
- "Users can download photos, videos and music. Admin has option to allow "
467
- "download the media."
468
  msgstr ""
469
 
470
- #: app/main/controllers/template/rt-template-functions.php:1873
471
- msgid "Sidebar widgets"
472
  msgstr ""
473
 
474
- #: app/main/controllers/template/rt-template-functions.php:1874
475
  msgid ""
476
- "These will let you display a gallery or an uploader in a sidebar. Several of "
477
- "them can be used in a single sidebar."
478
- msgstr ""
479
-
480
- #: app/main/controllers/template/rt-template-functions.php:1880
481
- msgid "Post-editor button"
482
  msgstr ""
483
 
484
- #: app/main/controllers/template/rt-template-functions.php:1881
485
  msgid ""
486
- "With this button, a UI appears to quickly generate shortcodes for special "
487
- "pages like \"Editorial Picks\"."
488
  msgstr ""
489
 
490
- #: app/main/controllers/template/rt-template-functions.php:1887
491
- msgid "Star-Rating option"
492
  msgstr ""
493
 
494
- #: app/main/controllers/template/rt-template-functions.php:1888
495
  msgid ""
496
- "Users can give up to five stars to rate media. This data can be used for "
497
- "\"Most Rated Media\" in sidebars."
498
- msgstr ""
499
-
500
- #: app/main/controllers/template/rt-template-functions.php:1894
501
- msgid "Global Albums"
502
  msgstr ""
503
 
504
- #: app/main/controllers/template/rt-template-functions.php:1895
505
  msgid ""
506
- "Multiple global albums can be created beforehand. One of these can be chosen "
507
- "as the default album."
508
  msgstr ""
509
 
510
- #: app/main/controllers/template/rt-template-functions.php:1901
511
- msgid "Premium one-to-one support"
512
  msgstr ""
513
 
514
- #: app/main/controllers/template/rt-template-functions.php:1902
515
- msgid ""
516
- "Without leaving your WordPress dashboard, you can contact us for help using "
517
- "a support form."
518
  msgstr ""
519
 
520
- #: app/main/controllers/template/rt-template-functions.php:1908
521
- msgid "Premium & Open-Source"
522
  msgstr ""
523
 
524
- #: app/main/controllers/template/rt-template-functions.php:1909
525
- msgid ""
526
- "Developers get full control over rtMedia-PRO's source. They'll get access to "
527
  msgstr ""
528
 
529
- #: app/main/controllers/template/rt-template-functions.php:1915
530
- msgid "Upgrade to rtMedia PRO Now "
531
  msgstr ""
532
 
533
- #: app/main/controllers/template/rt-template-functions.php:1926
534
- msgid "You can consider rtMedia Team for following :"
535
  msgstr ""
536
 
537
- #: app/main/controllers/template/rt-template-functions.php:1928
538
- msgid "rtMedia Customization ( in Upgrade Safe manner )"
539
  msgstr ""
540
 
541
- #: app/main/controllers/template/rt-template-functions.php:1929
542
- msgid "Wordpress/BuddyPress Theme Design and Development"
543
  msgstr ""
544
 
545
- #: app/main/controllers/template/rt-template-functions.php:1930
546
- msgid "Wordpress/BuddyPress Plugin Development"
547
  msgstr ""
548
 
549
- #: app/main/controllers/template/rt-template-functions.php:1934
550
- msgid "Contact Us"
551
  msgstr ""
552
 
553
- #: app/main/controllers/template/rt-template-functions.php:1952
554
- msgid "Empowering your community with "
555
  msgstr ""
556
 
557
- #: app/main/controllers/template/rt-template-functions.php:1953
558
- msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
559
  msgstr ""
560
 
561
- #: app/main/controllers/template/rt-template-functions.php:1967
562
- msgid "Close (Esc)"
 
 
563
  msgstr ""
564
 
565
- #: app/main/controllers/template/rt-template-functions.php:1982
566
- msgid "Public"
 
 
567
  msgstr ""
568
 
569
- #: app/main/controllers/template/rt-template-functions.php:1986
570
- msgid "All members"
571
  msgstr ""
572
 
573
- #: app/main/controllers/template/rt-template-functions.php:1990
574
- msgid "Your friends"
 
 
575
  msgstr ""
576
 
577
- #: app/main/controllers/template/rt-template-functions.php:1994
578
- msgid "Only you"
579
  msgstr ""
580
 
581
- #: app/main/controllers/template/rt-template-functions.php:1998
582
- msgid "Blocked Temperorily"
583
  msgstr ""
584
 
585
- #: app/main/controllers/template/rt-template-functions.php:2032
586
- #, php-format
587
- msgid "%s ago "
588
  msgstr ""
589
 
590
- #: app/main/controllers/api/RTMediaJsonApi.php:166
591
- msgid "username/password empty"
592
  msgstr ""
593
 
594
- #: app/main/controllers/api/RTMediaJsonApi.php:169
595
- msgid "incorrect username"
596
  msgstr ""
597
 
598
- #: app/main/controllers/api/RTMediaJsonApi.php:172
599
- msgid "incorrect password"
600
  msgstr ""
601
 
602
- #: app/main/controllers/api/RTMediaJsonApi.php:175
603
- msgid "login success"
604
  msgstr ""
605
 
606
- #: app/main/controllers/api/RTMediaJsonApi.php:221
607
- msgid "fields empty"
 
608
  msgstr ""
609
 
610
- #: app/main/controllers/api/RTMediaJsonApi.php:224
611
- msgid "invalid email"
612
  msgstr ""
613
 
614
- #: app/main/controllers/api/RTMediaJsonApi.php:227
615
- msgid "password do not match"
616
  msgstr ""
617
 
618
- #: app/main/controllers/api/RTMediaJsonApi.php:230
619
- msgid "username already registered"
620
  msgstr ""
621
 
622
- #: app/main/controllers/api/RTMediaJsonApi.php:233
623
- msgid "email already exists"
624
  msgstr ""
625
 
626
- #: app/main/controllers/api/RTMediaJsonApi.php:236
627
- msgid "new user created"
628
  msgstr ""
629
 
630
- #: app/main/controllers/api/RTMediaJsonApi.php:297
631
- msgid "email empty"
632
  msgstr ""
633
 
634
- #: app/main/controllers/api/RTMediaJsonApi.php:300
635
- msgid "username/email not registered"
636
  msgstr ""
637
 
638
- #: app/main/controllers/api/RTMediaJsonApi.php:303
639
- msgid "reset link sent"
640
  msgstr ""
641
 
642
- #: app/main/controllers/api/RTMediaJsonApi.php:335
643
  msgid ""
644
- "Someone has asked to reset the password for the following site and username."
 
 
645
  msgstr ""
646
 
647
- #: app/main/controllers/api/RTMediaJsonApi.php:337
648
- #, php-format
649
- msgid "Username: %s"
650
  msgstr ""
651
 
652
- #: app/main/controllers/api/RTMediaJsonApi.php:338
653
  msgid ""
654
- "To reset your password visit the following address, otherwise just ignore "
655
- "this email and nothing will happen."
656
  msgstr ""
657
 
658
- #: app/main/controllers/api/RTMediaJsonApi.php:341
659
  #, php-format
660
- msgid "[%s] Password Reset"
661
- msgstr ""
662
-
663
- #: app/main/controllers/api/RTMediaJsonApi.php:356
664
- msgid "bp activities"
665
- msgstr ""
666
-
667
- #: app/main/controllers/api/RTMediaJsonApi.php:359
668
- msgid "user activities"
669
- msgstr ""
670
-
671
- #: app/main/controllers/api/RTMediaJsonApi.php:389
672
- msgid "comment content missing"
673
- msgstr ""
674
-
675
- #: app/main/controllers/api/RTMediaJsonApi.php:392
676
- msgid "comment posted"
677
- msgstr ""
678
-
679
- #: app/main/controllers/api/RTMediaJsonApi.php:439
680
- msgid "unliked media"
681
- msgstr ""
682
-
683
- #: app/main/controllers/api/RTMediaJsonApi.php:442
684
- msgid "liked media"
685
  msgstr ""
686
 
687
- #: app/main/controllers/api/RTMediaJsonApi.php:526
688
- msgid "no comments"
689
  msgstr ""
690
 
691
- #: app/main/controllers/api/RTMediaJsonApi.php:529
692
- msgid "media comments"
693
  msgstr ""
694
 
695
- #: app/main/controllers/api/RTMediaJsonApi.php:532
696
- msgid "my comments"
697
  msgstr ""
698
 
699
- #: app/main/controllers/api/RTMediaJsonApi.php:582
700
- msgid "no likes"
 
 
701
  msgstr ""
702
 
703
- #: app/main/controllers/api/RTMediaJsonApi.php:585
704
- msgid "media likes"
 
705
  msgstr ""
706
 
707
- #: app/main/controllers/api/RTMediaJsonApi.php:627
708
- msgid "invalid comment/media id"
 
 
709
  msgstr ""
710
 
711
- #: app/main/controllers/api/RTMediaJsonApi.php:630
712
- msgid "no comment id"
713
  msgstr ""
714
-
715
- #: app/main/controllers/api/RTMediaJsonApi.php:633
716
- msgid "comment deleted"
 
 
717
  msgstr ""
718
 
719
- #: app/main/controllers/api/RTMediaJsonApi.php:676
720
- msgid "no profile found"
721
  msgstr ""
722
 
723
- #: app/main/controllers/api/RTMediaJsonApi.php:679
724
- msgid "profile fields"
725
  msgstr ""
726
 
727
- #: app/main/controllers/api/RTMediaJsonApi.php:773
728
- msgid "follow user id missing"
729
  msgstr ""
730
 
731
- #: app/main/controllers/api/RTMediaJsonApi.php:776
732
- msgid "started following"
733
  msgstr ""
734
 
735
- #: app/main/controllers/api/RTMediaJsonApi.php:779
736
- msgid "already following"
 
737
  msgstr ""
738
 
739
- #: app/main/controllers/api/RTMediaJsonApi.php:811
740
- msgid "unfollow id missing"
741
  msgstr ""
742
 
743
- #: app/main/controllers/api/RTMediaJsonApi.php:814
744
- msgid "stopped following"
745
  msgstr ""
746
 
747
- #: app/main/controllers/api/RTMediaJsonApi.php:817
748
- msgid "not following"
749
  msgstr ""
750
 
751
- #: app/main/controllers/api/RTMediaJsonApi.php:849
752
- msgid "name/location empty"
753
  msgstr ""
754
 
755
- #: app/main/controllers/api/RTMediaJsonApi.php:852
756
- msgid "profile updated"
757
  msgstr ""
758
 
759
- #: app/main/controllers/api/RTMediaJsonApi.php:878
760
- #: app/main/controllers/api/RTMediaJsonApi.php:905
761
- msgid "no file"
762
  msgstr ""
763
 
764
- #: app/main/controllers/api/RTMediaJsonApi.php:881
765
- #: app/main/controllers/api/RTMediaJsonApi.php:917
766
- msgid "upload failed, check size and file type"
767
  msgstr ""
768
 
769
- #: app/main/controllers/api/RTMediaJsonApi.php:884
770
- msgid "avatar updated"
771
  msgstr ""
772
 
773
- #: app/main/controllers/api/RTMediaJsonApi.php:908
774
- msgid "invalid file string"
775
  msgstr ""
776
 
777
- #: app/main/controllers/api/RTMediaJsonApi.php:911
778
- msgid "image type missing"
779
  msgstr ""
780
 
781
- #: app/main/controllers/api/RTMediaJsonApi.php:914
782
- msgid "no title"
783
  msgstr ""
784
 
785
- #: app/main/controllers/api/RTMediaJsonApi.php:920
786
- msgid "media updated"
787
  msgstr ""
788
 
789
- #: app/main/controllers/api/RTMediaJsonApi.php:1042
790
- msgid "media list"
 
 
 
791
  msgstr ""
792
 
793
- #: app/main/controllers/api/RTMediaJsonApi.php:1045
794
- msgid "no media found for requested media type"
795
  msgstr ""
796
 
797
- #: app/main/controllers/api/RTMediaJsonApi.php:1048
798
- msgid "media_type not allowed"
799
  msgstr ""
800
 
801
- #: app/main/controllers/api/RTMediaJsonApi.php:1133
802
- msgid "single media"
803
  msgstr ""
804
 
805
- #: app/main/controllers/upload/RTMediaUploadView.php:50
806
- #: app/main/controllers/upload/RTMediaUploadView.php:53
807
- msgid "Album "
808
  msgstr ""
809
 
810
- #: app/main/controllers/upload/RTMediaUploadView.php:71
811
- #: app/main/controllers/upload/RTMediaUploadView.php:86
812
- msgid "File Upload"
813
  msgstr ""
814
 
815
- #: app/main/controllers/upload/RTMediaUploadView.php:76
816
- msgid "Select your files"
817
  msgstr ""
818
 
819
- #: app/main/controllers/upload/RTMediaUploadView.php:77
820
- msgid "or"
821
  msgstr ""
822
 
823
- #: app/main/controllers/upload/RTMediaUploadView.php:77
824
- msgid "Drop your files here"
825
  msgstr ""
826
 
827
- #: app/main/controllers/upload/RTMediaUploadView.php:79
828
- msgid "Start upload"
 
 
 
829
  msgstr ""
830
 
831
- #: app/main/controllers/upload/RTMediaUploadView.php:86
832
- msgid "Attach Files"
833
  msgstr ""
834
 
835
- #: app/main/controllers/upload/RTMediaUploadView.php:86
836
- msgid "Upload will start only after you enter content and click Post Update."
837
  msgstr ""
838
 
839
- #: app/main/controllers/upload/RTMediaUploadView.php:89
840
- msgid "Insert from URL"
 
 
 
 
 
841
  msgstr ""
842
 
843
- #: app/main/controllers/upload/RTMediaUploadEndpoint.php:97
844
- #, php-format
845
- msgid "%s added %d %s"
 
 
846
  msgstr ""
847
 
848
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:54
849
- msgid "Error Uploading File"
 
850
  msgstr ""
851
 
852
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:201
853
- msgid "MP4 file you have uploaded is corrupt."
 
854
  msgstr ""
855
 
856
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:208
857
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:213
858
- msgid ""
859
- "The MP4 file you have uploaded is using an unsupported video codec. "
860
- "Supported video codec is H.264."
861
  msgstr ""
862
 
863
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:218
864
- msgid "The MP4 file you have uploaded is not a video file."
865
  msgstr ""
866
 
867
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:230
868
- msgid "MP3 file you have uploaded is currupt."
869
  msgstr ""
870
 
871
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:237
872
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:242
873
- msgid ""
874
- "The MP3 file you have uploaded is using an unsupported audio format. "
875
- "Supported audio format is MP3."
876
  msgstr ""
877
 
878
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:247
879
- msgid "The MP3 file you have uploaded is not an audio file."
880
  msgstr ""
881
 
882
- #: app/main/controllers/upload/processors/RTMediaUploadFile.php:255
883
- msgid ""
884
- "Media File you have tried to upload is not supported. Supported media files "
885
- "are .jpg, .png, .gif, .mp3, .mov and .mp4."
886
  msgstr ""
887
 
888
- #: app/main/controllers/group/RTMediaGroupExtension.php:30
889
- #: app/main/controllers/group/RTMediaGroupExtension.php:92
890
- msgid "Album Creation Control"
891
  msgstr ""
892
 
893
- #: app/main/controllers/group/RTMediaGroupExtension.php:31
894
- #: app/main/controllers/group/RTMediaGroupExtension.php:93
895
- msgid "Who can create Albums in this group?"
896
  msgstr ""
897
 
898
- #: app/main/controllers/group/RTMediaGroupExtension.php:35
899
- #: app/main/controllers/group/RTMediaGroupExtension.php:97
900
- msgid "All Group Members"
901
  msgstr ""
902
 
903
- #: app/main/controllers/group/RTMediaGroupExtension.php:39
904
- #: app/main/controllers/group/RTMediaGroupExtension.php:101
905
- msgid "Group Admins and Mods only"
906
  msgstr ""
907
 
908
- #: app/main/controllers/group/RTMediaGroupExtension.php:43
909
- #: app/main/controllers/group/RTMediaGroupExtension.php:105
910
- msgid "Group Admin only"
911
  msgstr ""
912
 
913
- #: app/main/controllers/group/RTMediaGroupExtension.php:113
914
- #: templates/media/album-single-edit.php:46
915
- msgid "Save Changes"
916
  msgstr ""
917
 
918
- #: app/main/controllers/group/RTMediaGroupExtension.php:142
919
- msgid "There was an error saving, please try again"
920
  msgstr ""
921
 
922
- #: app/main/controllers/group/RTMediaGroupExtension.php:144
923
- msgid "Settings saved successfully"
924
  msgstr ""
925
 
926
- #: app/main/controllers/group/RTMediaGroupExtension.php:164
927
- msgid ""
928
- "You could display a small snippet of information from your group extension "
929
- "here. It will show on the group\n"
930
- "\t home screen."
931
  msgstr ""
932
 
933
- #: app/main/controllers/privacy/RTMediaPrivacy.php:251
934
- msgid "Default Privacy"
935
  msgstr ""
936
 
937
- #: app/main/controllers/privacy/RTMediaPrivacy.php:268
938
- #: app/admin/RTMediaAdmin.php:987
939
- msgid "Privacy"
940
  msgstr ""
941
 
942
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:154
943
- msgid "Media Files"
944
  msgstr ""
945
 
946
- #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:91
947
- msgid "The web browser on your device cannot be used to upload files."
 
948
  msgstr ""
949
 
950
- #: app/main/controllers/shortcodes/RTMediaGalleryShortcode.php:168
951
- msgid "You do not have sufficient privileges to view this gallery"
952
  msgstr ""
953
 
954
- #: app/main/controllers/media/RTMediaAlbum.php:55
955
- msgid "Create"
956
  msgstr ""
957
 
958
- #: app/main/controllers/media/RTMediaAlbum.php:58
959
- msgid "New Album"
960
  msgstr ""
961
 
962
- #: app/main/controllers/media/RTMediaAlbum.php:59
963
- msgid "All Albums"
964
  msgstr ""
965
 
966
- #: app/main/controllers/media/RTMediaAlbum.php:60
967
- msgid "View Album"
968
  msgstr ""
969
 
970
- #: app/main/controllers/media/RTMediaAlbum.php:61
971
- msgid "Search Albums"
972
  msgstr ""
973
 
974
- #: app/main/controllers/media/RTMediaAlbum.php:62
975
- msgid "No album found"
976
  msgstr ""
977
 
978
- #: app/main/controllers/media/RTMediaAlbum.php:63
979
- msgid "No album found in Trash"
980
  msgstr ""
981
 
982
- #: app/main/controllers/media/RTMediaAlbum.php:64
983
- msgid "Parent"
984
  msgstr ""
985
 
986
- #: app/main/controllers/media/RTMediaAlbum.php:151
987
- msgid "Untitled Album"
988
  msgstr ""
989
 
990
- #: app/main/controllers/media/RTMediaFeatured.php:25
991
- msgid "Set as Featured"
992
  msgstr ""
993
 
994
- #: app/main/controllers/media/RTMediaFeatured.php:27
995
- msgid "Unset Featured"
996
  msgstr ""
997
 
998
- #: app/main/controllers/media/RTMediaLike.php:17
999
- msgid "Like"
1000
  msgstr ""
1001
 
1002
- #: app/main/controllers/media/RTMediaLike.php:18
1003
- #: app/admin/RTMediaAdmin.php:286
1004
- msgid "Likes"
1005
  msgstr ""
1006
 
1007
- #: app/main/controllers/media/RTMediaLike.php:19
1008
- msgid "Unlike"
1009
  msgstr ""
1010
 
1011
- #: app/main/controllers/media/RTMediaMedia.php:401
1012
- msgid "Error creating attachment for the media file, please try again"
 
1013
  msgstr ""
1014
 
1015
- #: app/importers/RTMediaMediaSizeImporter.php:24
1016
- msgid "Media Size Import"
1017
  msgstr ""
1018
 
1019
- #: app/importers/RTMediaMediaSizeImporter.php:52
1020
- #: app/importers/RTMediaMigration.php:60 app/admin/RTMediaAdmin.php:1415
1021
- msgid "Hide"
1022
  msgstr ""
1023
 
1024
- #: app/importers/RTMediaMigration.php:60
1025
- msgid "Please Migrate your Database"
 
 
1026
  msgstr ""
1027
 
1028
- #: app/importers/RTMediaMigration.php:60
1029
- msgid "Click Here"
 
 
 
 
1030
  msgstr ""
1031
 
1032
- #: app/importers/RTMediaMigration.php:78 app/helper/RTMediaSupport.php:53
1033
- #: app/helper/RTMediaSupport.php:54
1034
- msgid "Migration"
1035
  msgstr ""
1036
 
1037
- #: app/importers/RTMediaMigration.php:362
1038
  msgid ""
1039
- "Please Backup your <strong>DATABASE</strong> and <strong>UPLOAD</strong> "
1040
- "folder before Migration."
 
1041
  msgstr ""
1042
 
1043
- #: app/importers/RTMediaMigration.php:368
1044
- msgid "rtMedia Migration"
1045
  msgstr ""
1046
 
1047
- #: app/importers/RTMediaMigration.php:369
1048
- msgid "It will migrate following things"
 
 
1049
  msgstr ""
1050
 
1051
- #: app/importers/RTMediaMigration.php:437
1052
- msgid "Error During Migration, Please Refresh Page then try again"
1053
  msgstr ""
1054
 
1055
- #: app/importers/RTMediaMigration.php:1002
1056
- msgid " day"
 
 
1057
  msgstr ""
1058
 
1059
- #: app/importers/RTMediaMigration.php:1006
1060
- msgid " hour"
1061
  msgstr ""
1062
 
1063
- #: app/importers/RTMediaMigration.php:1010
1064
- msgid " minute"
1065
  msgstr ""
1066
 
1067
- #: app/importers/RTMediaMigration.php:1014
1068
- msgid " second"
1069
  msgstr ""
1070
 
1071
- #: app/importers/RTMediaMigration.php:1020
1072
- msgid "No time remaining."
 
 
 
 
1073
  msgstr ""
1074
 
1075
  #: app/importers/BPMediaAlbumimporter.php:72
@@ -1104,6 +1062,10 @@ msgstr ""
1104
  msgid "Users"
1105
  msgstr ""
1106
 
 
 
 
 
1107
  #: app/importers/BPMediaAlbumimporter.php:111
1108
  msgid "Comments"
1109
  msgstr ""
@@ -1176,1213 +1138,1283 @@ msgid ""
1176
  "with BuddyPress Media."
1177
  msgstr ""
1178
 
1179
- #: app/importers/BPMediaAlbumimporter.php:177 app/helper/RTMediaAddon.php:121
1180
- #: app/helper/RTMediaAddon.php:131
1181
- msgid "Important"
 
1182
  msgstr ""
1183
 
1184
- #: app/importers/BPMediaAlbumimporter.php:177 app/helper/RTMediaAddon.php:121
1185
- #: app/helper/RTMediaAddon.php:131
1186
- msgid ""
1187
- "You need to have ImageMagick installed on your server for this addon to work."
1188
  msgstr ""
1189
 
1190
- #: app/importers/BPMediaAlbumimporter.php:181 app/helper/RTMediaAddon.php:220
1191
- msgid "Buy Now"
1192
  msgstr ""
1193
 
1194
- #: app/importers/BPMediaAlbumimporter.php:182 app/helper/RTMediaAddon.php:221
1195
- msgid "Live Demo"
1196
  msgstr ""
1197
 
1198
- #: app/importers/BPMediaAlbumimporter.php:187
 
 
 
 
1199
  msgid ""
1200
- "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you "
1201
- "want an importer for?"
1202
  msgstr ""
1203
 
1204
- #: app/importers/BPMediaAlbumimporter.php:188
1205
- #, php-format
1206
- msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
1207
  msgstr ""
1208
 
1209
- #: app/admin/RTMediaFormHandler.php:57 app/admin/RTMediaFormHandler.php:88
1210
- #: app/admin/RTMediaFormHandler.php:157 app/admin/RTMediaFormHandler.php:182
1211
- msgid "Please provide \"value\" in the argument."
1212
  msgstr ""
1213
 
1214
- #: app/admin/RTMediaFormHandler.php:121
1215
- msgid "Need to specify atleast to radios else use a checkbox instead"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1216
  msgstr ""
1217
 
1218
- #: app/admin/RTMediaFormHandler.php:209
1219
- msgid "Allow user to comment on uploaded media"
1220
  msgstr ""
1221
 
1222
- #: app/admin/RTMediaFormHandler.php:214
1223
- msgid ""
1224
- "This will display comment form and comment listing on single media pages as "
1225
- "well as inside lightbox (if lightbox is enabled)."
1226
  msgstr ""
1227
 
1228
- #: app/admin/RTMediaFormHandler.php:219
1229
- msgid "Use lightbox to display media"
1230
  msgstr ""
1231
 
1232
- #: app/admin/RTMediaFormHandler.php:224
1233
- msgid "View single media in facebook style lightbox."
1234
  msgstr ""
1235
 
1236
- #: app/admin/RTMediaFormHandler.php:229
1237
- msgid "Number of media per page"
1238
  msgstr ""
1239
 
1240
- #: app/admin/RTMediaFormHandler.php:235
1241
- msgid "Number of media you want to show per page on front end."
1242
  msgstr ""
1243
 
1244
- #: app/admin/RTMediaFormHandler.php:294
1245
- msgid "Allow usage data tracking"
1246
  msgstr ""
1247
 
1248
- #: app/admin/RTMediaFormHandler.php:299
1249
- msgid ""
1250
- "You can help rtMedia team learn what themes and plugins you are using to "
1251
- "make rtMedia better compatible with your sites. No private information about "
1252
- "your setup will be sent during tracking."
1253
  msgstr ""
1254
 
1255
- #: app/admin/RTMediaFormHandler.php:303
1256
- msgid "Admin bar menu intergation"
1257
  msgstr ""
1258
 
1259
- #: app/admin/RTMediaFormHandler.php:308
1260
- msgid ""
1261
- "Add rtMedia menu to WordPress admin bar for easy access to settings and "
1262
- "moderation page (if enabled)."
1263
  msgstr ""
1264
 
1265
- #: app/admin/RTMediaFormHandler.php:313
1266
- msgid "Add a link to rtMedia in footer"
1267
  msgstr ""
1268
 
1269
- #: app/admin/RTMediaFormHandler.php:318
1270
- msgid "Help us to promote rtMedia."
1271
  msgstr ""
1272
 
1273
- #: app/admin/RTMediaFormHandler.php:323
1274
- msgid "Also add my affiliate-id to rtMedia footer link"
1275
  msgstr ""
1276
 
1277
- #: app/admin/RTMediaFormHandler.php:328
1278
- msgid ""
1279
- "Add your affiliate-id along with footer link and get benefited from our "
1280
- "affiliation program."
1281
  msgstr ""
1282
 
1283
- #: app/admin/RTMediaFormHandler.php:331
1284
- msgid ""
1285
- "You can signup for rtMedia affiliate program from <a href=\"https://rtcamp."
1286
- "com/affiliates\">here</a>"
1287
  msgstr ""
1288
 
1289
- #: app/admin/RTMediaFormHandler.php:334
1290
- msgid "Enable JSON API"
1291
  msgstr ""
1292
 
1293
- #: app/admin/RTMediaFormHandler.php:339
1294
- msgid ""
1295
- "This will allow handling API requests for rtMedia sent through any mobile "
1296
- "app."
1297
  msgstr ""
1298
 
1299
- #: app/admin/RTMediaFormHandler.php:342
1300
- msgid ""
1301
- "You can refer API document from <a href=\"https://rtcamp.com/rtmedia/docs/"
1302
- "developer/json-api/\">here</a>"
1303
  msgstr ""
1304
 
1305
- #: app/admin/RTMediaFormHandler.php:459 app/helper/RTMediaSettings.php:232
1306
- msgid "Media Type"
1307
  msgstr ""
1308
 
1309
- #: app/admin/RTMediaFormHandler.php:460
1310
- msgid "Allows you to upload a particular media type on your post."
1311
  msgstr ""
1312
 
1313
- #: app/admin/RTMediaFormHandler.php:460
1314
- msgid "Allow Upload"
1315
  msgstr ""
1316
 
1317
- #: app/admin/RTMediaFormHandler.php:461
1318
- msgid "Put a specific media as a featured content on the post."
1319
  msgstr ""
1320
 
1321
- #: app/admin/RTMediaFormHandler.php:461
1322
- msgid "Set Featured"
1323
  msgstr ""
1324
 
1325
- #: app/admin/RTMediaFormHandler.php:499
1326
- msgid "File Extensions"
 
 
1327
  msgstr ""
1328
 
1329
- #: app/admin/RTMediaFormHandler.php:546
1330
- msgid "Category"
 
 
 
1331
  msgstr ""
1332
 
1333
- #: app/admin/RTMediaFormHandler.php:547
1334
- msgid "Entity"
1335
  msgstr ""
1336
 
1337
- #: app/admin/RTMediaFormHandler.php:548
1338
- msgid "Width"
1339
  msgstr ""
1340
 
1341
- #: app/admin/RTMediaFormHandler.php:548
1342
- msgid "Height"
1343
  msgstr ""
1344
 
1345
- #: app/admin/RTMediaFormHandler.php:548
1346
- msgid "Crop"
1347
  msgstr ""
1348
 
1349
- #: app/admin/RTMediaFormHandler.php:585
1350
- msgid "Number of thumbnails to generate on video upload"
1351
  msgstr ""
1352
 
1353
- #: app/admin/RTMediaFormHandler.php:591
1354
- msgid ""
1355
- " If you choose more than 1 thumbnail, your users will be able to change "
1356
- "thumbnail by going to video \"edit\" section."
1357
  msgstr ""
1358
 
1359
- #: app/admin/RTMediaFormHandler.php:629
1360
- msgid ""
1361
- "If you want to add some custom CSS code to the plugin and don't want to "
1362
- "modify any files, then it's a good place to enter your code at this field."
1363
  msgstr ""
1364
 
1365
- #: app/admin/RTMediaFormHandler.php:651
1366
- msgid "rtMedia default styles"
1367
  msgstr ""
1368
 
1369
- #: app/admin/RTMediaFormHandler.php:657
1370
- msgid ""
1371
- "Load default rtMedia styles. You need to write your own style for rtMedia if "
1372
- "you disable it."
1373
  msgstr ""
1374
 
1375
- #: app/admin/RTMediaFormHandler.php:661
1376
- msgid "Paste your CSS code"
1377
  msgstr ""
1378
 
1379
- #: app/admin/RTMediaFormHandler.php:667
1380
- msgid "Custom rtMedia CSS container"
1381
  msgstr ""
1382
 
1383
- #: app/admin/RTMediaFormHandler.php:681
1384
- msgid "Enable privacy"
1385
  msgstr ""
1386
 
1387
- #: app/admin/RTMediaFormHandler.php:687
1388
- msgid "Enable privacy in rtMedia"
1389
  msgstr ""
1390
 
1391
- #: app/admin/RTMediaFormHandler.php:691
1392
- msgid "Default privacy"
1393
  msgstr ""
1394
 
1395
- #: app/admin/RTMediaFormHandler.php:697
1396
- msgid "Set default privacy for media"
1397
  msgstr ""
1398
 
1399
- #: app/admin/RTMediaFormHandler.php:701
1400
- msgid "Allow users to set privacy for their content"
1401
  msgstr ""
1402
 
1403
- #: app/admin/RTMediaFormHandler.php:706
1404
- msgid ""
1405
- "If you choose this, user will be able to change privacy of their own uploads."
1406
  msgstr ""
1407
 
1408
- #: app/admin/RTMediaFormHandler.php:708
1409
- msgid "For group uploads, BuddyPress groups privacy is used."
1410
  msgstr ""
1411
 
1412
- #: app/admin/RTMediaFormHandler.php:765
1413
- msgid "Enable media in profile"
1414
  msgstr ""
1415
 
1416
- #: app/admin/RTMediaFormHandler.php:770
1417
- msgid "Enable Media on BuddyPress Profile"
1418
  msgstr ""
1419
 
1420
- #: app/admin/RTMediaFormHandler.php:774
1421
- msgid "Enable media in group"
1422
  msgstr ""
1423
 
1424
- #: app/admin/RTMediaFormHandler.php:779
1425
- msgid "Enable Media on BuddyPress Groups"
1426
  msgstr ""
1427
 
1428
- #: app/admin/RTMediaFormHandler.php:783
1429
- msgid "Allow upload from activity stream"
 
1430
  msgstr ""
1431
 
1432
- #: app/admin/RTMediaFormHandler.php:788
1433
- msgid "Allow upload using status update box present on activity stream page"
 
1434
  msgstr ""
1435
 
1436
- #: app/admin/RTMediaFormHandler.php:793
1437
- msgid "Number of media items to show in activity stream"
 
 
1438
  msgstr ""
1439
 
1440
- #: app/admin/RTMediaFormHandler.php:798
1441
- msgid ""
1442
- "With bulk uploads activity stream may get flooded. You can control maximum "
1443
- "number of medias/files per activity. This limit will not affect the actual "
1444
- "number of uplaods. Only display. <em>0</em> means unlimited."
1445
  msgstr ""
1446
 
1447
- #: app/admin/RTMediaFormHandler.php:839
1448
- msgid "Organize media into albums"
1449
  msgstr ""
1450
 
1451
- #: app/admin/RTMediaFormHandler.php:845
1452
- msgid ""
1453
- "This will add 'album' tab to BuddyPress profile and group depending on "
1454
- "^above^ settings."
1455
  msgstr ""
1456
 
1457
- #: app/admin/RTMediaAdmin.php:145 app/admin/RTMediaAdmin.php:155
1458
- msgid "rtMedia:"
1459
  msgstr ""
1460
 
1461
- #: app/admin/RTMediaAdmin.php:145
1462
- msgid " You must "
1463
  msgstr ""
1464
 
1465
- #: app/admin/RTMediaAdmin.php:145
1466
- msgid "update permalink structure"
1467
  msgstr ""
1468
 
1469
- #: app/admin/RTMediaAdmin.php:145
1470
- msgid " to something other than the default for it to work."
1471
  msgstr ""
1472
 
1473
- #: app/admin/RTMediaAdmin.php:155
1474
- msgid ""
1475
- "Please update all premium add-ons that you had purchased from rtCamp from "
1476
- "your "
1477
  msgstr ""
1478
 
1479
- #: app/admin/RTMediaAdmin.php:155
1480
- msgid "account"
1481
  msgstr ""
1482
 
1483
- #: app/admin/RTMediaAdmin.php:218
1484
- msgid "rtMedia Pro is released"
1485
  msgstr ""
1486
 
1487
- #: app/admin/RTMediaAdmin.php:230
1488
- msgid "Media Stats"
1489
  msgstr ""
1490
 
1491
- #: app/admin/RTMediaAdmin.php:254
1492
- msgid "Usage Stats"
1493
  msgstr ""
1494
 
1495
- #: app/admin/RTMediaAdmin.php:262
1496
- msgid "Total "
1497
  msgstr ""
1498
 
1499
- #: app/admin/RTMediaAdmin.php:270
1500
- msgid "With Media"
1501
  msgstr ""
1502
 
1503
- #: app/admin/RTMediaAdmin.php:278
1504
- msgid "Comments "
1505
  msgstr ""
1506
 
1507
- #: app/admin/RTMediaAdmin.php:294
1508
- msgid "Homepage"
1509
  msgstr ""
1510
 
1511
- #: app/admin/RTMediaAdmin.php:294
1512
- msgid "Free Support"
1513
  msgstr ""
1514
 
1515
- #: app/admin/RTMediaAdmin.php:294
1516
- msgid "Premium Addons"
1517
  msgstr ""
1518
 
1519
- #: app/admin/RTMediaAdmin.php:304
1520
- msgid "Right Now in rtMedia"
1521
  msgstr ""
1522
 
1523
- #: app/admin/RTMediaAdmin.php:338 app/admin/RTMediaAdmin.php:504
1524
- msgid "Regenerate Thumbnail"
1525
  msgstr ""
1526
 
1527
- #: app/admin/RTMediaAdmin.php:359 app/admin/RTMediaAdmin.php:841
1528
- #: app/admin/RTMediaAdmin.php:842
1529
- msgid "rtMedia"
1530
  msgstr ""
1531
 
1532
- #: app/admin/RTMediaAdmin.php:365 app/admin/RTMediaAdmin.php:368
1533
- #: app/admin/RTMediaAdmin.php:493 app/admin/RTMediaAdmin.php:863
1534
- msgid "Settings"
1535
  msgstr ""
1536
 
1537
- #: app/admin/RTMediaAdmin.php:375 app/admin/RTMediaAdmin.php:378
1538
- #: app/admin/RTMediaAdmin.php:494 app/admin/RTMediaAdmin.php:868
1539
- msgid "Addons"
1540
  msgstr ""
1541
 
1542
- #: app/admin/RTMediaAdmin.php:385 app/admin/RTMediaAdmin.php:388
1543
- #: app/admin/RTMediaAdmin.php:495 app/admin/RTMediaAdmin.php:883
1544
- #: app/helper/RTMediaSettings.php:134
1545
- msgid "Support"
1546
  msgstr ""
1547
 
1548
- #: app/admin/RTMediaAdmin.php:395 app/admin/RTMediaAdmin.php:398
1549
- #: app/admin/RTMediaAdmin.php:496 app/admin/RTMediaAdmin.php:873
1550
- msgid "Themes"
1551
  msgstr ""
1552
 
1553
- #: app/admin/RTMediaAdmin.php:405 app/admin/RTMediaAdmin.php:408
1554
- #: app/admin/RTMediaAdmin.php:497 app/admin/RTMediaAdmin.php:878
1555
- msgid "Hire Us"
1556
  msgstr ""
1557
 
1558
- #: app/admin/RTMediaAdmin.php:446
1559
- msgid "ON"
 
1560
  msgstr ""
1561
 
1562
- #: app/admin/RTMediaAdmin.php:447
1563
- msgid "OFF"
1564
  msgstr ""
1565
 
1566
- #: app/admin/RTMediaAdmin.php:459
1567
- msgid "Please do not refresh this page."
1568
  msgstr ""
1569
 
1570
- #: app/admin/RTMediaAdmin.php:460
1571
- msgid ""
1572
- "Something went wronng. Please <a href onclick=\"location.reload();"
1573
- "\">refresh</a> page."
1574
  msgstr ""
1575
 
1576
- #: app/admin/RTMediaAdmin.php:461
1577
- msgid "This will subscribe you to the free plan."
1578
  msgstr ""
1579
 
1580
- #: app/admin/RTMediaAdmin.php:462
1581
- msgid ""
1582
- "Are you sure you want to disable the encoding service? Make sure you note "
1583
- "your api key before disabling it incase you want to activate it in future."
1584
  msgstr ""
1585
 
1586
- #: app/admin/RTMediaAdmin.php:499
1587
- msgid "Premium"
1588
  msgstr ""
1589
 
1590
- #: app/admin/RTMediaAdmin.php:499
1591
- msgid "Premium "
1592
  msgstr ""
1593
 
1594
- #: app/admin/RTMediaAdmin.php:504
1595
- msgid "Regen. Thumbnail "
1596
  msgstr ""
1597
 
1598
- #: app/admin/RTMediaAdmin.php:517
1599
- msgid "Regenerate Video Thumbnails"
1600
  msgstr ""
1601
 
1602
- #: app/admin/RTMediaAdmin.php:534
1603
- msgid "Regenerate Pending Thumbnails"
 
1604
  msgstr ""
1605
 
1606
- #: app/admin/RTMediaAdmin.php:542
1607
- msgid "Total Videos"
 
1608
  msgstr ""
1609
 
1610
- #: app/admin/RTMediaAdmin.php:543
1611
- msgid "Sent of regenerate thumbails"
 
1612
  msgstr ""
1613
 
1614
- #: app/admin/RTMediaAdmin.php:544
1615
- msgid "Fail to regenerate thumbails"
 
1616
  msgstr ""
1617
 
1618
- #: app/admin/RTMediaAdmin.php:586
1619
- msgid "Regenerate Video Thumbnails Done"
 
1620
  msgstr ""
1621
 
1622
- #: app/admin/RTMediaAdmin.php:621
1623
- #, php-format
1624
- msgid ""
1625
- "You have total %s videos without thumbnails. Click <a href='%s'> here </a> "
1626
- "to generate thumbnails. <a href='#' onclick='rtmedia_hide_video_thumb_notice"
1627
- "()' style='float:right'>Hide</a>"
1628
  msgstr ""
1629
 
1630
- #: app/admin/RTMediaAdmin.php:672
1631
- msgid "not a video ..."
1632
  msgstr ""
1633
 
1634
- #: app/admin/RTMediaAdmin.php:758
1635
- msgid "Empowering The Web With WordPress"
1636
  msgstr ""
1637
 
1638
- #: app/admin/RTMediaAdmin.php:788
1639
- msgid "Save Settings"
 
 
 
1640
  msgstr ""
1641
 
1642
- #: app/admin/RTMediaAdmin.php:950 app/admin/RTMediaAdmin.php:951
1643
- msgid "Display"
1644
  msgstr ""
1645
 
1646
- #: app/admin/RTMediaAdmin.php:961
1647
- msgid "rtMedia BuddyPress"
 
1648
  msgstr ""
1649
 
1650
- #: app/admin/RTMediaAdmin.php:962
1651
- msgid "BuddyPress"
 
1652
  msgstr ""
1653
 
1654
- #: app/admin/RTMediaAdmin.php:970
1655
- msgid "rtMedia Types"
1656
  msgstr ""
1657
 
1658
- #: app/admin/RTMediaAdmin.php:971
1659
- msgid "Types"
1660
  msgstr ""
1661
 
1662
- #: app/admin/RTMediaAdmin.php:978
1663
- msgid "rtMedia Sizes"
1664
  msgstr ""
1665
 
1666
- #: app/admin/RTMediaAdmin.php:979
1667
- msgid "Image Sizes"
1668
  msgstr ""
1669
 
1670
- #: app/admin/RTMediaAdmin.php:986
1671
- msgid "rtMedia Privacy"
1672
  msgstr ""
1673
 
1674
- #: app/admin/RTMediaAdmin.php:993
1675
- msgid "rtMedia Custom CSS"
1676
  msgstr ""
1677
 
1678
- #: app/admin/RTMediaAdmin.php:994
1679
- msgid "Custom CSS"
1680
  msgstr ""
1681
 
1682
- #: app/admin/RTMediaAdmin.php:1003 app/admin/RTMediaAdmin.php:1004
1683
- msgid "Other Settings"
1684
  msgstr ""
1685
 
1686
- #: app/admin/RTMediaAdmin.php:1095
1687
- #, php-format
1688
- msgid "I use @buddypressmedia http://rt.cx/rtmedia on %s"
1689
  msgstr ""
1690
 
1691
- #: app/admin/RTMediaAdmin.php:1099
1692
- msgid "Post to Twitter Now"
1693
  msgstr ""
1694
 
1695
- #: app/admin/RTMediaAdmin.php:1099
1696
- msgid "Post to Twitter"
1697
  msgstr ""
1698
 
1699
- #: app/admin/RTMediaAdmin.php:1100
1700
- msgid "Share on Facebook Now"
1701
  msgstr ""
1702
 
1703
- #: app/admin/RTMediaAdmin.php:1100
1704
- msgid "Share on Facebook"
1705
  msgstr ""
1706
 
1707
- #: app/admin/RTMediaAdmin.php:1101
1708
- msgid "Rate rtMedia on Wordpress.org"
 
1709
  msgstr ""
1710
 
1711
- #: app/admin/RTMediaAdmin.php:1101
1712
- msgid "Rate on Wordpress.org"
1713
  msgstr ""
1714
 
1715
- #: app/admin/RTMediaAdmin.php:1102
1716
- msgid "Subscribe to our feeds"
1717
  msgstr ""
1718
 
1719
- #: app/admin/RTMediaAdmin.php:1102
1720
- msgid "Subscribe to our Feeds"
1721
  msgstr ""
1722
 
1723
- #: app/admin/RTMediaAdmin.php:1103
1724
- msgid "Add link to footer"
1725
  msgstr ""
1726
 
1727
- #: app/admin/RTMediaAdmin.php:1109
1728
- msgid "Spread the Word"
1729
  msgstr ""
1730
 
1731
- #: app/admin/RTMediaAdmin.php:1141 app/admin/RTMediaAdmin.php:1144
1732
- msgid "Subscribe"
1733
  msgstr ""
1734
 
1735
- #: app/admin/RTMediaAdmin.php:1166
1736
- msgid "Thank you for your time."
 
1737
  msgstr ""
1738
 
1739
- #: app/admin/RTMediaAdmin.php:1178
1740
- msgid "Premium Add-ons"
 
1741
  msgstr ""
1742
 
1743
- #: app/admin/RTMediaAdmin.php:1192
1744
- #, php-format
1745
- msgid ""
1746
- "You have images enabled on rtMedia but your network allowed filetypes does "
1747
- "not allow uploading of %s. Click <a href=\"%s\">here</a> to change your "
1748
- "settings manually."
1749
  msgstr ""
1750
 
1751
- #: app/admin/RTMediaAdmin.php:1193 app/admin/RTMediaAdmin.php:1204
1752
- #: app/admin/RTMediaAdmin.php:1213
1753
- msgid "Recommended"
1754
  msgstr ""
1755
 
1756
- #: app/admin/RTMediaAdmin.php:1193 app/admin/RTMediaAdmin.php:1204
1757
- #: app/admin/RTMediaAdmin.php:1213
1758
- msgid "Update Network Settings Automatically"
1759
  msgstr ""
1760
 
1761
- #: app/admin/RTMediaAdmin.php:1203
1762
- #, php-format
1763
- msgid ""
1764
- "You have video enabled on BuddyPress Media but your network allowed "
1765
- "filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to "
1766
- "change your settings manually."
1767
  msgstr ""
1768
 
1769
- #: app/admin/RTMediaAdmin.php:1212
1770
- #, php-format
1771
- msgid ""
1772
- "You have audio enabled on BuddyPress Media but your network allowed "
1773
- "filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to "
1774
- "change your settings manually."
1775
  msgstr ""
1776
 
1777
- #: app/admin/RTMediaAdmin.php:1227
1778
- msgid "Network settings updated successfully."
1779
  msgstr ""
1780
 
1781
- #: app/admin/RTMediaAdmin.php:1330
1782
- msgid "Video is sent to generate thumbnails."
1783
  msgstr ""
1784
 
1785
- #: app/admin/RTMediaAdmin.php:1333
1786
- msgid "Video can't be sent to generate thumbnails."
 
1787
  msgstr ""
1788
 
1789
- #: app/admin/RTMediaAdmin.php:1415
1790
- msgid ""
1791
- "rtMedia just updated to Foundation 5. Please update rtMedia template files "
1792
- "if you have overridden the default rtMedia templates in your theme."
1793
  msgstr ""
1794
 
1795
- #: app/services/RTMediaEncoding.php:151
1796
- msgid "rtMedia Encoding: Nearing quota limit."
1797
  msgstr ""
1798
 
1799
- #: app/services/RTMediaEncoding.php:152
1800
- #, php-format
1801
- msgid ""
1802
- "<p>You are nearing the quota limit for your rtMedia encoding service.</"
1803
- "p><p>Following are the details:</p><p><strong>Used:</strong> %s</"
1804
- "p><p><strong>Remaining</strong>: %s</p><p><strong>Total:</strong> %s</p>"
1805
  msgstr ""
1806
 
1807
- #: app/services/RTMediaEncoding.php:166
1808
- msgid "rtMedia Encoding: Usage quota over."
 
1809
  msgstr ""
1810
 
1811
- #: app/services/RTMediaEncoding.php:167
1812
- #, php-format
1813
- msgid ""
1814
- "<p>Your usage quota is over. Upgrade your plan</p><p>Following are the "
1815
- "details:</p><p><strong>Used:</strong> %s</p><p><strong>Remaining</strong>: "
1816
- "%s</p><p><strong>Total:</strong> %s</p>"
1817
  msgstr ""
1818
 
1819
- #: app/services/RTMediaEncoding.php:222
1820
- #, php-format
1821
- msgid "You have successfully subscribed for the <strong>%s</strong> plan"
1822
  msgstr ""
1823
 
1824
- #: app/services/RTMediaEncoding.php:234
1825
- msgid "Unsubscribe"
 
 
1826
  msgstr ""
1827
 
1828
- #: app/services/RTMediaEncoding.php:236
1829
- msgid ""
1830
- "Just to improve our service we would like to know the reason for you to "
1831
- "leave us."
1832
  msgstr ""
1833
 
1834
- #: app/services/RTMediaEncoding.php:286 app/services/RTMediaEncoding.php:369
1835
- msgid "Current Plan"
1836
  msgstr ""
1837
 
1838
- #: app/services/RTMediaEncoding.php:286
1839
- msgid "Unsubscribed"
1840
  msgstr ""
1841
 
1842
- #: app/services/RTMediaEncoding.php:288
1843
- msgid "Used"
 
1844
  msgstr ""
1845
 
1846
- #: app/services/RTMediaEncoding.php:290
1847
- msgid "Remaining"
1848
  msgstr ""
1849
 
1850
- #: app/services/RTMediaEncoding.php:292
1851
- msgid "Total"
 
1852
  msgstr ""
1853
 
1854
- #: app/services/RTMediaEncoding.php:296
1855
- msgid "Your usage limit has been reached. Upgrade your plan."
1856
  msgstr ""
1857
 
1858
- #: app/services/RTMediaEncoding.php:298
1859
- msgid "Your API key is not valid or is expired."
1860
  msgstr ""
1861
 
1862
- #: app/services/RTMediaEncoding.php:300
1863
- msgid "Encoding Usage"
1864
  msgstr ""
1865
 
1866
- #: app/services/RTMediaEncoding.php:305
1867
- msgid "rtMedia team has started offering an audio/video encoding service."
 
 
1868
  msgstr ""
1869
 
1870
- #: app/services/RTMediaEncoding.php:307
1871
- msgid "Enter API KEY"
1872
  msgstr ""
1873
 
1874
- #: app/services/RTMediaEncoding.php:309
1875
- msgid "Submit"
1876
  msgstr ""
1877
 
1878
- #: app/services/RTMediaEncoding.php:317
1879
- msgid "Feature\\Plan"
1880
  msgstr ""
1881
 
1882
- #: app/services/RTMediaEncoding.php:318 app/services/RTMediaEncoding.php:359
1883
- msgid "Free"
1884
  msgstr ""
1885
 
1886
- #: app/services/RTMediaEncoding.php:319
1887
- msgid "Silver"
1888
  msgstr ""
1889
 
1890
- #: app/services/RTMediaEncoding.php:320
1891
- msgid "Gold"
 
 
1892
  msgstr ""
1893
 
1894
- #: app/services/RTMediaEncoding.php:321
1895
- msgid "Platinum"
1896
  msgstr ""
1897
 
1898
- #: app/services/RTMediaEncoding.php:325
1899
- msgid "File Size Limit"
 
 
1900
  msgstr ""
1901
 
1902
- #: app/services/RTMediaEncoding.php:330
1903
- msgid "Bandwidth (monthly)"
1904
  msgstr ""
1905
 
1906
- #: app/services/RTMediaEncoding.php:337
1907
- msgid "Overage Bandwidth"
 
 
1908
  msgstr ""
1909
 
1910
- #: app/services/RTMediaEncoding.php:338 app/services/RTMediaEncoding.php:345
1911
- #: app/services/RTMediaEncoding.php:350
1912
- msgid "Not Available"
1913
  msgstr ""
1914
 
1915
- #: app/services/RTMediaEncoding.php:344
1916
- msgid "Amazon S3 Support"
 
 
1917
  msgstr ""
1918
 
1919
- #: app/services/RTMediaEncoding.php:346 app/services/RTMediaEncoding.php:351
1920
- #: app/services/RTMediaEncoding.php:355
1921
- msgid "Coming Soon"
1922
  msgstr ""
1923
 
1924
- #: app/services/RTMediaEncoding.php:349
1925
- msgid "HD Profile"
 
 
1926
  msgstr ""
1927
 
1928
- #: app/services/RTMediaEncoding.php:354
1929
- msgid "Webcam Recording"
1930
  msgstr ""
1931
 
1932
- #: app/services/RTMediaEncoding.php:358
1933
- msgid "Pricing"
 
 
1934
  msgstr ""
1935
 
1936
- #: app/services/RTMediaEncoding.php:360
1937
- msgid "$9/month"
1938
  msgstr ""
1939
 
1940
- #: app/services/RTMediaEncoding.php:361
1941
- msgid "$99/month"
 
 
1942
  msgstr ""
1943
 
1944
- #: app/services/RTMediaEncoding.php:362
1945
- msgid "$999/month"
1946
  msgstr ""
1947
 
1948
- #: app/services/RTMediaEncoding.php:374
1949
- msgid "Try Now"
 
 
1950
  msgstr ""
1951
 
1952
- #: app/services/RTMediaEncoding.php:526
1953
- msgid "Could not read file."
1954
  msgstr ""
1955
 
1956
- #: app/services/RTMediaEncoding.php:531
1957
  msgid ""
1958
- "Something went wrong. The required attachment id does not exists. It must "
1959
- "have been deleted."
1960
  msgstr ""
1961
 
1962
- #: app/services/RTMediaEncoding.php:547
1963
- msgid "rtMedia Encoding: Download Failed"
1964
  msgstr ""
1965
 
1966
- #: app/services/RTMediaEncoding.php:548
1967
- #, php-format
1968
  msgid ""
1969
- "<p><a href=\"%s\">Media</a> was successfully encoded but there was an error "
1970
- "while downloading:</p>\n"
1971
- " <p><code>%s</code></p>\n"
1972
- " <p>You can <a href=\"%s\">retry the download</a>.</p>"
1973
  msgstr ""
1974
 
1975
- #: app/services/RTMediaEncoding.php:564
1976
- msgid "Done"
1977
  msgstr ""
1978
 
1979
- #: app/services/RTMediaEncoding.php:592 app/services/RTMediaEncoding.php:615
1980
- msgid "Something went wrong please try again."
 
 
1981
  msgstr ""
1982
 
1983
- #: app/services/RTMediaEncoding.php:611
1984
- msgid "Your subscription was cancelled successfully"
1985
  msgstr ""
1986
 
1987
- #: app/services/RTMediaEncoding.php:625
1988
- msgid "Please enter the api key."
 
1989
  msgstr ""
1990
 
1991
- #: app/services/RTMediaEncoding.php:632
1992
- msgid "Encoding disabled successfully."
1993
  msgstr ""
1994
 
1995
- #: app/helper/RTMediaUploadException.php:41
1996
- msgid ""
1997
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
1998
- "the HTML form"
1999
  msgstr ""
2000
 
2001
- #: app/helper/RTMediaUploadException.php:44
2002
- msgid "No file was uploaded"
2003
  msgstr ""
2004
 
2005
- #: app/helper/RTMediaUploadException.php:48
2006
- msgid "Uploade failed due to internal server error."
2007
  msgstr ""
2008
 
2009
- #: app/helper/RTMediaUploadException.php:51
2010
- msgid "File type not allowed."
2011
  msgstr ""
2012
 
2013
- #: app/helper/RTMediaUploadException.php:55
2014
- msgid "Invalid Context for upload."
2015
  msgstr ""
2016
 
2017
- #: app/helper/RTMediaUploadException.php:58
2018
- msgid "Unknown file upload error."
2019
  msgstr ""
2020
 
2021
- #: app/helper/RTMediaThemes.php:41 app/helper/RTMediaThemes.php:42
2022
- msgid "rtMedia Themes By rtCamp"
2023
  msgstr ""
2024
 
2025
- #: app/helper/RTMediaThemes.php:47 app/helper/RTMediaThemes.php:48
2026
- msgid "3rd Party Themes"
2027
  msgstr ""
2028
 
2029
- #: app/helper/RTMediaThemes.php:120
2030
- msgid ""
2031
- "These are the third party themes. For any issues or queries regarding these "
2032
- "themes please contact theme developers."
2033
  msgstr ""
2034
 
2035
- #: app/helper/RTMediaThemes.php:128
2036
- msgid ""
2037
- "SweetDate is a unique, clean and modern Premium Wordpress theme. It is "
2038
- "perfect for a dating or community website but can be used as well for any "
2039
- "other domain. They added all the things you need to create a perfect "
2040
- "community system."
2041
  msgstr ""
2042
 
2043
- #: app/helper/RTMediaThemes.php:129 app/helper/RTMediaThemes.php:138
2044
- #: app/helper/RTMediaSupport.php:331
2045
- msgid "Click"
2046
  msgstr ""
2047
 
2048
- #: app/helper/RTMediaThemes.php:129 app/helper/RTMediaThemes.php:138
2049
- #: app/helper/RTMediaSupport.php:331
2050
- msgid "here"
2051
  msgstr ""
2052
 
2053
- #: app/helper/RTMediaThemes.php:129 app/helper/RTMediaThemes.php:138
2054
- msgid "for preview."
2055
  msgstr ""
2056
 
2057
- #: app/helper/RTMediaThemes.php:137
2058
- msgid ""
2059
- "You no longer need to be a professional developer or designer to create an "
2060
- "awesome website. Let your imagination run wild and create the site of your "
2061
- "dreams. KLEO has all the tools to get you started."
2062
  msgstr ""
2063
 
2064
- #: app/helper/RTMediaThemes.php:144
2065
- msgid "Are you a developer?"
2066
  msgstr ""
2067
 
2068
- #: app/helper/RTMediaThemes.php:145
2069
- msgid ""
2070
- "If you have developed a rtMedia compatible theme and would like it to list "
2071
- "here, please email us at"
2072
  msgstr ""
2073
 
2074
- #: app/helper/RTMediaThemes.php:145
2075
- msgid "product@rtcamp.com"
2076
  msgstr ""
2077
 
2078
- #: app/helper/RTMediaAdminWidget.php:29
2079
- msgid "Argument missing. id is required."
2080
  msgstr ""
2081
 
2082
- #: app/helper/RTMediaAddon.php:51 app/helper/RTMediaAddon.php:52
2083
- msgid "Audio/Video Encoding"
 
 
 
2084
  msgstr ""
2085
 
2086
- #: app/helper/RTMediaAddon.php:57 app/helper/RTMediaAddon.php:58
2087
- msgid "Plugins"
2088
  msgstr ""
2089
 
2090
- #: app/helper/RTMediaAddon.php:117
2091
- msgid "rtMedia Photo Tagging"
2092
  msgstr ""
2093
 
2094
- #: app/helper/RTMediaAddon.php:120
2095
- msgid ""
2096
- "rtMedia Photo Tagging add-on enables tagging on photos uploaded using "
2097
- "BuddyPress Media."
2098
  msgstr ""
2099
 
2100
- #: app/helper/RTMediaAddon.php:127
2101
- msgid "rtMedia Instagram"
 
2102
  msgstr ""
2103
 
2104
- #: app/helper/RTMediaAddon.php:130
2105
- msgid ""
2106
- "rtMedia Instagram adds Instagram like filters to images uploaded with "
2107
- "rtMedia."
2108
  msgstr ""
2109
 
2110
- #: app/helper/RTMediaAddon.php:137
2111
- msgid "rtMedia Kaltura Add-on"
2112
  msgstr ""
2113
 
2114
- #: app/helper/RTMediaAddon.php:140
2115
- msgid "Add support for more video formats using Kaltura video solution."
2116
  msgstr ""
2117
 
2118
- #: app/helper/RTMediaAddon.php:141
2119
- msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
2120
  msgstr ""
2121
 
2122
- #: app/helper/RTMediaAddon.php:147
2123
- msgid "rtMedia FFMPEG Add-on"
2124
  msgstr ""
2125
 
2126
- #: app/helper/RTMediaAddon.php:150
2127
- msgid ""
2128
- "Add supports for more audio & video formats using open-source media-node."
2129
  msgstr ""
2130
 
2131
- #: app/helper/RTMediaAddon.php:151
2132
- msgid "Media node comes with automated setup script for Ubuntu/Debian."
2133
  msgstr ""
2134
 
2135
- #: app/helper/RTMediaAddon.php:163
2136
- msgid "rtMedia Addons for Photos"
2137
  msgstr ""
2138
 
2139
- #: app/helper/RTMediaAddon.php:167
2140
- msgid "rtMedia Addons for Audio/Video"
2141
  msgstr ""
2142
 
2143
- #: app/helper/RTMediaAddon.php:181
2144
- msgid "Coming Soon !!"
2145
  msgstr ""
2146
 
2147
- #: app/helper/RTMediaFeed.php:45
2148
- msgid "No items"
 
 
 
2149
  msgstr ""
2150
 
2151
- #: app/helper/RTMediaFeed.php:51
2152
- msgid "Posted "
2153
  msgstr ""
2154
 
2155
- #: app/helper/RTMediaSettings.php:104
2156
- msgid "Max Video thumbnail size is "
2157
  msgstr ""
2158
 
2159
- #: app/helper/RTMediaSettings.php:132
2160
- msgid "BuddyPress Media Addons for Photos"
 
 
 
2161
  msgstr ""
2162
 
2163
- #: app/helper/RTMediaSettings.php:136
2164
- msgid "rtMedia Themes"
2165
  msgstr ""
2166
 
2167
- #: app/helper/RTMediaSettings.php:193
2168
- #, php-format
2169
  msgid ""
2170
- "Currently your network allows uploading of the following file types. You can "
2171
- "change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
2172
  msgstr ""
2173
 
2174
- #: app/helper/RTMediaSettings.php:211 app/helper/RTMediaSettings.php:213
2175
- msgid "Recounting of media files done successfully"
 
 
 
 
 
2176
  msgstr ""
2177
 
2178
- #: app/helper/RTMediaSettings.php:213
2179
- msgid "Recount Success"
 
 
 
 
2180
  msgstr ""
2181
 
2182
- #: app/helper/RTMediaSettings.php:216 app/helper/RTMediaSettings.php:218
2183
- msgid "Recounting Failed"
2184
  msgstr ""
2185
 
2186
- #: app/helper/RTMediaSettings.php:218
2187
- msgid "Recount Fail"
 
 
 
 
2188
  msgstr ""
2189
 
2190
- #: app/helper/RTMediaSettings.php:230 app/helper/RTMediaSettings.php:232
2191
- msgid "Atleast one Media Type Must be selected"
 
2192
  msgstr ""
2193
 
2194
- #: app/helper/RTMediaSettings.php:239 app/helper/RTMediaSettings.php:241
2195
- msgid "\"Number of media\" count value should be numeric and greater than 0."
2196
  msgstr ""
2197
 
2198
- #: app/helper/RTMediaSettings.php:241
2199
- msgid "Default Count"
 
 
2200
  msgstr ""
2201
 
2202
- #: app/helper/RTMediaSettings.php:245
2203
- msgid "Settings saved."
2204
  msgstr ""
2205
 
2206
- #: app/helper/RTMediaSettings.php:260
2207
- #, php-format
2208
- msgid ""
2209
- "If you make changes to width, height or crop settings, you must use \"<a "
2210
- "href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
2211
  msgstr ""
2212
 
2213
- #: app/helper/RTMediaSettings.php:280
2214
- msgid "BuddyPress Media 2.6 requires a database upgrade. "
2215
  msgstr ""
2216
 
2217
- #: app/helper/RTMediaSettings.php:281
2218
- msgid "Update Database"
2219
  msgstr ""
2220
 
2221
- #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:367
2222
- msgid ""
2223
- "If your site has some issues due to BuddyPress Media and you want one on one "
2224
- "support then you can create a support topic on the <a target=\"_blank\" href="
2225
- "\"http://rtcamp.com/groups/buddypress-media/forum/?"
2226
- "utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media"
2227
- "\">rtCamp Support Forum</a>."
2228
  msgstr ""
2229
 
2230
- #: app/helper/RTMediaSettings.php:290 app/helper/RTMediaSupport.php:368
2231
- msgid ""
2232
- "If you have any suggestions, enhancements or bug reports, then you can open "
2233
- "a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/"
2234
- "buddypress-media/issues/new\">GitHub</a>."
2235
  msgstr ""
2236
 
2237
- #: app/helper/RTMediaSupport.php:40 app/helper/RTMediaSupport.php:41
2238
- #: app/helper/RTMediaSupport.php:128
2239
- msgid "Premium Support"
2240
  msgstr ""
2241
 
2242
- #: app/helper/RTMediaSupport.php:46 app/helper/RTMediaSupport.php:47
2243
- #: app/helper/RTMediaSupport.php:522
2244
- msgid "Debug Info"
2245
  msgstr ""
2246
 
2247
- #: app/helper/RTMediaSupport.php:126
2248
- msgid "Service"
2249
  msgstr ""
2250
 
2251
- #: app/helper/RTMediaSupport.php:129
2252
- msgid "Bug Report"
2253
  msgstr ""
2254
 
2255
- #: app/helper/RTMediaSupport.php:130
2256
- msgid "New Feature"
2257
  msgstr ""
2258
 
2259
- #: app/helper/RTMediaSupport.php:210
2260
- msgid "by"
2261
  msgstr ""
2262
 
2263
- #: app/helper/RTMediaSupport.php:210
2264
- msgid "version"
2265
  msgstr ""
2266
 
2267
- #: app/helper/RTMediaSupport.php:325
2268
- msgid "There is no media found to migrate."
2269
  msgstr ""
2270
 
2271
- #: app/helper/RTMediaSupport.php:331
2272
- msgid "here to migrate media from rtMedia 2.x to rtMedia 3.0+."
2273
  msgstr ""
2274
 
2275
- #: app/helper/RTMediaSupport.php:355
2276
- msgid "Submit a Bug Report"
2277
  msgstr ""
2278
 
2279
- #: app/helper/RTMediaSupport.php:358
2280
- msgid "Submit a New Feature Request"
2281
  msgstr ""
2282
 
2283
- #: app/helper/RTMediaSupport.php:361
2284
- msgid "Submit a Premium Support Request"
2285
  msgstr ""
2286
 
2287
- #: app/helper/RTMediaSupport.php:378
2288
- msgid "Name"
2289
  msgstr ""
2290
 
2291
- #: app/helper/RTMediaSupport.php:381
2292
- msgid "Email"
 
2293
  msgstr ""
2294
 
2295
- #: app/helper/RTMediaSupport.php:384
2296
- msgid "Website"
2297
  msgstr ""
2298
 
2299
- #: app/helper/RTMediaSupport.php:387
2300
- msgid "Phone"
 
2301
  msgstr ""
2302
 
2303
- #: app/helper/RTMediaSupport.php:390
2304
- msgid "Subject"
2305
  msgstr ""
2306
 
2307
- #: app/helper/RTMediaSupport.php:393 templates/media/album-single-edit.php:16
2308
- #: templates/media/media-single-edit.php:19
2309
- msgid "Details"
2310
  msgstr ""
2311
 
2312
- #: app/helper/RTMediaSupport.php:404
2313
- msgid "Additional Information"
2314
  msgstr ""
2315
 
2316
- #: app/helper/RTMediaSupport.php:409
2317
- msgid "Your WP Admin Login:"
2318
  msgstr ""
2319
 
2320
- #: app/helper/RTMediaSupport.php:412
2321
- msgid "Your WP Admin password:"
2322
  msgstr ""
2323
 
2324
- #: app/helper/RTMediaSupport.php:415
2325
- msgid "Your SSH / FTP host:"
2326
  msgstr ""
2327
 
2328
- #: app/helper/RTMediaSupport.php:418
2329
- msgid "Your SSH / FTP login:"
2330
  msgstr ""
2331
 
2332
- #: app/helper/RTMediaSupport.php:421
2333
- msgid "Your SSH / FTP password:"
2334
  msgstr ""
2335
 
2336
- #: app/helper/RTMediaSupport.php:452
2337
- msgid "rtMedia Premium Support Request from"
 
 
2338
  msgstr ""
2339
 
2340
- #: app/helper/RTMediaSupport.php:455
2341
- msgid "rtMedia New Feature Request from"
2342
  msgstr ""
2343
 
2344
- #: app/helper/RTMediaSupport.php:458
2345
- msgid "rtMedia Bug Report from"
 
 
 
 
 
2346
  msgstr ""
2347
 
2348
- #: app/helper/RTMediaSupport.php:461
2349
- msgid "rtMedia Contact from"
2350
  msgstr ""
2351
 
2352
- #: app/helper/RTMediaSupport.php:545
2353
- msgid "Thank you for your Feedback/Suggestion."
2354
  msgstr ""
2355
 
2356
- #: app/helper/RTMediaSupport.php:547
2357
- msgid "Thank you for posting your support request."
2358
  msgstr ""
2359
 
2360
- #: app/helper/RTMediaSupport.php:548
2361
- msgid "We will get back to you shortly."
2362
  msgstr ""
2363
 
2364
- #: app/helper/RTMediaSupport.php:553
2365
- msgid "Your server failed to send an email."
2366
  msgstr ""
2367
 
2368
- #: app/helper/RTMediaSupport.php:554
2369
- msgid "Kindly contact your server support to fix this."
2370
  msgstr ""
2371
 
2372
- #: app/helper/RTMediaSupport.php:555
2373
- #, php-format
2374
- msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
 
2375
  msgstr ""
2376
 
2377
- #: app/helper/rtFormInvalidArgumentsException.php:21
2378
- #, php-format
2379
- msgid ""
2380
- "Error on line %s in %s : <b>The method expects an array in arguments for %s "
2381
- "provided.</b>"
2382
  msgstr ""
2383
 
2384
- #: templates/media/media-single.php:129 templates/media/album-gallery.php:50
2385
  #: templates/media/media-single-edit.php:64
 
2386
  msgid "Sorry !! There's no media found for the request !!"
2387
  msgstr ""
2388
 
@@ -2424,11 +2456,6 @@ msgstr ""
2424
  msgid "Move Selected"
2425
  msgstr ""
2426
 
2427
- #: templates/media/album-single-edit.php:89
2428
- #: templates/media/album-gallery.php:34 templates/media/media-gallery.php:47
2429
- msgid "Prev"
2430
- msgstr ""
2431
-
2432
  #: templates/media/album-single-edit.php:98
2433
  msgid "Next"
2434
  msgstr ""
@@ -2437,12 +2464,16 @@ msgstr ""
2437
  msgid "The album is empty."
2438
  msgstr ""
2439
 
2440
- #: templates/media/album-gallery.php:4
2441
- msgid "Album List"
2442
  msgstr ""
2443
 
2444
- #: templates/media/album-gallery.php:43
2445
- msgid "Load More"
 
 
 
 
2446
  msgstr ""
2447
 
2448
  #: templates/media/media-single-edit.php:50
@@ -2456,15 +2487,3 @@ msgstr ""
2456
  #: templates/media/media-single-edit.php:59
2457
  msgid "Sorry !! You do not have rights to edit this media"
2458
  msgstr ""
2459
-
2460
- #: templates/media/media-gallery.php:8 templates/media/media-gallery.php:14
2461
- msgid "Media Gallery"
2462
- msgstr ""
2463
-
2464
- #: templates/media/media-gallery.php:56
2465
- msgid "Load more"
2466
- msgstr ""
2467
-
2468
- #: templates/media/media-gallery.php:61
2469
- msgid "Oops !! There's no media found for the request !!"
2470
- msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-03-28 17:06+0530\n"
6
+ "PO-Revision-Date: 2014-03-28 17:06+0530\n"
7
  "Last-Translator: faishal <faishal.saiyed@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: en_IN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__;_n\n"
14
  "X-Poedit-Basepath: ../.\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: app/admin/RTMediaAdmin.php:145 app/admin/RTMediaAdmin.php:155
19
+ msgid "rtMedia:"
20
  msgstr ""
21
 
22
+ #: app/admin/RTMediaAdmin.php:145
23
+ msgid " You must "
24
  msgstr ""
25
 
26
+ #: app/admin/RTMediaAdmin.php:145
27
+ msgid "update permalink structure"
28
  msgstr ""
29
 
30
+ #: app/admin/RTMediaAdmin.php:145
31
+ msgid " to something other than the default for it to work."
32
  msgstr ""
33
 
34
+ #: app/admin/RTMediaAdmin.php:155
35
+ msgid ""
36
+ "Please update all premium add-ons that you had purchased from rtCamp from "
37
+ "your "
38
  msgstr ""
39
 
40
+ #: app/admin/RTMediaAdmin.php:155
41
+ msgid "account"
42
  msgstr ""
43
 
44
+ #: app/admin/RTMediaAdmin.php:218
45
+ msgid "rtMedia Pro is released"
46
  msgstr ""
47
 
48
+ #: app/admin/RTMediaAdmin.php:230
49
+ msgid "Media Stats"
50
  msgstr ""
51
 
52
+ #: app/admin/RTMediaAdmin.php:254
53
+ msgid "Usage Stats"
54
  msgstr ""
55
 
56
+ #: app/admin/RTMediaAdmin.php:262
57
+ msgid "Total "
58
  msgstr ""
59
 
60
+ #: app/admin/RTMediaAdmin.php:270
61
+ msgid "With Media"
62
  msgstr ""
63
 
64
+ #: app/admin/RTMediaAdmin.php:278
65
+ msgid "Comments "
 
 
66
  msgstr ""
67
 
68
+ #: app/admin/RTMediaAdmin.php:286
69
+ #: app/main/controllers/media/RTMediaLike.php:18
70
+ msgid "Likes"
 
 
71
  msgstr ""
72
 
73
+ #: app/admin/RTMediaAdmin.php:294
74
+ msgid "Homepage"
 
 
75
  msgstr ""
76
 
77
+ #: app/admin/RTMediaAdmin.php:294
78
+ msgid "Free Support"
79
  msgstr ""
80
 
81
+ #: app/admin/RTMediaAdmin.php:294
82
+ msgid "Premium Addons"
83
  msgstr ""
84
 
85
+ #: app/admin/RTMediaAdmin.php:304
86
+ msgid "Right Now in rtMedia"
87
  msgstr ""
88
 
89
+ #: app/admin/RTMediaAdmin.php:338 app/admin/RTMediaAdmin.php:504
90
+ msgid "Regenerate Thumbnail"
91
  msgstr ""
92
 
93
+ #: app/admin/RTMediaAdmin.php:359 app/admin/RTMediaAdmin.php:841
94
+ #: app/admin/RTMediaAdmin.php:842
95
+ msgid "rtMedia"
96
  msgstr ""
97
 
98
+ #: app/admin/RTMediaAdmin.php:365 app/admin/RTMediaAdmin.php:368
99
+ #: app/admin/RTMediaAdmin.php:493 app/admin/RTMediaAdmin.php:863
100
+ msgid "Settings"
101
  msgstr ""
102
 
103
+ #: app/admin/RTMediaAdmin.php:375 app/admin/RTMediaAdmin.php:378
104
+ #: app/admin/RTMediaAdmin.php:494 app/admin/RTMediaAdmin.php:868
105
+ msgid "Addons"
106
  msgstr ""
107
 
108
+ #: app/admin/RTMediaAdmin.php:385 app/admin/RTMediaAdmin.php:388
109
+ #: app/admin/RTMediaAdmin.php:495 app/admin/RTMediaAdmin.php:883
110
+ #: app/helper/RTMediaSettings.php:134
111
+ msgid "Support"
112
  msgstr ""
113
 
114
+ #: app/admin/RTMediaAdmin.php:395 app/admin/RTMediaAdmin.php:398
115
+ #: app/admin/RTMediaAdmin.php:496 app/admin/RTMediaAdmin.php:873
116
+ msgid "Themes"
117
  msgstr ""
118
 
119
+ #: app/admin/RTMediaAdmin.php:405 app/admin/RTMediaAdmin.php:408
120
+ #: app/admin/RTMediaAdmin.php:497 app/admin/RTMediaAdmin.php:878
121
+ msgid "Hire Us"
122
  msgstr ""
123
 
124
+ #: app/admin/RTMediaAdmin.php:446
125
+ msgid "ON"
126
  msgstr ""
127
 
128
+ #: app/admin/RTMediaAdmin.php:447
129
+ msgid "OFF"
130
  msgstr ""
131
 
132
+ #: app/admin/RTMediaAdmin.php:459
133
+ msgid "Please do not refresh this page."
134
  msgstr ""
135
 
136
+ #: app/admin/RTMediaAdmin.php:460
137
+ msgid ""
138
+ "Something went wronng. Please <a href onclick=\"location.reload();"
139
+ "\">refresh</a> page."
140
  msgstr ""
141
 
142
+ #: app/admin/RTMediaAdmin.php:461
143
+ msgid "This will subscribe you to the free plan."
144
  msgstr ""
145
 
146
+ #: app/admin/RTMediaAdmin.php:462
147
+ msgid ""
148
+ "Are you sure you want to disable the encoding service? Make sure you note "
149
+ "your api key before disabling it incase you want to activate it in future."
150
  msgstr ""
151
 
152
+ #: app/admin/RTMediaAdmin.php:499
153
+ msgid "Premium"
154
  msgstr ""
155
 
156
+ #: app/admin/RTMediaAdmin.php:499
157
+ msgid "Premium "
158
  msgstr ""
159
 
160
+ #: app/admin/RTMediaAdmin.php:504
161
+ msgid "Regen. Thumbnail "
162
  msgstr ""
163
 
164
+ #: app/admin/RTMediaAdmin.php:517
165
+ msgid "Regenerate Video Thumbnails"
166
  msgstr ""
167
 
168
+ #: app/admin/RTMediaAdmin.php:534
169
+ msgid "Regenerate Pending Thumbnails"
170
  msgstr ""
171
 
172
+ #: app/admin/RTMediaAdmin.php:542
173
+ msgid "Total Videos"
174
  msgstr ""
175
 
176
+ #: app/admin/RTMediaAdmin.php:543
177
+ msgid "Sent of regenerate thumbails"
178
  msgstr ""
179
 
180
+ #: app/admin/RTMediaAdmin.php:544
181
+ msgid "Fail to regenerate thumbails"
182
  msgstr ""
183
 
184
+ #: app/admin/RTMediaAdmin.php:586
185
+ msgid "Regenerate Video Thumbnails Done"
186
  msgstr ""
187
 
188
+ #: app/admin/RTMediaAdmin.php:621
189
+ #, php-format
190
+ msgid ""
191
+ "You have total %s videos without thumbnails. Click <a href='%s'> here </a> "
192
+ "to generate thumbnails. <a href='#' "
193
+ "onclick='rtmedia_hide_video_thumb_notice()' style='float:right'>Hide</a>"
194
  msgstr ""
195
 
196
+ #: app/admin/RTMediaAdmin.php:672
197
+ msgid "not a video ..."
 
 
 
198
  msgstr ""
199
 
200
+ #: app/admin/RTMediaAdmin.php:758
201
+ msgid "Empowering The Web With WordPress"
202
  msgstr ""
203
 
204
+ #: app/admin/RTMediaAdmin.php:788
205
+ msgid "Save Settings"
206
  msgstr ""
207
 
208
+ #: app/admin/RTMediaAdmin.php:950 app/admin/RTMediaAdmin.php:951
209
+ msgid "Display"
210
  msgstr ""
211
 
212
+ #: app/admin/RTMediaAdmin.php:961
213
+ msgid "rtMedia BuddyPress"
214
  msgstr ""
215
 
216
+ #: app/admin/RTMediaAdmin.php:962
217
+ msgid "BuddyPress"
218
  msgstr ""
219
 
220
+ #: app/admin/RTMediaAdmin.php:970
221
+ msgid "rtMedia Types"
222
  msgstr ""
223
 
224
+ #: app/admin/RTMediaAdmin.php:971
225
+ msgid "Types"
226
  msgstr ""
227
 
228
+ #: app/admin/RTMediaAdmin.php:978
229
+ msgid "rtMedia Sizes"
 
230
  msgstr ""
231
 
232
+ #: app/admin/RTMediaAdmin.php:979
233
+ msgid "Image Sizes"
234
  msgstr ""
235
 
236
+ #: app/admin/RTMediaAdmin.php:986
237
+ msgid "rtMedia Privacy"
 
 
 
238
  msgstr ""
239
 
240
+ #: app/admin/RTMediaAdmin.php:987
241
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:268
242
+ msgid "Privacy"
243
  msgstr ""
244
 
245
+ #: app/admin/RTMediaAdmin.php:993
246
+ msgid "rtMedia Custom CSS"
247
  msgstr ""
248
 
249
+ #: app/admin/RTMediaAdmin.php:994
250
+ msgid "Custom CSS"
251
  msgstr ""
252
 
253
+ #: app/admin/RTMediaAdmin.php:1003 app/admin/RTMediaAdmin.php:1004
254
+ msgid "Other Settings"
255
  msgstr ""
256
 
257
+ #: app/admin/RTMediaAdmin.php:1095
258
+ #, php-format
259
+ msgid "I use @buddypressmedia http://rt.cx/rtmedia on %s"
260
  msgstr ""
261
 
262
+ #: app/admin/RTMediaAdmin.php:1099
263
+ msgid "Post to Twitter Now"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgstr ""
265
 
266
+ #: app/admin/RTMediaAdmin.php:1099
267
+ msgid "Post to Twitter"
 
268
  msgstr ""
269
 
270
+ #: app/admin/RTMediaAdmin.php:1100
271
+ msgid "Share on Facebook Now"
 
272
  msgstr ""
273
 
274
+ #: app/admin/RTMediaAdmin.php:1100
275
+ msgid "Share on Facebook"
 
 
276
  msgstr ""
277
 
278
+ #: app/admin/RTMediaAdmin.php:1101
279
+ msgid "Rate rtMedia on Wordpress.org"
280
  msgstr ""
281
 
282
+ #: app/admin/RTMediaAdmin.php:1101
283
+ msgid "Rate on Wordpress.org"
 
284
  msgstr ""
285
 
286
+ #: app/admin/RTMediaAdmin.php:1102
287
+ msgid "Subscribe to our feeds"
 
288
  msgstr ""
289
 
290
+ #: app/admin/RTMediaAdmin.php:1102
291
+ msgid "Subscribe to our Feeds"
292
  msgstr ""
293
 
294
+ #: app/admin/RTMediaAdmin.php:1103
295
+ msgid "Add link to footer"
296
  msgstr ""
297
 
298
+ #: app/admin/RTMediaAdmin.php:1109
299
+ msgid "Spread the Word"
 
300
  msgstr ""
301
 
302
+ #: app/admin/RTMediaAdmin.php:1141 app/admin/RTMediaAdmin.php:1144
303
+ msgid "Subscribe"
 
 
304
  msgstr ""
305
 
306
+ #: app/admin/RTMediaAdmin.php:1166
307
+ msgid "Thank you for your time."
308
  msgstr ""
309
 
310
+ #: app/admin/RTMediaAdmin.php:1178
311
+ msgid "Premium Add-ons"
 
312
  msgstr ""
313
 
314
+ #: app/admin/RTMediaAdmin.php:1192
315
+ #, php-format
316
+ msgid ""
317
+ "You have images enabled on rtMedia but your network allowed filetypes does "
318
+ "not allow uploading of %s. Click <a href=\"%s\">here</a> to change your "
319
+ "settings manually."
320
  msgstr ""
321
 
322
+ #: app/admin/RTMediaAdmin.php:1193 app/admin/RTMediaAdmin.php:1204
323
+ #: app/admin/RTMediaAdmin.php:1213
324
+ msgid "Recommended"
325
  msgstr ""
326
 
327
+ #: app/admin/RTMediaAdmin.php:1193 app/admin/RTMediaAdmin.php:1204
328
+ #: app/admin/RTMediaAdmin.php:1213
329
+ msgid "Update Network Settings Automatically"
330
  msgstr ""
331
 
332
+ #: app/admin/RTMediaAdmin.php:1203
333
+ #, php-format
334
+ msgid ""
335
+ "You have video enabled on BuddyPress Media but your network allowed "
336
+ "filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to "
337
+ "change your settings manually."
338
  msgstr ""
339
 
340
+ #: app/admin/RTMediaAdmin.php:1212
341
+ #, php-format
342
+ msgid ""
343
+ "You have audio enabled on BuddyPress Media but your network allowed "
344
+ "filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to "
345
+ "change your settings manually."
346
  msgstr ""
347
 
348
+ #: app/admin/RTMediaAdmin.php:1227
349
+ msgid "Network settings updated successfully."
350
  msgstr ""
351
 
352
+ #: app/admin/RTMediaAdmin.php:1330
353
+ msgid "Video is sent to generate thumbnails."
354
  msgstr ""
355
 
356
+ #: app/admin/RTMediaAdmin.php:1333
357
+ msgid "Video can't be sent to generate thumbnails."
358
  msgstr ""
359
 
360
+ #: app/admin/RTMediaAdmin.php:1415
361
  msgid ""
362
+ "rtMedia just updated to Foundation 5. Please update rtMedia template files "
363
+ "if you have overridden the default rtMedia templates in your theme."
 
 
 
 
364
  msgstr ""
365
 
366
+ #: app/admin/RTMediaAdmin.php:1415
367
+ #: app/importers/RTMediaMediaSizeImporter.php:52
368
+ #: app/importers/RTMediaMigration.php:60
369
+ msgid "Hide"
370
  msgstr ""
371
 
372
+ #: app/admin/RTMediaFormHandler.php:57 app/admin/RTMediaFormHandler.php:88
373
+ #: app/admin/RTMediaFormHandler.php:157 app/admin/RTMediaFormHandler.php:182
374
+ msgid "Please provide \"value\" in the argument."
375
  msgstr ""
376
 
377
+ #: app/admin/RTMediaFormHandler.php:121
378
+ msgid "Need to specify atleast to radios else use a checkbox instead"
379
  msgstr ""
380
 
381
+ #: app/admin/RTMediaFormHandler.php:209
382
+ msgid "Allow user to comment on uploaded media"
383
  msgstr ""
384
 
385
+ #: app/admin/RTMediaFormHandler.php:214
386
  msgid ""
387
+ "This will display comment form and comment listing on single media pages as "
388
+ "well as inside lightbox (if lightbox is enabled)."
389
  msgstr ""
390
 
391
+ #: app/admin/RTMediaFormHandler.php:219
392
+ msgid "Use lightbox to display media"
393
  msgstr ""
394
 
395
+ #: app/admin/RTMediaFormHandler.php:224
396
+ msgid "View single media in facebook style lightbox."
 
 
397
  msgstr ""
398
 
399
+ #: app/admin/RTMediaFormHandler.php:229
400
+ msgid "Number of media per page"
401
  msgstr ""
402
 
403
+ #: app/admin/RTMediaFormHandler.php:235
404
+ msgid "Number of media you want to show per page on front end."
 
 
405
  msgstr ""
406
 
407
+ #: app/admin/RTMediaFormHandler.php:294
408
+ msgid "Allow usage data tracking"
409
  msgstr ""
410
 
411
+ #: app/admin/RTMediaFormHandler.php:299
412
  msgid ""
413
+ "You can help rtMedia team learn what themes and plugins you are using to "
414
+ "make rtMedia better compatible with your sites. No private information about "
415
+ "your setup will be sent during tracking."
416
  msgstr ""
417
 
418
+ #: app/admin/RTMediaFormHandler.php:303
419
+ msgid "Admin bar menu intergation"
420
  msgstr ""
421
 
422
+ #: app/admin/RTMediaFormHandler.php:308
423
  msgid ""
424
+ "Add rtMedia menu to WordPress admin bar for easy access to settings and "
425
+ "moderation page (if enabled)."
426
  msgstr ""
427
 
428
+ #: app/admin/RTMediaFormHandler.php:313
429
+ msgid "Add a link to rtMedia in footer"
430
  msgstr ""
431
 
432
+ #: app/admin/RTMediaFormHandler.php:318
433
+ msgid "Help us to promote rtMedia."
 
 
434
  msgstr ""
435
 
436
+ #: app/admin/RTMediaFormHandler.php:323
437
+ msgid "Also add my affiliate-id to rtMedia footer link"
438
  msgstr ""
439
 
440
+ #: app/admin/RTMediaFormHandler.php:328
441
  msgid ""
442
+ "Add your affiliate-id along with footer link and get benefited from our "
443
+ "affiliation program."
 
 
 
 
444
  msgstr ""
445
 
446
+ #: app/admin/RTMediaFormHandler.php:331
447
  msgid ""
448
+ "You can signup for rtMedia affiliate program from <a href=\"https://rtcamp."
449
+ "com/affiliates\">here</a>"
450
  msgstr ""
451
 
452
+ #: app/admin/RTMediaFormHandler.php:334
453
+ msgid "Enable JSON API"
454
  msgstr ""
455
 
456
+ #: app/admin/RTMediaFormHandler.php:339
457
  msgid ""
458
+ "This will allow handling API requests for rtMedia sent through any mobile "
459
+ "app."
 
 
 
 
460
  msgstr ""
461
 
462
+ #: app/admin/RTMediaFormHandler.php:342
463
  msgid ""
464
+ "You can refer API document from <a href=\"https://rtcamp.com/rtmedia/docs/"
465
+ "developer/json-api/\">here</a>"
466
  msgstr ""
467
 
468
+ #: app/admin/RTMediaFormHandler.php:459 app/helper/RTMediaSettings.php:232
469
+ msgid "Media Type"
470
  msgstr ""
471
 
472
+ #: app/admin/RTMediaFormHandler.php:460
473
+ msgid "Allows you to upload a particular media type on your post."
 
 
474
  msgstr ""
475
 
476
+ #: app/admin/RTMediaFormHandler.php:460
477
+ msgid "Allow Upload"
478
  msgstr ""
479
 
480
+ #: app/admin/RTMediaFormHandler.php:461
481
+ msgid "Put a specific media as a featured content on the post."
 
482
  msgstr ""
483
 
484
+ #: app/admin/RTMediaFormHandler.php:461
485
+ msgid "Set Featured"
486
  msgstr ""
487
 
488
+ #: app/admin/RTMediaFormHandler.php:499
489
+ msgid "File Extensions"
490
  msgstr ""
491
 
492
+ #: app/admin/RTMediaFormHandler.php:546
493
+ msgid "Category"
494
  msgstr ""
495
 
496
+ #: app/admin/RTMediaFormHandler.php:547
497
+ msgid "Entity"
498
  msgstr ""
499
 
500
+ #: app/admin/RTMediaFormHandler.php:548
501
+ msgid "Width"
502
  msgstr ""
503
 
504
+ #: app/admin/RTMediaFormHandler.php:548
505
+ msgid "Height"
506
  msgstr ""
507
 
508
+ #: app/admin/RTMediaFormHandler.php:548
509
+ msgid "Crop"
510
  msgstr ""
511
 
512
+ #: app/admin/RTMediaFormHandler.php:585
513
+ msgid "Number of thumbnails to generate on video upload"
514
  msgstr ""
515
 
516
+ #: app/admin/RTMediaFormHandler.php:591
517
+ msgid ""
518
+ " If you choose more than 1 thumbnail, your users will be able to change "
519
+ "thumbnail by going to video \"edit\" section."
520
  msgstr ""
521
 
522
+ #: app/admin/RTMediaFormHandler.php:629
523
+ msgid ""
524
+ "If you want to add some custom CSS code to the plugin and don't want to "
525
+ "modify any files, then it's a good place to enter your code at this field."
526
  msgstr ""
527
 
528
+ #: app/admin/RTMediaFormHandler.php:651
529
+ msgid "rtMedia default styles"
530
  msgstr ""
531
 
532
+ #: app/admin/RTMediaFormHandler.php:657
533
+ msgid ""
534
+ "Load default rtMedia styles. You need to write your own style for rtMedia if "
535
+ "you disable it."
536
  msgstr ""
537
 
538
+ #: app/admin/RTMediaFormHandler.php:661
539
+ msgid "Paste your CSS code"
540
  msgstr ""
541
 
542
+ #: app/admin/RTMediaFormHandler.php:667
543
+ msgid "Custom rtMedia CSS container"
544
  msgstr ""
545
 
546
+ #: app/admin/RTMediaFormHandler.php:681
547
+ msgid "Enable privacy"
 
548
  msgstr ""
549
 
550
+ #: app/admin/RTMediaFormHandler.php:687
551
+ msgid "Enable privacy in rtMedia"
552
  msgstr ""
553
 
554
+ #: app/admin/RTMediaFormHandler.php:691
555
+ msgid "Default privacy"
556
  msgstr ""
557
 
558
+ #: app/admin/RTMediaFormHandler.php:697
559
+ msgid "Set default privacy for media"
560
  msgstr ""
561
 
562
+ #: app/admin/RTMediaFormHandler.php:701
563
+ msgid "Allow users to set privacy for their content"
564
  msgstr ""
565
 
566
+ #: app/admin/RTMediaFormHandler.php:706
567
+ msgid ""
568
+ "If you choose this, user will be able to change privacy of their own uploads."
569
  msgstr ""
570
 
571
+ #: app/admin/RTMediaFormHandler.php:708
572
+ msgid "For group uploads, BuddyPress groups privacy is used."
573
  msgstr ""
574
 
575
+ #: app/admin/RTMediaFormHandler.php:765
576
+ msgid "Enable media in profile"
577
  msgstr ""
578
 
579
+ #: app/admin/RTMediaFormHandler.php:770
580
+ msgid "Enable Media on BuddyPress Profile"
581
  msgstr ""
582
 
583
+ #: app/admin/RTMediaFormHandler.php:774
584
+ msgid "Enable media in group"
585
  msgstr ""
586
 
587
+ #: app/admin/RTMediaFormHandler.php:779
588
+ msgid "Enable Media on BuddyPress Groups"
589
  msgstr ""
590
 
591
+ #: app/admin/RTMediaFormHandler.php:783
592
+ msgid "Allow upload from activity stream"
593
  msgstr ""
594
 
595
+ #: app/admin/RTMediaFormHandler.php:788
596
+ msgid "Allow upload using status update box present on activity stream page"
597
  msgstr ""
598
 
599
+ #: app/admin/RTMediaFormHandler.php:793
600
+ msgid "Number of media items to show in activity stream"
601
  msgstr ""
602
 
603
+ #: app/admin/RTMediaFormHandler.php:798
604
  msgid ""
605
+ "With bulk uploads activity stream may get flooded. You can control maximum "
606
+ "number of medias/files per activity. This limit will not affect the actual "
607
+ "number of uplaods. Only display. <em>0</em> means unlimited."
608
  msgstr ""
609
 
610
+ #: app/admin/RTMediaFormHandler.php:839
611
+ msgid "Organize media into albums"
 
612
  msgstr ""
613
 
614
+ #: app/admin/RTMediaFormHandler.php:845
615
  msgid ""
616
+ "This will add 'album' tab to BuddyPress profile and group depending on "
617
+ "^above^ settings."
618
  msgstr ""
619
 
620
+ #: app/helper/rtFormInvalidArgumentsException.php:21
621
  #, php-format
622
+ msgid ""
623
+ "Error on line %s in %s : <b>The method expects an array in arguments for %s "
624
+ "provided.</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
625
  msgstr ""
626
 
627
+ #: app/helper/RTMediaAddon.php:51 app/helper/RTMediaAddon.php:52
628
+ msgid "Audio/Video Encoding"
629
  msgstr ""
630
 
631
+ #: app/helper/RTMediaAddon.php:57 app/helper/RTMediaAddon.php:58
632
+ msgid "Plugins"
633
  msgstr ""
634
 
635
+ #: app/helper/RTMediaAddon.php:117
636
+ msgid "rtMedia Photo Tagging"
637
  msgstr ""
638
 
639
+ #: app/helper/RTMediaAddon.php:120
640
+ msgid ""
641
+ "rtMedia Photo Tagging add-on enables tagging on photos uploaded using "
642
+ "BuddyPress Media."
643
  msgstr ""
644
 
645
+ #: app/helper/RTMediaAddon.php:121 app/helper/RTMediaAddon.php:131
646
+ #: app/importers/BPMediaAlbumimporter.php:177
647
+ msgid "Important"
648
  msgstr ""
649
 
650
+ #: app/helper/RTMediaAddon.php:121 app/helper/RTMediaAddon.php:131
651
+ #: app/importers/BPMediaAlbumimporter.php:177
652
+ msgid ""
653
+ "You need to have ImageMagick installed on your server for this addon to work."
654
  msgstr ""
655
 
656
+ #: app/helper/RTMediaAddon.php:127
657
+ msgid "rtMedia Instagram"
658
  msgstr ""
659
+
660
+ #: app/helper/RTMediaAddon.php:130
661
+ msgid ""
662
+ "rtMedia Instagram adds Instagram like filters to images uploaded with "
663
+ "rtMedia."
664
  msgstr ""
665
 
666
+ #: app/helper/RTMediaAddon.php:137
667
+ msgid "rtMedia Kaltura Add-on"
668
  msgstr ""
669
 
670
+ #: app/helper/RTMediaAddon.php:140
671
+ msgid "Add support for more video formats using Kaltura video solution."
672
  msgstr ""
673
 
674
+ #: app/helper/RTMediaAddon.php:141
675
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
676
  msgstr ""
677
 
678
+ #: app/helper/RTMediaAddon.php:147
679
+ msgid "rtMedia FFMPEG Add-on"
680
  msgstr ""
681
 
682
+ #: app/helper/RTMediaAddon.php:150
683
+ msgid ""
684
+ "Add supports for more audio & video formats using open-source media-node."
685
  msgstr ""
686
 
687
+ #: app/helper/RTMediaAddon.php:151
688
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
689
  msgstr ""
690
 
691
+ #: app/helper/RTMediaAddon.php:163
692
+ msgid "rtMedia Addons for Photos"
693
  msgstr ""
694
 
695
+ #: app/helper/RTMediaAddon.php:167
696
+ msgid "rtMedia Addons for Audio/Video"
697
  msgstr ""
698
 
699
+ #: app/helper/RTMediaAddon.php:181
700
+ msgid "Coming Soon !!"
701
  msgstr ""
702
 
703
+ #: app/helper/RTMediaAddon.php:220 app/importers/BPMediaAlbumimporter.php:181
704
+ msgid "Buy Now"
705
  msgstr ""
706
 
707
+ #: app/helper/RTMediaAddon.php:221 app/importers/BPMediaAlbumimporter.php:182
708
+ msgid "Live Demo"
 
709
  msgstr ""
710
 
711
+ #: app/helper/RTMediaAdminWidget.php:29
712
+ msgid "Argument missing. id is required."
 
713
  msgstr ""
714
 
715
+ #: app/helper/RTMediaFeed.php:45
716
+ msgid "No items"
717
  msgstr ""
718
 
719
+ #: app/helper/RTMediaFeed.php:51
720
+ msgid "Posted "
721
  msgstr ""
722
 
723
+ #: app/helper/RTMediaSettings.php:104
724
+ msgid "Max Video thumbnail size is "
725
  msgstr ""
726
 
727
+ #: app/helper/RTMediaSettings.php:132
728
+ msgid "BuddyPress Media Addons for Photos"
729
  msgstr ""
730
 
731
+ #: app/helper/RTMediaSettings.php:136
732
+ msgid "rtMedia Themes"
733
  msgstr ""
734
 
735
+ #: app/helper/RTMediaSettings.php:193
736
+ #, php-format
737
+ msgid ""
738
+ "Currently your network allows uploading of the following file types. You can "
739
+ "change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
740
  msgstr ""
741
 
742
+ #: app/helper/RTMediaSettings.php:211 app/helper/RTMediaSettings.php:213
743
+ msgid "Recounting of media files done successfully"
744
  msgstr ""
745
 
746
+ #: app/helper/RTMediaSettings.php:213
747
+ msgid "Recount Success"
748
  msgstr ""
749
 
750
+ #: app/helper/RTMediaSettings.php:216 app/helper/RTMediaSettings.php:218
751
+ msgid "Recounting Failed"
752
  msgstr ""
753
 
754
+ #: app/helper/RTMediaSettings.php:218
755
+ msgid "Recount Fail"
 
756
  msgstr ""
757
 
758
+ #: app/helper/RTMediaSettings.php:230 app/helper/RTMediaSettings.php:232
759
+ msgid "Atleast one Media Type Must be selected"
 
760
  msgstr ""
761
 
762
+ #: app/helper/RTMediaSettings.php:239 app/helper/RTMediaSettings.php:241
763
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
764
  msgstr ""
765
 
766
+ #: app/helper/RTMediaSettings.php:241
767
+ msgid "Default Count"
768
  msgstr ""
769
 
770
+ #: app/helper/RTMediaSettings.php:245
771
+ msgid "Settings saved."
772
  msgstr ""
773
 
774
+ #: app/helper/RTMediaSettings.php:260
775
+ #, php-format
776
+ msgid ""
777
+ "If you make changes to width, height or crop settings, you must use \"<a "
778
+ "href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
779
  msgstr ""
780
 
781
+ #: app/helper/RTMediaSettings.php:280
782
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
783
  msgstr ""
784
 
785
+ #: app/helper/RTMediaSettings.php:281
786
+ msgid "Update Database"
787
  msgstr ""
788
 
789
+ #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:367
790
+ msgid ""
791
+ "If your site has some issues due to BuddyPress Media and you want one on one "
792
+ "support then you can create a support topic on the <a target=\"_blank\" href="
793
+ "\"http://rtcamp.com/groups/buddypress-media/forum/?"
794
+ "utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media"
795
+ "\">rtCamp Support Forum</a>."
796
  msgstr ""
797
 
798
+ #: app/helper/RTMediaSettings.php:290 app/helper/RTMediaSupport.php:368
799
+ msgid ""
800
+ "If you have any suggestions, enhancements or bug reports, then you can open "
801
+ "a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/"
802
+ "buddypress-media/issues/new\">GitHub</a>."
803
  msgstr ""
804
 
805
+ #: app/helper/RTMediaSupport.php:40 app/helper/RTMediaSupport.php:41
806
+ #: app/helper/RTMediaSupport.php:128
807
+ msgid "Premium Support"
808
  msgstr ""
809
 
810
+ #: app/helper/RTMediaSupport.php:46 app/helper/RTMediaSupport.php:47
811
+ #: app/helper/RTMediaSupport.php:522
812
+ msgid "Debug Info"
813
  msgstr ""
814
 
815
+ #: app/helper/RTMediaSupport.php:53 app/helper/RTMediaSupport.php:54
816
+ #: app/importers/RTMediaMigration.php:78
817
+ msgid "Migration"
 
 
818
  msgstr ""
819
 
820
+ #: app/helper/RTMediaSupport.php:126
821
+ msgid "Service"
822
  msgstr ""
823
 
824
+ #: app/helper/RTMediaSupport.php:129
825
+ msgid "Bug Report"
826
  msgstr ""
827
 
828
+ #: app/helper/RTMediaSupport.php:130
829
+ msgid "New Feature"
 
 
 
830
  msgstr ""
831
 
832
+ #: app/helper/RTMediaSupport.php:210
833
+ msgid "by"
834
  msgstr ""
835
 
836
+ #: app/helper/RTMediaSupport.php:210
837
+ msgid "version"
 
 
838
  msgstr ""
839
 
840
+ #: app/helper/RTMediaSupport.php:325
841
+ msgid "There is no media found to migrate."
 
842
  msgstr ""
843
 
844
+ #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:129
845
+ #: app/helper/RTMediaThemes.php:138
846
+ msgid "Click"
847
  msgstr ""
848
 
849
+ #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:129
850
+ #: app/helper/RTMediaThemes.php:138
851
+ msgid "here"
852
  msgstr ""
853
 
854
+ #: app/helper/RTMediaSupport.php:331
855
+ msgid "here to migrate media from rtMedia 2.x to rtMedia 3.0+."
 
856
  msgstr ""
857
 
858
+ #: app/helper/RTMediaSupport.php:355
859
+ msgid "Submit a Bug Report"
 
860
  msgstr ""
861
 
862
+ #: app/helper/RTMediaSupport.php:358
863
+ msgid "Submit a New Feature Request"
 
864
  msgstr ""
865
 
866
+ #: app/helper/RTMediaSupport.php:361
867
+ msgid "Submit a Premium Support Request"
868
  msgstr ""
869
 
870
+ #: app/helper/RTMediaSupport.php:378
871
+ msgid "Name"
872
  msgstr ""
873
 
874
+ #: app/helper/RTMediaSupport.php:381
875
+ msgid "Email"
 
 
 
876
  msgstr ""
877
 
878
+ #: app/helper/RTMediaSupport.php:384
879
+ msgid "Website"
880
  msgstr ""
881
 
882
+ #: app/helper/RTMediaSupport.php:387
883
+ msgid "Phone"
 
884
  msgstr ""
885
 
886
+ #: app/helper/RTMediaSupport.php:390
887
+ msgid "Subject"
888
  msgstr ""
889
 
890
+ #: app/helper/RTMediaSupport.php:393 templates/media/album-single-edit.php:16
891
+ #: templates/media/media-single-edit.php:19
892
+ msgid "Details"
893
  msgstr ""
894
 
895
+ #: app/helper/RTMediaSupport.php:404
896
+ msgid "Additional Information"
897
  msgstr ""
898
 
899
+ #: app/helper/RTMediaSupport.php:409
900
+ msgid "Your WP Admin Login:"
901
  msgstr ""
902
 
903
+ #: app/helper/RTMediaSupport.php:412
904
+ msgid "Your WP Admin password:"
905
  msgstr ""
906
 
907
+ #: app/helper/RTMediaSupport.php:415
908
+ msgid "Your SSH / FTP host:"
909
  msgstr ""
910
 
911
+ #: app/helper/RTMediaSupport.php:418
912
+ msgid "Your SSH / FTP login:"
913
  msgstr ""
914
 
915
+ #: app/helper/RTMediaSupport.php:421
916
+ msgid "Your SSH / FTP password:"
917
  msgstr ""
918
 
919
+ #: app/helper/RTMediaSupport.php:452
920
+ msgid "rtMedia Premium Support Request from"
921
  msgstr ""
922
 
923
+ #: app/helper/RTMediaSupport.php:455
924
+ msgid "rtMedia New Feature Request from"
925
  msgstr ""
926
 
927
+ #: app/helper/RTMediaSupport.php:458
928
+ msgid "rtMedia Bug Report from"
929
  msgstr ""
930
 
931
+ #: app/helper/RTMediaSupport.php:461
932
+ msgid "rtMedia Contact from"
933
  msgstr ""
934
 
935
+ #: app/helper/RTMediaSupport.php:545
936
+ msgid "Thank you for your Feedback/Suggestion."
937
  msgstr ""
938
 
939
+ #: app/helper/RTMediaSupport.php:547
940
+ msgid "Thank you for posting your support request."
941
  msgstr ""
942
 
943
+ #: app/helper/RTMediaSupport.php:548
944
+ msgid "We will get back to you shortly."
945
  msgstr ""
946
 
947
+ #: app/helper/RTMediaSupport.php:553
948
+ msgid "Your server failed to send an email."
 
949
  msgstr ""
950
 
951
+ #: app/helper/RTMediaSupport.php:554
952
+ msgid "Kindly contact your server support to fix this."
953
  msgstr ""
954
 
955
+ #: app/helper/RTMediaSupport.php:555
956
+ #, php-format
957
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
958
  msgstr ""
959
 
960
+ #: app/helper/RTMediaThemes.php:41 app/helper/RTMediaThemes.php:42
961
+ msgid "rtMedia Themes By rtCamp"
962
  msgstr ""
963
 
964
+ #: app/helper/RTMediaThemes.php:47 app/helper/RTMediaThemes.php:48
965
+ msgid "3rd Party Themes"
 
966
  msgstr ""
967
 
968
+ #: app/helper/RTMediaThemes.php:120
969
+ msgid ""
970
+ "These are the third party themes. For any issues or queries regarding these "
971
+ "themes please contact theme developers."
972
  msgstr ""
973
 
974
+ #: app/helper/RTMediaThemes.php:128
975
+ msgid ""
976
+ "SweetDate is a unique, clean and modern Premium Wordpress theme. It is "
977
+ "perfect for a dating or community website but can be used as well for any "
978
+ "other domain. They added all the things you need to create a perfect "
979
+ "community system."
980
  msgstr ""
981
 
982
+ #: app/helper/RTMediaThemes.php:129 app/helper/RTMediaThemes.php:138
983
+ msgid "for preview."
 
984
  msgstr ""
985
 
986
+ #: app/helper/RTMediaThemes.php:137
987
  msgid ""
988
+ "You no longer need to be a professional developer or designer to create an "
989
+ "awesome website. Let your imagination run wild and create the site of your "
990
+ "dreams. KLEO has all the tools to get you started."
991
  msgstr ""
992
 
993
+ #: app/helper/RTMediaThemes.php:144
994
+ msgid "Are you a developer?"
995
  msgstr ""
996
 
997
+ #: app/helper/RTMediaThemes.php:145
998
+ msgid ""
999
+ "If you have developed a rtMedia compatible theme and would like it to list "
1000
+ "here, please email us at"
1001
  msgstr ""
1002
 
1003
+ #: app/helper/RTMediaThemes.php:145
1004
+ msgid "product@rtcamp.com"
1005
  msgstr ""
1006
 
1007
+ #: app/helper/RTMediaUploadException.php:41
1008
+ msgid ""
1009
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
1010
+ "the HTML form"
1011
  msgstr ""
1012
 
1013
+ #: app/helper/RTMediaUploadException.php:44
1014
+ msgid "No file was uploaded"
1015
  msgstr ""
1016
 
1017
+ #: app/helper/RTMediaUploadException.php:48
1018
+ msgid "Uploade failed due to internal server error."
1019
  msgstr ""
1020
 
1021
+ #: app/helper/RTMediaUploadException.php:51
1022
+ msgid "File type not allowed."
1023
  msgstr ""
1024
 
1025
+ #: app/helper/RTMediaUploadException.php:55
1026
+ msgid "Invalid Context for upload."
1027
+ msgstr ""
1028
+
1029
+ #: app/helper/RTMediaUploadException.php:58
1030
+ msgid "Unknown file upload error."
1031
  msgstr ""
1032
 
1033
  #: app/importers/BPMediaAlbumimporter.php:72
1062
  msgid "Users"
1063
  msgstr ""
1064
 
1065
+ #: app/importers/BPMediaAlbumimporter.php:91 app/main/RTMedia.php:514
1066
+ msgid "Media"
1067
+ msgstr ""
1068
+
1069
  #: app/importers/BPMediaAlbumimporter.php:111
1070
  msgid "Comments"
1071
  msgstr ""
1138
  "with BuddyPress Media."
1139
  msgstr ""
1140
 
1141
+ #: app/importers/BPMediaAlbumimporter.php:187
1142
+ msgid ""
1143
+ "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you "
1144
+ "want an importer for?"
1145
  msgstr ""
1146
 
1147
+ #: app/importers/BPMediaAlbumimporter.php:188
1148
+ #, php-format
1149
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
 
1150
  msgstr ""
1151
 
1152
+ #: app/importers/RTMediaMediaSizeImporter.php:24
1153
+ msgid "Media Size Import"
1154
  msgstr ""
1155
 
1156
+ #: app/importers/RTMediaMigration.php:60
1157
+ msgid "Please Migrate your Database"
1158
  msgstr ""
1159
 
1160
+ #: app/importers/RTMediaMigration.php:60
1161
+ msgid "Click Here"
1162
+ msgstr ""
1163
+
1164
+ #: app/importers/RTMediaMigration.php:362
1165
  msgid ""
1166
+ "Please Backup your <strong>DATABASE</strong> and <strong>UPLOAD</strong> "
1167
+ "folder before Migration."
1168
  msgstr ""
1169
 
1170
+ #: app/importers/RTMediaMigration.php:368
1171
+ msgid "rtMedia Migration"
 
1172
  msgstr ""
1173
 
1174
+ #: app/importers/RTMediaMigration.php:369
1175
+ msgid "It will migrate following things"
 
1176
  msgstr ""
1177
 
1178
+ #: app/importers/RTMediaMigration.php:437
1179
+ msgid "Error During Migration, Please Refresh Page then try again"
1180
+ msgstr ""
1181
+
1182
+ #: app/importers/RTMediaMigration.php:1002
1183
+ msgid " day"
1184
+ msgstr ""
1185
+
1186
+ #: app/importers/RTMediaMigration.php:1006
1187
+ msgid " hour"
1188
+ msgstr ""
1189
+
1190
+ #: app/importers/RTMediaMigration.php:1010
1191
+ msgid " minute"
1192
+ msgstr ""
1193
+
1194
+ #: app/importers/RTMediaMigration.php:1014
1195
+ msgid " second"
1196
+ msgstr ""
1197
+
1198
+ #: app/importers/RTMediaMigration.php:1020
1199
+ msgid "No time remaining."
1200
+ msgstr ""
1201
+
1202
+ #: app/main/RTMedia.php:254
1203
+ msgid "Photo"
1204
+ msgstr ""
1205
+
1206
+ #: app/main/RTMedia.php:255
1207
+ msgid "Photos"
1208
+ msgstr ""
1209
+
1210
+ #: app/main/RTMedia.php:263
1211
+ msgid "Video"
1212
+ msgstr ""
1213
+
1214
+ #: app/main/RTMedia.php:264
1215
+ msgid "Videos"
1216
+ msgstr ""
1217
+
1218
+ #: app/main/RTMedia.php:272 app/main/RTMedia.php:273
1219
+ msgid "Music"
1220
+ msgstr ""
1221
+
1222
+ #: app/main/RTMedia.php:360
1223
+ msgid "<strong>Private</strong> - Visible only to the user"
1224
+ msgstr ""
1225
+
1226
+ #: app/main/RTMedia.php:361
1227
+ msgid "<strong>Friends</strong> - Visible to user's friends"
1228
+ msgstr ""
1229
+
1230
+ #: app/main/RTMedia.php:362
1231
+ msgid "<strong>Logged in Users</strong> - Visible to registered users"
1232
+ msgstr ""
1233
+
1234
+ #: app/main/RTMedia.php:363
1235
+ msgid "<strong>Public</strong> - Visible to the world"
1236
+ msgstr ""
1237
+
1238
+ #: app/main/RTMedia.php:520 app/main/controllers/template/RTMediaNav.php:146
1239
+ msgid "All"
1240
+ msgstr ""
1241
+
1242
+ #: app/main/RTMedia.php:529 app/main/controllers/media/RTMediaAlbum.php:54
1243
+ #: app/main/controllers/template/rt-template-functions.php:1057
1244
+ msgid "Album"
1245
+ msgstr ""
1246
+
1247
+ #: app/main/RTMedia.php:532 app/main/controllers/media/RTMediaAlbum.php:53
1248
+ #: app/main/controllers/media/RTMediaAlbum.php:65
1249
+ #: app/main/controllers/template/RTMediaNav.php:95
1250
+ #: app/main/controllers/template/RTMediaNav.php:167
1251
+ msgid "Albums"
1252
+ msgstr ""
1253
+
1254
+ #: app/main/RTMedia.php:540
1255
+ #: app/main/controllers/template/rt-template-functions.php:1738
1256
+ #: app/main/controllers/template/rt-template-functions.php:1741
1257
+ msgid "Upload"
1258
+ msgstr ""
1259
+
1260
+ #: app/main/RTMedia.php:544
1261
+ msgid "Wall Post"
1262
+ msgstr ""
1263
+
1264
+ #: app/main/RTMedia.php:735
1265
+ msgid "Wall Posts"
1266
  msgstr ""
1267
 
1268
+ #: app/main/RTMedia.php:775
1269
+ msgid ": Can't Create Database table. Please check create table permission."
1270
  msgstr ""
1271
 
1272
+ #: app/main/RTMedia.php:809
1273
+ msgid "Loading media"
 
 
1274
  msgstr ""
1275
 
1276
+ #: app/main/RTMedia.php:810
1277
+ msgid "Please enter some content to post."
1278
  msgstr ""
1279
 
1280
+ #: app/main/RTMedia.php:811
1281
+ msgid "Empty Comment is not allowed."
1282
  msgstr ""
1283
 
1284
+ #: app/main/RTMedia.php:812
1285
+ msgid "Are you sure you want to delete this media?"
1286
  msgstr ""
1287
 
1288
+ #: app/main/RTMedia.php:813
1289
+ msgid "Are you sure you want to delete this comment?"
1290
  msgstr ""
1291
 
1292
+ #: app/main/RTMedia.php:814
1293
+ msgid "Are you sure you want to delete this Album?"
1294
  msgstr ""
1295
 
1296
+ #: app/main/RTMedia.php:815
1297
+ msgid "Drop files here"
 
 
 
1298
  msgstr ""
1299
 
1300
+ #: app/main/RTMedia.php:816
1301
+ msgid "album created successfully."
1302
  msgstr ""
1303
 
1304
+ #: app/main/RTMedia.php:817
1305
+ msgid "Something went wrong. Please try again."
 
 
1306
  msgstr ""
1307
 
1308
+ #: app/main/RTMedia.php:818
1309
+ msgid "Enter an album name."
1310
  msgstr ""
1311
 
1312
+ #: app/main/RTMedia.php:819
1313
+ msgid "Max file Size Limit : "
1314
  msgstr ""
1315
 
1316
+ #: app/main/RTMedia.php:820
1317
+ msgid "Allowed File Formats"
1318
  msgstr ""
1319
 
1320
+ #: app/main/RTMedia.php:821 templates/media/album-single-edit.php:58
1321
+ msgid "Select All Visible"
 
 
1322
  msgstr ""
1323
 
1324
+ #: app/main/RTMedia.php:822
1325
+ msgid "Unselect All Visible"
 
 
1326
  msgstr ""
1327
 
1328
+ #: app/main/RTMedia.php:823
1329
+ msgid "Please select some media."
1330
  msgstr ""
1331
 
1332
+ #: app/main/RTMedia.php:824
1333
+ msgid "Are you sure you want to delete the selected medias?"
 
 
1334
  msgstr ""
1335
 
1336
+ #: app/main/RTMedia.php:825
1337
+ msgid "Are you sure you want to move the selected medias?"
 
 
1338
  msgstr ""
1339
 
1340
+ #: app/main/RTMedia.php:826
1341
+ msgid "Waiting"
1342
  msgstr ""
1343
 
1344
+ #: app/main/RTMedia.php:827
1345
+ msgid "Uploaded"
1346
  msgstr ""
1347
 
1348
+ #: app/main/RTMedia.php:828
1349
+ msgid "Uploading"
1350
  msgstr ""
1351
 
1352
+ #: app/main/RTMedia.php:829
1353
+ msgid "Failed"
1354
  msgstr ""
1355
 
1356
+ #: app/main/RTMedia.php:830
1357
+ msgid "Close"
1358
  msgstr ""
1359
 
1360
+ #: app/main/RTMedia.php:831
1361
+ #: app/main/controllers/template/rt-template-functions.php:591
1362
+ #: app/main/controllers/template/rt-template-functions.php:612
1363
+ msgid "Edit"
1364
  msgstr ""
1365
 
1366
+ #: app/main/RTMedia.php:832
1367
+ #: app/main/controllers/template/rt-template-functions.php:1136
1368
+ #: app/main/controllers/template/rt-template-functions.php:1143
1369
+ #: templates/media/album-single-edit.php:60
1370
+ msgid "Delete"
1371
  msgstr ""
1372
 
1373
+ #: app/main/RTMedia.php:833 templates/media/media-single-edit.php:13
1374
+ msgid "Edit Media"
1375
  msgstr ""
1376
 
1377
+ #: app/main/RTMedia.php:834
1378
+ msgid "Remove from queue"
1379
  msgstr ""
1380
 
1381
+ #: app/main/RTMedia.php:835
1382
+ msgid "Add more files"
1383
  msgstr ""
1384
 
1385
+ #: app/main/RTMedia.php:836
1386
+ msgid "File not supported"
1387
  msgstr ""
1388
 
1389
+ #: app/main/RTMedia.php:837
1390
+ msgid "more"
1391
  msgstr ""
1392
 
1393
+ #: app/main/RTMedia.php:838
1394
+ msgid "less"
 
 
1395
  msgstr ""
1396
 
1397
+ #: app/main/RTMedia.php:839
1398
+ msgid "This media is uploaded. Are you sure you want to delete this media?"
 
 
1399
  msgstr ""
1400
 
1401
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:154
1402
+ msgid "Media Files"
1403
  msgstr ""
1404
 
1405
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:180
1406
+ #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:103
1407
+ #: app/main/controllers/template/rt-template-functions.php:1168
1408
+ msgid "You are not allowed to upload/attach media."
1409
  msgstr ""
1410
 
1411
+ #: app/main/controllers/api/RTMediaJsonApi.php:166
1412
+ msgid "username/password empty"
1413
  msgstr ""
1414
 
1415
+ #: app/main/controllers/api/RTMediaJsonApi.php:169
1416
+ msgid "incorrect username"
1417
  msgstr ""
1418
 
1419
+ #: app/main/controllers/api/RTMediaJsonApi.php:172
1420
+ msgid "incorrect password"
1421
  msgstr ""
1422
 
1423
+ #: app/main/controllers/api/RTMediaJsonApi.php:175
1424
+ msgid "login success"
1425
  msgstr ""
1426
 
1427
+ #: app/main/controllers/api/RTMediaJsonApi.php:221
1428
+ msgid "fields empty"
1429
  msgstr ""
1430
 
1431
+ #: app/main/controllers/api/RTMediaJsonApi.php:224
1432
+ msgid "invalid email"
1433
  msgstr ""
1434
 
1435
+ #: app/main/controllers/api/RTMediaJsonApi.php:227
1436
+ msgid "password do not match"
1437
  msgstr ""
1438
 
1439
+ #: app/main/controllers/api/RTMediaJsonApi.php:230
1440
+ msgid "username already registered"
 
1441
  msgstr ""
1442
 
1443
+ #: app/main/controllers/api/RTMediaJsonApi.php:233
1444
+ msgid "email already exists"
1445
  msgstr ""
1446
 
1447
+ #: app/main/controllers/api/RTMediaJsonApi.php:236
1448
+ msgid "new user created"
1449
  msgstr ""
1450
 
1451
+ #: app/main/controllers/api/RTMediaJsonApi.php:297
1452
+ msgid "email empty"
1453
  msgstr ""
1454
 
1455
+ #: app/main/controllers/api/RTMediaJsonApi.php:300
1456
+ msgid "username/email not registered"
1457
  msgstr ""
1458
 
1459
+ #: app/main/controllers/api/RTMediaJsonApi.php:303
1460
+ msgid "reset link sent"
1461
  msgstr ""
1462
 
1463
+ #: app/main/controllers/api/RTMediaJsonApi.php:335
1464
+ msgid ""
1465
+ "Someone has asked to reset the password for the following site and username."
1466
  msgstr ""
1467
 
1468
+ #: app/main/controllers/api/RTMediaJsonApi.php:337
1469
+ #, php-format
1470
+ msgid "Username: %s"
1471
  msgstr ""
1472
 
1473
+ #: app/main/controllers/api/RTMediaJsonApi.php:338
1474
+ msgid ""
1475
+ "To reset your password visit the following address, otherwise just ignore "
1476
+ "this email and nothing will happen."
1477
  msgstr ""
1478
 
1479
+ #: app/main/controllers/api/RTMediaJsonApi.php:341
1480
+ #, php-format
1481
+ msgid "[%s] Password Reset"
 
 
1482
  msgstr ""
1483
 
1484
+ #: app/main/controllers/api/RTMediaJsonApi.php:356
1485
+ msgid "bp activities"
1486
  msgstr ""
1487
 
1488
+ #: app/main/controllers/api/RTMediaJsonApi.php:359
1489
+ msgid "user activities"
 
 
1490
  msgstr ""
1491
 
1492
+ #: app/main/controllers/api/RTMediaJsonApi.php:389
1493
+ msgid "comment content missing"
1494
  msgstr ""
1495
 
1496
+ #: app/main/controllers/api/RTMediaJsonApi.php:392
1497
+ msgid "comment posted"
1498
  msgstr ""
1499
 
1500
+ #: app/main/controllers/api/RTMediaJsonApi.php:439
1501
+ msgid "unliked media"
1502
  msgstr ""
1503
 
1504
+ #: app/main/controllers/api/RTMediaJsonApi.php:442
1505
+ msgid "liked media"
1506
  msgstr ""
1507
 
1508
+ #: app/main/controllers/api/RTMediaJsonApi.php:526
1509
+ msgid "no comments"
 
 
1510
  msgstr ""
1511
 
1512
+ #: app/main/controllers/api/RTMediaJsonApi.php:529
1513
+ msgid "media comments"
1514
  msgstr ""
1515
 
1516
+ #: app/main/controllers/api/RTMediaJsonApi.php:532
1517
+ msgid "my comments"
1518
  msgstr ""
1519
 
1520
+ #: app/main/controllers/api/RTMediaJsonApi.php:582
1521
+ msgid "no likes"
1522
  msgstr ""
1523
 
1524
+ #: app/main/controllers/api/RTMediaJsonApi.php:585
1525
+ msgid "media likes"
1526
  msgstr ""
1527
 
1528
+ #: app/main/controllers/api/RTMediaJsonApi.php:627
1529
+ msgid "invalid comment/media id"
1530
  msgstr ""
1531
 
1532
+ #: app/main/controllers/api/RTMediaJsonApi.php:630
1533
+ msgid "no comment id"
1534
  msgstr ""
1535
 
1536
+ #: app/main/controllers/api/RTMediaJsonApi.php:633
1537
+ msgid "comment deleted"
1538
  msgstr ""
1539
 
1540
+ #: app/main/controllers/api/RTMediaJsonApi.php:676
1541
+ msgid "no profile found"
1542
  msgstr ""
1543
 
1544
+ #: app/main/controllers/api/RTMediaJsonApi.php:679
1545
+ msgid "profile fields"
1546
  msgstr ""
1547
 
1548
+ #: app/main/controllers/api/RTMediaJsonApi.php:773
1549
+ msgid "follow user id missing"
1550
  msgstr ""
1551
 
1552
+ #: app/main/controllers/api/RTMediaJsonApi.php:776
1553
+ msgid "started following"
1554
  msgstr ""
1555
 
1556
+ #: app/main/controllers/api/RTMediaJsonApi.php:779
1557
+ msgid "already following"
1558
  msgstr ""
1559
 
1560
+ #: app/main/controllers/api/RTMediaJsonApi.php:811
1561
+ msgid "unfollow id missing"
 
1562
  msgstr ""
1563
 
1564
+ #: app/main/controllers/api/RTMediaJsonApi.php:814
1565
+ msgid "stopped following"
 
1566
  msgstr ""
1567
 
1568
+ #: app/main/controllers/api/RTMediaJsonApi.php:817
1569
+ msgid "not following"
 
1570
  msgstr ""
1571
 
1572
+ #: app/main/controllers/api/RTMediaJsonApi.php:849
1573
+ msgid "name/location empty"
 
 
1574
  msgstr ""
1575
 
1576
+ #: app/main/controllers/api/RTMediaJsonApi.php:852
1577
+ msgid "profile updated"
 
1578
  msgstr ""
1579
 
1580
+ #: app/main/controllers/api/RTMediaJsonApi.php:878
1581
+ #: app/main/controllers/api/RTMediaJsonApi.php:905
1582
+ msgid "no file"
1583
  msgstr ""
1584
 
1585
+ #: app/main/controllers/api/RTMediaJsonApi.php:881
1586
+ #: app/main/controllers/api/RTMediaJsonApi.php:917
1587
+ msgid "upload failed, check size and file type"
1588
  msgstr ""
1589
 
1590
+ #: app/main/controllers/api/RTMediaJsonApi.php:884
1591
+ msgid "avatar updated"
1592
  msgstr ""
1593
 
1594
+ #: app/main/controllers/api/RTMediaJsonApi.php:908
1595
+ msgid "invalid file string"
1596
  msgstr ""
1597
 
1598
+ #: app/main/controllers/api/RTMediaJsonApi.php:911
1599
+ msgid "image type missing"
 
 
1600
  msgstr ""
1601
 
1602
+ #: app/main/controllers/api/RTMediaJsonApi.php:914
1603
+ msgid "no title"
1604
  msgstr ""
1605
 
1606
+ #: app/main/controllers/api/RTMediaJsonApi.php:920
1607
+ msgid "media updated"
 
 
1608
  msgstr ""
1609
 
1610
+ #: app/main/controllers/api/RTMediaJsonApi.php:1042
1611
+ msgid "media list"
1612
  msgstr ""
1613
 
1614
+ #: app/main/controllers/api/RTMediaJsonApi.php:1045
1615
+ msgid "no media found for requested media type"
1616
  msgstr ""
1617
 
1618
+ #: app/main/controllers/api/RTMediaJsonApi.php:1048
1619
+ msgid "media_type not allowed"
1620
  msgstr ""
1621
 
1622
+ #: app/main/controllers/api/RTMediaJsonApi.php:1133
1623
+ msgid "single media"
1624
  msgstr ""
1625
 
1626
+ #: app/main/controllers/group/RTMediaGroupExtension.php:30
1627
+ #: app/main/controllers/group/RTMediaGroupExtension.php:92
1628
+ msgid "Album Creation Control"
1629
  msgstr ""
1630
 
1631
+ #: app/main/controllers/group/RTMediaGroupExtension.php:31
1632
+ #: app/main/controllers/group/RTMediaGroupExtension.php:93
1633
+ msgid "Who can create Albums in this group?"
1634
  msgstr ""
1635
 
1636
+ #: app/main/controllers/group/RTMediaGroupExtension.php:35
1637
+ #: app/main/controllers/group/RTMediaGroupExtension.php:97
1638
+ msgid "All Group Members"
1639
  msgstr ""
1640
 
1641
+ #: app/main/controllers/group/RTMediaGroupExtension.php:39
1642
+ #: app/main/controllers/group/RTMediaGroupExtension.php:101
1643
+ msgid "Group Admins and Mods only"
1644
  msgstr ""
1645
 
1646
+ #: app/main/controllers/group/RTMediaGroupExtension.php:43
1647
+ #: app/main/controllers/group/RTMediaGroupExtension.php:105
1648
+ msgid "Group Admin only"
1649
  msgstr ""
1650
 
1651
+ #: app/main/controllers/group/RTMediaGroupExtension.php:113
1652
+ #: templates/media/album-single-edit.php:46
1653
+ msgid "Save Changes"
 
 
 
1654
  msgstr ""
1655
 
1656
+ #: app/main/controllers/group/RTMediaGroupExtension.php:142
1657
+ msgid "There was an error saving, please try again"
1658
  msgstr ""
1659
 
1660
+ #: app/main/controllers/group/RTMediaGroupExtension.php:144
1661
+ msgid "Settings saved successfully"
1662
  msgstr ""
1663
 
1664
+ #: app/main/controllers/group/RTMediaGroupExtension.php:164
1665
+ msgid ""
1666
+ "You could display a small snippet of information from your group extension "
1667
+ "here. It will show on the group\n"
1668
+ "\t home screen."
1669
  msgstr ""
1670
 
1671
+ #: app/main/controllers/media/RTMediaAlbum.php:55
1672
+ msgid "Create"
1673
  msgstr ""
1674
 
1675
+ #: app/main/controllers/media/RTMediaAlbum.php:56
1676
+ #: app/main/controllers/template/rt-template-functions.php:1399
1677
+ msgid "Create Album"
1678
  msgstr ""
1679
 
1680
+ #: app/main/controllers/media/RTMediaAlbum.php:57
1681
+ #: app/main/controllers/template/rt-template-functions.php:1473
1682
+ msgid "Edit Album"
1683
  msgstr ""
1684
 
1685
+ #: app/main/controllers/media/RTMediaAlbum.php:58
1686
+ msgid "New Album"
1687
  msgstr ""
1688
 
1689
+ #: app/main/controllers/media/RTMediaAlbum.php:59
1690
+ msgid "All Albums"
1691
  msgstr ""
1692
 
1693
+ #: app/main/controllers/media/RTMediaAlbum.php:60
1694
+ msgid "View Album"
1695
  msgstr ""
1696
 
1697
+ #: app/main/controllers/media/RTMediaAlbum.php:61
1698
+ msgid "Search Albums"
1699
  msgstr ""
1700
 
1701
+ #: app/main/controllers/media/RTMediaAlbum.php:62
1702
+ msgid "No album found"
1703
  msgstr ""
1704
 
1705
+ #: app/main/controllers/media/RTMediaAlbum.php:63
1706
+ msgid "No album found in Trash"
1707
  msgstr ""
1708
 
1709
+ #: app/main/controllers/media/RTMediaAlbum.php:64
1710
+ msgid "Parent"
1711
  msgstr ""
1712
 
1713
+ #: app/main/controllers/media/RTMediaAlbum.php:151
1714
+ msgid "Untitled Album"
1715
  msgstr ""
1716
 
1717
+ #: app/main/controllers/media/RTMediaFeatured.php:25
1718
+ msgid "Set as Featured"
 
1719
  msgstr ""
1720
 
1721
+ #: app/main/controllers/media/RTMediaFeatured.php:27
1722
+ msgid "Unset Featured"
1723
  msgstr ""
1724
 
1725
+ #: app/main/controllers/media/RTMediaLike.php:17
1726
+ msgid "Like"
1727
  msgstr ""
1728
 
1729
+ #: app/main/controllers/media/RTMediaLike.php:19
1730
+ msgid "Unlike"
1731
  msgstr ""
1732
 
1733
+ #: app/main/controllers/media/RTMediaMedia.php:401
1734
+ msgid "Error creating attachment for the media file, please try again"
1735
  msgstr ""
1736
 
1737
+ #: app/main/controllers/media/RTMediaMedia.php:502
1738
+ #, php-format
1739
+ msgid "%s added a %s"
1740
  msgstr ""
1741
 
1742
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:251
1743
+ msgid "Default Privacy"
1744
  msgstr ""
1745
 
1746
+ #: app/main/controllers/shortcodes/RTMediaGalleryShortcode.php:168
1747
+ msgid "You do not have sufficient privileges to view this gallery"
1748
  msgstr ""
1749
 
1750
+ #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:91
1751
+ msgid "The web browser on your device cannot be used to upload files."
1752
  msgstr ""
1753
 
1754
+ #: app/main/controllers/template/rt-template-functions.php:56
1755
+ msgid "All Photos"
1756
  msgstr ""
1757
 
1758
+ #: app/main/controllers/template/rt-template-functions.php:57
1759
+ msgid "All Videos"
1760
  msgstr ""
1761
 
1762
+ #: app/main/controllers/template/rt-template-functions.php:58
1763
+ msgid "All Music"
1764
  msgstr ""
1765
 
1766
+ #: app/main/controllers/template/rt-template-functions.php:60
1767
+ #: app/main/controllers/template/rt-template-functions.php:62
1768
+ msgid "All "
1769
  msgstr ""
1770
 
1771
+ #: app/main/controllers/template/rt-template-functions.php:567
1772
+ #: app/main/controllers/template/rt-template-functions.php:1325
1773
+ msgid "Options"
1774
  msgstr ""
1775
 
1776
+ #: app/main/controllers/template/rt-template-functions.php:657
1777
+ msgid "There are no comments on this media yet."
 
 
 
 
1778
  msgstr ""
1779
 
1780
+ #: app/main/controllers/template/rt-template-functions.php:689
1781
+ msgid "Delete Comment"
 
1782
  msgstr ""
1783
 
1784
+ #: app/main/controllers/template/rt-template-functions.php:891
1785
+ msgid "Video Thumbnail"
 
1786
  msgstr ""
1787
 
1788
+ #: app/main/controllers/template/rt-template-functions.php:934
1789
+ msgid "Video Thumbnail:"
 
 
 
 
1790
  msgstr ""
1791
 
1792
+ #: app/main/controllers/template/rt-template-functions.php:1011
1793
+ msgid "Image"
 
 
 
 
1794
  msgstr ""
1795
 
1796
+ #: app/main/controllers/template/rt-template-functions.php:1026
1797
+ msgid "Modify Image"
1798
  msgstr ""
1799
 
1800
+ #: app/main/controllers/template/rt-template-functions.php:1098
1801
+ msgid "Type Comment..."
1802
  msgstr ""
1803
 
1804
+ #: app/main/controllers/template/rt-template-functions.php:1101
1805
+ #: templates/media/media-single.php:71 templates/media/media-single.php:110
1806
+ msgid "Comment"
1807
  msgstr ""
1808
 
1809
+ #: app/main/controllers/template/rt-template-functions.php:1136
1810
+ #: app/main/controllers/template/rt-template-functions.php:1143
1811
+ msgid "Delete Media"
 
1812
  msgstr ""
1813
 
1814
+ #: app/main/controllers/template/rt-template-functions.php:1269
1815
+ msgid "Profile Albums"
1816
  msgstr ""
1817
 
1818
+ #: app/main/controllers/template/rt-template-functions.php:1271
1819
+ #: app/main/controllers/template/rt-template-functions.php:1307
1820
+ msgid "Group Albums"
 
 
 
1821
  msgstr ""
1822
 
1823
+ #: app/main/controllers/template/rt-template-functions.php:1380
1824
+ #: app/main/controllers/template/rt-template-functions.php:1393
1825
+ msgid "Create New Album"
1826
  msgstr ""
1827
 
1828
+ #: app/main/controllers/template/rt-template-functions.php:1380
1829
+ msgid "Add Album"
 
 
 
 
1830
  msgstr ""
1831
 
1832
+ #: app/main/controllers/template/rt-template-functions.php:1395
1833
+ msgid "Album Title : "
 
1834
  msgstr ""
1835
 
1836
+ #: app/main/controllers/template/rt-template-functions.php:1428
1837
+ #: app/main/controllers/template/rt-template-functions.php:1433
1838
+ #: app/main/controllers/template/rt-template-functions.php:1484
1839
+ msgid "Merge Album"
1840
  msgstr ""
1841
 
1842
+ #: app/main/controllers/template/rt-template-functions.php:1430
1843
+ msgid "Select Album to merge with : "
 
 
1844
  msgstr ""
1845
 
1846
+ #: app/main/controllers/template/rt-template-functions.php:1476
1847
+ msgid "Delete Album"
1848
  msgstr ""
1849
 
1850
+ #: app/main/controllers/template/rt-template-functions.php:1509
1851
+ msgid "Merge"
1852
  msgstr ""
1853
 
1854
+ #: app/main/controllers/template/rt-template-functions.php:1558
1855
+ #: app/main/controllers/upload/RTMediaUploadView.php:65
1856
+ msgid "Privacy : "
1857
  msgstr ""
1858
 
1859
+ #: app/main/controllers/template/rt-template-functions.php:1728
1860
+ msgid "people like this"
1861
  msgstr ""
1862
 
1863
+ #: app/main/controllers/template/rt-template-functions.php:1738
1864
+ #: app/main/controllers/template/rt-template-functions.php:1741
1865
+ msgid "Upload Media"
1866
  msgstr ""
1867
 
1868
+ #: app/main/controllers/template/rt-template-functions.php:1784
1869
+ msgid "Go PRO!"
1870
  msgstr ""
1871
 
1872
+ #: app/main/controllers/template/rt-template-functions.php:1805
1873
+ msgid "Reasons to buy rtMedia-PRO"
1874
  msgstr ""
1875
 
1876
+ #: app/main/controllers/template/rt-template-functions.php:1810
1877
+ msgid "RSS Feed/Podcasting Support"
1878
  msgstr ""
1879
 
1880
+ #: app/main/controllers/template/rt-template-functions.php:1811
1881
+ msgid ""
1882
+ "You can consume rtMedia uploads from iTunes as well as any feed-reader/"
1883
+ "podcasting software."
1884
  msgstr ""
1885
 
1886
+ #: app/main/controllers/template/rt-template-functions.php:1817
1887
+ msgid "WordPress Comment Attachment"
1888
  msgstr ""
1889
 
1890
+ #: app/main/controllers/template/rt-template-functions.php:1818
1891
+ msgid "You can attach files to WordPress comments."
1892
  msgstr ""
1893
 
1894
+ #: app/main/controllers/template/rt-template-functions.php:1824
1895
+ msgid "bbPress Attachment"
1896
  msgstr ""
1897
 
1898
+ #: app/main/controllers/template/rt-template-functions.php:1825
1899
+ msgid "You can attach files to bbPress topic and reply."
1900
  msgstr ""
1901
 
1902
+ #: app/main/controllers/template/rt-template-functions.php:1831
1903
+ msgid "Document Support"
1904
  msgstr ""
1905
 
1906
+ #: app/main/controllers/template/rt-template-functions.php:1832
1907
+ msgid ""
1908
+ "You can add, view and download documents like txt, doc, pdf, also add and "
1909
+ "upload other file types like zip, tar and tar.gz etc."
1910
  msgstr ""
1911
 
1912
+ #: app/main/controllers/template/rt-template-functions.php:1838
1913
+ msgid "CubePoints & MyCRED Integration"
1914
  msgstr ""
1915
 
1916
+ #: app/main/controllers/template/rt-template-functions.php:1839
1917
+ msgid ""
1918
+ "Integrating CubePoints/myCRED with rtMedia, you can reward users with "
1919
+ "virtual points on rtMedia activities."
1920
  msgstr ""
1921
 
1922
+ #: app/main/controllers/template/rt-template-functions.php:1845
1923
+ msgid "Album Privacy"
1924
  msgstr ""
1925
 
1926
+ #: app/main/controllers/template/rt-template-functions.php:1846
1927
+ msgid ""
1928
+ "This will allow you to set album privacy while creating albums or change "
1929
+ "album privacy with editing albums too."
1930
  msgstr ""
1931
 
1932
+ #: app/main/controllers/template/rt-template-functions.php:1852
1933
+ msgid "Audio Playlist"
 
1934
  msgstr ""
1935
 
1936
+ #: app/main/controllers/template/rt-template-functions.php:1853
1937
+ msgid ""
1938
+ "With this feature you can create your audio playlists and listen to your "
1939
+ "favorite music at will."
1940
  msgstr ""
1941
 
1942
+ #: app/main/controllers/template/rt-template-functions.php:1859
1943
+ msgid "Report Button & Moderation Tools"
 
1944
  msgstr ""
1945
 
1946
+ #: app/main/controllers/template/rt-template-functions.php:1860
1947
+ msgid ""
1948
+ "Users can report media if they find it offensive. Set number of reports to "
1949
+ "automatically take down media."
1950
  msgstr ""
1951
 
1952
+ #: app/main/controllers/template/rt-template-functions.php:1866
1953
+ msgid "Download Button For Media"
1954
  msgstr ""
1955
 
1956
+ #: app/main/controllers/template/rt-template-functions.php:1867
1957
+ msgid ""
1958
+ "Users can download photos, videos and music. Admin has option to allow "
1959
+ "download the media."
1960
  msgstr ""
1961
 
1962
+ #: app/main/controllers/template/rt-template-functions.php:1873
1963
+ msgid "Sidebar widgets"
1964
  msgstr ""
1965
 
1966
+ #: app/main/controllers/template/rt-template-functions.php:1874
1967
+ msgid ""
1968
+ "These will let you display a gallery or an uploader in a sidebar. Several of "
1969
+ "them can be used in a single sidebar."
1970
  msgstr ""
1971
 
1972
+ #: app/main/controllers/template/rt-template-functions.php:1880
1973
+ msgid "Post-editor button"
1974
  msgstr ""
1975
 
1976
+ #: app/main/controllers/template/rt-template-functions.php:1881
1977
+ msgid ""
1978
+ "With this button, a UI appears to quickly generate shortcodes for special "
1979
+ "pages like \"Editorial Picks\"."
1980
  msgstr ""
1981
 
1982
+ #: app/main/controllers/template/rt-template-functions.php:1887
1983
+ msgid "Star-Rating option"
1984
  msgstr ""
1985
 
1986
+ #: app/main/controllers/template/rt-template-functions.php:1888
1987
  msgid ""
1988
+ "Users can give up to five stars to rate media. This data can be used for "
1989
+ "\"Most Rated Media\" in sidebars."
1990
  msgstr ""
1991
 
1992
+ #: app/main/controllers/template/rt-template-functions.php:1894
1993
+ msgid "Global Albums"
1994
  msgstr ""
1995
 
1996
+ #: app/main/controllers/template/rt-template-functions.php:1895
 
1997
  msgid ""
1998
+ "Multiple global albums can be created beforehand. One of these can be chosen "
1999
+ "as the default album."
 
 
2000
  msgstr ""
2001
 
2002
+ #: app/main/controllers/template/rt-template-functions.php:1901
2003
+ msgid "Premium one-to-one support"
2004
  msgstr ""
2005
 
2006
+ #: app/main/controllers/template/rt-template-functions.php:1902
2007
+ msgid ""
2008
+ "Without leaving your WordPress dashboard, you can contact us for help using "
2009
+ "a support form."
2010
  msgstr ""
2011
 
2012
+ #: app/main/controllers/template/rt-template-functions.php:1908
2013
+ msgid "Premium & Open-Source"
2014
  msgstr ""
2015
 
2016
+ #: app/main/controllers/template/rt-template-functions.php:1909
2017
+ msgid ""
2018
+ "Developers get full control over rtMedia-PRO's source. They'll get access to "
2019
  msgstr ""
2020
 
2021
+ #: app/main/controllers/template/rt-template-functions.php:1915
2022
+ msgid "Upgrade to rtMedia PRO Now "
2023
  msgstr ""
2024
 
2025
+ #: app/main/controllers/template/rt-template-functions.php:1926
2026
+ msgid "You can consider rtMedia Team for following :"
 
 
2027
  msgstr ""
2028
 
2029
+ #: app/main/controllers/template/rt-template-functions.php:1928
2030
+ msgid "rtMedia Customization ( in Upgrade Safe manner )"
2031
  msgstr ""
2032
 
2033
+ #: app/main/controllers/template/rt-template-functions.php:1929
2034
+ msgid "Wordpress/BuddyPress Theme Design and Development"
2035
  msgstr ""
2036
 
2037
+ #: app/main/controllers/template/rt-template-functions.php:1930
2038
+ msgid "Wordpress/BuddyPress Plugin Development"
2039
  msgstr ""
2040
 
2041
+ #: app/main/controllers/template/rt-template-functions.php:1934
2042
+ msgid "Contact Us"
2043
  msgstr ""
2044
 
2045
+ #: app/main/controllers/template/rt-template-functions.php:1952
2046
+ msgid "Empowering your community with "
2047
  msgstr ""
2048
 
2049
+ #: app/main/controllers/template/rt-template-functions.php:1953
2050
+ msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2051
  msgstr ""
2052
 
2053
+ #: app/main/controllers/template/rt-template-functions.php:1967
2054
+ msgid "Close (Esc)"
2055
  msgstr ""
2056
 
2057
+ #: app/main/controllers/template/rt-template-functions.php:1982
2058
+ msgid "Public"
 
 
2059
  msgstr ""
2060
 
2061
+ #: app/main/controllers/template/rt-template-functions.php:1986
2062
+ msgid "All members"
 
 
 
 
2063
  msgstr ""
2064
 
2065
+ #: app/main/controllers/template/rt-template-functions.php:1990
2066
+ msgid "Your friends"
 
2067
  msgstr ""
2068
 
2069
+ #: app/main/controllers/template/rt-template-functions.php:1994
2070
+ msgid "Only you"
 
2071
  msgstr ""
2072
 
2073
+ #: app/main/controllers/template/rt-template-functions.php:1998
2074
+ msgid "Blocked Temperorily"
2075
  msgstr ""
2076
 
2077
+ #: app/main/controllers/template/rt-template-functions.php:2032
2078
+ #, php-format
2079
+ msgid "%s ago "
 
 
2080
  msgstr ""
2081
 
2082
+ #: app/main/controllers/template/rt-template-functions.php:2042
2083
+ msgid "1 second"
2084
  msgstr ""
2085
 
2086
+ #: app/main/controllers/template/rt-template-functions.php:2045
2087
+ msgid "1 minute"
 
 
2088
  msgstr ""
2089
 
2090
+ #: app/main/controllers/template/rt-template-functions.php:2048
2091
+ msgid "1 hour"
2092
  msgstr ""
2093
 
2094
+ #: app/main/controllers/template/RTMediaTemplate.php:119
2095
+ msgid "Invalid attribute passed for rtmedia_gallery shortcode."
2096
  msgstr ""
2097
 
2098
+ #: app/main/controllers/template/RTMediaTemplate.php:222
2099
+ #: app/main/controllers/template/RTMediaTemplate.php:284
2100
+ #: app/main/controllers/template/RTMediaTemplate.php:357
2101
+ #: app/main/controllers/template/RTMediaTemplate.php:455
2102
+ msgid "Ooops !!! Invalid access. No nonce was found !!"
2103
  msgstr ""
2104
 
2105
+ #: app/main/controllers/template/RTMediaTemplate.php:227
2106
+ msgid "Media updated Sucessfully"
2107
  msgstr ""
2108
 
2109
+ #: app/main/controllers/template/RTMediaTemplate.php:233
2110
+ msgid "Error in updating Media"
2111
  msgstr ""
2112
 
2113
+ #: app/main/controllers/upload/RTMediaUploadEndpoint.php:97
2114
+ #, php-format
2115
+ msgid "%s added %d %s"
 
2116
  msgstr ""
2117
 
2118
+ #: app/main/controllers/upload/RTMediaUploadView.php:50
2119
+ #: app/main/controllers/upload/RTMediaUploadView.php:53
2120
+ msgid "Album "
2121
  msgstr ""
2122
 
2123
+ #: app/main/controllers/upload/RTMediaUploadView.php:71
2124
+ #: app/main/controllers/upload/RTMediaUploadView.php:86
2125
+ msgid "File Upload"
 
2126
  msgstr ""
2127
 
2128
+ #: app/main/controllers/upload/RTMediaUploadView.php:76
2129
+ msgid "Select your files"
2130
  msgstr ""
2131
 
2132
+ #: app/main/controllers/upload/RTMediaUploadView.php:77
2133
+ msgid "or"
2134
  msgstr ""
2135
 
2136
+ #: app/main/controllers/upload/RTMediaUploadView.php:77
2137
+ msgid "Drop your files here"
2138
  msgstr ""
2139
 
2140
+ #: app/main/controllers/upload/RTMediaUploadView.php:79
2141
+ msgid "Start upload"
2142
  msgstr ""
2143
 
2144
+ #: app/main/controllers/upload/RTMediaUploadView.php:86
2145
+ msgid "Attach Files"
 
2146
  msgstr ""
2147
 
2148
+ #: app/main/controllers/upload/RTMediaUploadView.php:86
2149
+ msgid "Upload will start only after you enter content and click Post Update."
2150
  msgstr ""
2151
 
2152
+ #: app/main/controllers/upload/RTMediaUploadView.php:89
2153
+ msgid "Insert from URL"
2154
  msgstr ""
2155
 
2156
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:54
2157
+ msgid "Error Uploading File"
2158
  msgstr ""
2159
 
2160
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:201
2161
+ msgid "MP4 file you have uploaded is corrupt."
2162
  msgstr ""
2163
 
2164
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:208
2165
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:213
2166
+ msgid ""
2167
+ "The MP4 file you have uploaded is using an unsupported video codec. "
2168
+ "Supported video codec is H.264."
2169
  msgstr ""
2170
 
2171
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:218
2172
+ msgid "The MP4 file you have uploaded is not a video file."
2173
  msgstr ""
2174
 
2175
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:230
2176
+ msgid "MP3 file you have uploaded is currupt."
2177
  msgstr ""
2178
 
2179
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:237
2180
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:242
2181
+ msgid ""
2182
+ "The MP3 file you have uploaded is using an unsupported audio format. "
2183
+ "Supported audio format is MP3."
2184
  msgstr ""
2185
 
2186
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:247
2187
+ msgid "The MP3 file you have uploaded is not an audio file."
2188
  msgstr ""
2189
 
2190
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:255
 
2191
  msgid ""
2192
+ "Media File you have tried to upload is not supported. Supported media files "
2193
+ "are .jpg, .png, .gif, .mp3, .mov and .mp4."
2194
  msgstr ""
2195
 
2196
+ #: app/main/deprecated/RTMediaDeprecated.php:27
2197
+ #, php-format
2198
+ msgid "Deprecated %s. Please use %s."
2199
+ msgstr ""
2200
+
2201
+ #: app/services/RTMediaEncoding.php:151
2202
+ msgid "rtMedia Encoding: Nearing quota limit."
2203
  msgstr ""
2204
 
2205
+ #: app/services/RTMediaEncoding.php:152
2206
+ #, php-format
2207
+ msgid ""
2208
+ "<p>You are nearing the quota limit for your rtMedia encoding service.</"
2209
+ "p><p>Following are the details:</p><p><strong>Used:</strong> %s</"
2210
+ "p><p><strong>Remaining</strong>: %s</p><p><strong>Total:</strong> %s</p>"
2211
  msgstr ""
2212
 
2213
+ #: app/services/RTMediaEncoding.php:166
2214
+ msgid "rtMedia Encoding: Usage quota over."
2215
  msgstr ""
2216
 
2217
+ #: app/services/RTMediaEncoding.php:167
2218
+ #, php-format
2219
+ msgid ""
2220
+ "<p>Your usage quota is over. Upgrade your plan</p><p>Following are the "
2221
+ "details:</p><p><strong>Used:</strong> %s</p><p><strong>Remaining</strong>: "
2222
+ "%s</p><p><strong>Total:</strong> %s</p>"
2223
  msgstr ""
2224
 
2225
+ #: app/services/RTMediaEncoding.php:222
2226
+ #, php-format
2227
+ msgid "You have successfully subscribed for the <strong>%s</strong> plan"
2228
  msgstr ""
2229
 
2230
+ #: app/services/RTMediaEncoding.php:234
2231
+ msgid "Unsubscribe"
2232
  msgstr ""
2233
 
2234
+ #: app/services/RTMediaEncoding.php:236
2235
+ msgid ""
2236
+ "Just to improve our service we would like to know the reason for you to "
2237
+ "leave us."
2238
  msgstr ""
2239
 
2240
+ #: app/services/RTMediaEncoding.php:286 app/services/RTMediaEncoding.php:369
2241
+ msgid "Current Plan"
2242
  msgstr ""
2243
 
2244
+ #: app/services/RTMediaEncoding.php:286
2245
+ msgid "Unsubscribed"
 
 
 
2246
  msgstr ""
2247
 
2248
+ #: app/services/RTMediaEncoding.php:288
2249
+ msgid "Used"
2250
  msgstr ""
2251
 
2252
+ #: app/services/RTMediaEncoding.php:290
2253
+ msgid "Remaining"
2254
  msgstr ""
2255
 
2256
+ #: app/services/RTMediaEncoding.php:292
2257
+ msgid "Total"
 
 
 
 
 
2258
  msgstr ""
2259
 
2260
+ #: app/services/RTMediaEncoding.php:296
2261
+ msgid "Your usage limit has been reached. Upgrade your plan."
 
 
 
2262
  msgstr ""
2263
 
2264
+ #: app/services/RTMediaEncoding.php:298
2265
+ msgid "Your API key is not valid or is expired."
 
2266
  msgstr ""
2267
 
2268
+ #: app/services/RTMediaEncoding.php:300
2269
+ msgid "Encoding Usage"
 
2270
  msgstr ""
2271
 
2272
+ #: app/services/RTMediaEncoding.php:305
2273
+ msgid "rtMedia team has started offering an audio/video encoding service."
2274
  msgstr ""
2275
 
2276
+ #: app/services/RTMediaEncoding.php:307
2277
+ msgid "Enter API KEY"
2278
  msgstr ""
2279
 
2280
+ #: app/services/RTMediaEncoding.php:309
2281
+ msgid "Submit"
2282
  msgstr ""
2283
 
2284
+ #: app/services/RTMediaEncoding.php:317
2285
+ msgid "Feature\\Plan"
2286
  msgstr ""
2287
 
2288
+ #: app/services/RTMediaEncoding.php:318 app/services/RTMediaEncoding.php:359
2289
+ msgid "Free"
2290
  msgstr ""
2291
 
2292
+ #: app/services/RTMediaEncoding.php:319
2293
+ msgid "Silver"
2294
  msgstr ""
2295
 
2296
+ #: app/services/RTMediaEncoding.php:320
2297
+ msgid "Gold"
2298
  msgstr ""
2299
 
2300
+ #: app/services/RTMediaEncoding.php:321
2301
+ msgid "Platinum"
2302
  msgstr ""
2303
 
2304
+ #: app/services/RTMediaEncoding.php:325
2305
+ msgid "File Size Limit"
2306
  msgstr ""
2307
 
2308
+ #: app/services/RTMediaEncoding.php:330
2309
+ msgid "Bandwidth (monthly)"
2310
  msgstr ""
2311
 
2312
+ #: app/services/RTMediaEncoding.php:337
2313
+ msgid "Overage Bandwidth"
2314
  msgstr ""
2315
 
2316
+ #: app/services/RTMediaEncoding.php:338 app/services/RTMediaEncoding.php:345
2317
+ #: app/services/RTMediaEncoding.php:350
2318
+ msgid "Not Available"
2319
  msgstr ""
2320
 
2321
+ #: app/services/RTMediaEncoding.php:344
2322
+ msgid "Amazon S3 Support"
2323
  msgstr ""
2324
 
2325
+ #: app/services/RTMediaEncoding.php:346 app/services/RTMediaEncoding.php:351
2326
+ #: app/services/RTMediaEncoding.php:355
2327
+ msgid "Coming Soon"
2328
  msgstr ""
2329
 
2330
+ #: app/services/RTMediaEncoding.php:349
2331
+ msgid "HD Profile"
2332
  msgstr ""
2333
 
2334
+ #: app/services/RTMediaEncoding.php:354
2335
+ msgid "Webcam Recording"
 
2336
  msgstr ""
2337
 
2338
+ #: app/services/RTMediaEncoding.php:358
2339
+ msgid "Pricing"
2340
  msgstr ""
2341
 
2342
+ #: app/services/RTMediaEncoding.php:360
2343
+ msgid "$9/month"
2344
  msgstr ""
2345
 
2346
+ #: app/services/RTMediaEncoding.php:361
2347
+ msgid "$99/month"
2348
  msgstr ""
2349
 
2350
+ #: app/services/RTMediaEncoding.php:362
2351
+ msgid "$999/month"
2352
  msgstr ""
2353
 
2354
+ #: app/services/RTMediaEncoding.php:374
2355
+ msgid "Try Now"
2356
  msgstr ""
2357
 
2358
+ #: app/services/RTMediaEncoding.php:526
2359
+ msgid "Could not read file."
2360
  msgstr ""
2361
 
2362
+ #: app/services/RTMediaEncoding.php:531
2363
+ msgid ""
2364
+ "Something went wrong. The required attachment id does not exists. It must "
2365
+ "have been deleted."
2366
  msgstr ""
2367
 
2368
+ #: app/services/RTMediaEncoding.php:547
2369
+ msgid "rtMedia Encoding: Download Failed"
2370
  msgstr ""
2371
 
2372
+ #: app/services/RTMediaEncoding.php:548
2373
+ #, php-format
2374
+ msgid ""
2375
+ "<p><a href=\"%s\">Media</a> was successfully encoded but there was an error "
2376
+ "while downloading:</p>\n"
2377
+ " <p><code>%s</code></p>\n"
2378
+ " <p>You can <a href=\"%s\">retry the download</a>.</p>"
2379
  msgstr ""
2380
 
2381
+ #: app/services/RTMediaEncoding.php:564
2382
+ msgid "Done"
2383
  msgstr ""
2384
 
2385
+ #: app/services/RTMediaEncoding.php:592 app/services/RTMediaEncoding.php:615
2386
+ msgid "Something went wrong please try again."
2387
  msgstr ""
2388
 
2389
+ #: app/services/RTMediaEncoding.php:611
2390
+ msgid "Your subscription was cancelled successfully"
2391
  msgstr ""
2392
 
2393
+ #: app/services/RTMediaEncoding.php:625
2394
+ msgid "Please enter the api key."
2395
  msgstr ""
2396
 
2397
+ #: app/services/RTMediaEncoding.php:632
2398
+ msgid "Encoding disabled successfully."
2399
  msgstr ""
2400
 
2401
+ #: templates/media/album-gallery.php:4
2402
+ msgid "Album List"
2403
  msgstr ""
2404
 
2405
+ #: templates/media/album-gallery.php:34
2406
+ #: templates/media/album-single-edit.php:89
2407
+ #: templates/media/media-gallery.php:47
2408
+ msgid "Prev"
2409
  msgstr ""
2410
 
2411
+ #: templates/media/album-gallery.php:43
2412
+ msgid "Load More"
 
 
 
2413
  msgstr ""
2414
 
2415
+ #: templates/media/album-gallery.php:50
2416
  #: templates/media/media-single-edit.php:64
2417
+ #: templates/media/media-single.php:129
2418
  msgid "Sorry !! There's no media found for the request !!"
2419
  msgstr ""
2420
 
2456
  msgid "Move Selected"
2457
  msgstr ""
2458
 
 
 
 
 
 
2459
  #: templates/media/album-single-edit.php:98
2460
  msgid "Next"
2461
  msgstr ""
2464
  msgid "The album is empty."
2465
  msgstr ""
2466
 
2467
+ #: templates/media/media-gallery.php:8 templates/media/media-gallery.php:14
2468
+ msgid "Media Gallery"
2469
  msgstr ""
2470
 
2471
+ #: templates/media/media-gallery.php:56
2472
+ msgid "Load more"
2473
+ msgstr ""
2474
+
2475
+ #: templates/media/media-gallery.php:61
2476
+ msgid "Oops !! There's no media found for the request !!"
2477
  msgstr ""
2478
 
2479
  #: templates/media/media-single-edit.php:50
2487
  #: templates/media/media-single-edit.php:59
2488
  msgid "Sorry !! You do not have rights to edit this media"
2489
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ 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: WordPress 3.7 + BuddyPress 1.8.1
9
- Stable tag: 3.6.10
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
@@ -133,6 +133,10 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
 
 
 
 
 
136
  = 3.6.10 =
137
  * Update German and Swedish translations
138
  * JS fix for WordPress 3.9 Beta
@@ -736,8 +740,8 @@ Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_sou
736
 
737
  == Upgrade Notice ==
738
 
739
- = 3.6.10 =
740
- Requires BuddyPress 1.7 or higher, if using BuddyPress. Update German and Swedish translations, js fix for WordPress 3.9 Beta, bug fixes.
741
 
742
  == Sponsors ==
743
 
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 3.7 + BuddyPress 1.8.1
9
+ Stable tag: 3.6.11
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
 
136
+ = 3.6.11 =
137
+ * Update Russian and Polish translations
138
+ * Bug fixes
139
+
140
  = 3.6.10 =
141
  * Update German and Swedish translations
142
  * JS fix for WordPress 3.9 Beta
740
 
741
  == Upgrade Notice ==
742
 
743
+ = 3.6.11 =
744
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Update Russian and Polish translations and bug fixes.
745
 
746
  == Sponsors ==
747