rtMedia for WordPress, BuddyPress and bbPress - Version 4.1

Version Description

Requires BuddyPress 1.7 or higher, if using BuddyPress. Removed encoding service and bug fixes.

=

Download this release

Release Info

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

Code changes from version 4.0.7 to 4.1

app/admin/RTMediaAdmin.php CHANGED
@@ -49,34 +49,25 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
49
  add_action( 'wp_ajax_rtmedia_correct_upload_filetypes', array( $this, 'correct_upload_filetypes' ), 1 );
50
  add_filter( 'plugin_row_meta', array( $this, 'plugin_meta_premium_addon_link' ), 1, 2 );
51
  add_action( 'wp_dashboard_setup', array( $this, 'add_dashboard_widgets' ), 0 );
52
- add_filter( 'attachment_fields_to_edit', array( $this, 'edit_video_thumbnail' ), null, 2 );
53
- add_filter( 'attachment_fields_to_save', array( $this, 'save_video_thumbnail' ), null, 1 );
54
- add_action( 'wp_ajax_rtmedia_hide_video_thumb_admin_notice', array(
55
- $this,
56
- 'rtmedia_hide_video_thumb_admin_notice',
57
- ), 1 );
58
  add_action( 'wp_ajax_rtmedia_hide_addon_update_notice', array(
59
  $this,
60
  'rtmedia_hide_addon_update_notice',
61
  ), 1 );
62
  add_filter( 'media_row_actions', array( $this, 'modify_medialibrary_permalink' ), 10, 2 );
63
 
64
- $obj_encoding = new RTMediaEncoding( true );
65
-
66
- if ( $obj_encoding->api_key ) {
67
- add_filter( 'media_row_actions', array( $this, 'add_reencode_link' ), null, 2 );
68
- add_action( 'admin_head-upload.php', array( $this, 'add_bulk_actions_regenerate' ) );
69
- add_action( 'admin_footer', array( $this, 'rtmedia_regenerate_thumb_js' ) );
70
- add_action( 'admin_action_bulk_video_regenerate_thumbnails', array( $this, 'bulk_action_handler' ) );
71
- add_action( 'admin_action_-1', array( $this, 'bulk_action_handler' ) );
72
- }
73
-
74
- add_action( 'wp_ajax_rt_media_regeneration', array( $this, 'rt_media_regeneration' ), 1 );
75
-
76
  if ( ! isset( $rtmedia->options ) ) {
77
  $rtmedia->options = rtmedia_get_site_option( 'rtmedia-options' );
78
  }
79
 
 
 
 
 
 
 
 
 
 
80
  $rtmedia_option = filter_input( INPUT_POST, 'rtmedia-options', FILTER_DEFAULT, FILTER_SANITIZE_NUMBER_INT );
81
  if ( isset( $rtmedia_option ) ) {
82
  if ( isset( $rtmedia_option['general_showAdminMenu'] ) && 1 === intval( $rtmedia_option['general_showAdminMenu'] ) ) {
@@ -99,7 +90,6 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
99
  }
100
 
101
  $this->rtmedia_settings = new RTMediaSettings();
102
- $this->rtmedia_encoding = new RTMediaEncoding();
103
 
104
  if ( ! class_exists( 'BuddyPress' ) ) {
105
  add_action( 'admin_init', array( $this, 'check_permalink_admin_notice' ) );
@@ -134,6 +124,53 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
134
  add_action( 'admin_footer', array( $this, 'rtm_admin_templates' ) );
135
  }
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  function rtm_admin_templates() {
138
  foreach ( glob( RTMEDIA_PATH . 'app/admin/templates/*.php' ) as $filename ) {
139
  $slug = rtrim( basename( $filename ), '.php' );
@@ -191,7 +228,6 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
191
  public function rtmedia_admin_notices() {
192
  if ( current_user_can( 'list_users' ) ) {
193
  $this->upload_filetypes_error();
194
- $this->rtmedia_regenerate_thumbnail_notice();
195
  $this->rtmedia_addon_update_notice();
196
  $this->rtmedia_update_template_notice();
197
 
@@ -441,7 +477,7 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
441
  <div class="error rtmedia-addon-upate-notice">
442
  <p>
443
  <strong><?php esc_html_e( 'rtMedia:', 'buddypress-media' ) ?></strong>
444
- <?php esc_html_e( 'Please update all premium add-ons that you have purchased from rtCamp from', 'buddypress-media' ) ?>
445
  <a href="https://rtmedia.io/my-account/"
446
  target="_blank"><?php esc_html_e( 'your account', 'buddypress-media' ) ?></a>.
447
  <a href="#" onclick="rtmedia_hide_addon_update_notice()"
@@ -732,45 +768,6 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
732
  return $links;
733
  }
734
 
735
- /**
736
- * Add the reencode link
737
- *
738
- * @access public
739
- *
740
- * @param array $actions
741
- * @param object $post
742
- *
743
- * @return array $actions
744
- */
745
- public function add_reencode_link( $actions, $post ) {
746
-
747
- $mime_type_array = explode( '/', $post->post_mime_type );
748
- if ( is_array( $mime_type_array ) && '' !== $mime_type_array && 'video' === $mime_type_array[0] ) {
749
- $actions['reencode'] = '<a class="submitdelete" onclick="return rtmedia_regenerate_thumbs(' . esc_attr( $post->ID ) . ')" href="#">' . esc_html_e( 'Regenerate Thumbnail', 'buddypress-media' ) . '</a>';
750
- }
751
-
752
- return $actions;
753
- }
754
-
755
- /**
756
- * Do the bulk video/media handler.
757
- *
758
- * @access public
759
- *
760
- * @param void
761
- *
762
- * @return void
763
- */
764
- public function bulk_action_handler() {
765
- $action = filter_input( INPUT_GET, 'action', FILTER_SANITIZE_STRING );
766
- $request_media = filter_input( INPUT_GET, 'media', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY );
767
-
768
- if ( 'bulk_video_regenerate_thumbnails' === $action && '' !== $request_media ) {
769
- wp_safe_redirect( esc_url_raw( add_query_arg( array( 'media_ids' => urlencode( implode( ',', array_map( 'intval', $request_media ) ) ) ), admin_url( 'admin.php?page=rtmedia-regenerate' ) ) ) );
770
- exit;
771
- }
772
- }
773
-
774
  /**
775
  * Add admin bar menu
776
  *
@@ -1011,216 +1008,6 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
1011
  ) );
1012
  }
1013
 
1014
- $obj_encoding = new RTMediaEncoding( true );
1015
-
1016
- if ( $obj_encoding->api_key ) {
1017
- add_submenu_page( 'rtmedia-settings', esc_html__( 'Regenerate Thumbnail', 'buddypress-media' ), esc_html__( 'Regen. Thumbnail ', 'buddypress-media' ), 'manage_options', 'rtmedia-regenerate', array(
1018
- $this,
1019
- 'rt_regenerate_thumbnail',
1020
- ) );
1021
- }
1022
- }
1023
-
1024
- /**
1025
- * Define regenerate thumbnail functionality.
1026
- *
1027
- * @access public
1028
- *
1029
- * @param void
1030
- *
1031
- * @return void
1032
- */
1033
- public function rt_regenerate_thumbnail() {
1034
- $prog = new rtProgress();
1035
- $done = $total = 0;
1036
- ?>
1037
- <div class="wrap">
1038
- <h2> <?php esc_html_e( 'rtMedia: Regenerate Video Thumbnails', 'buddypress-media' ); ?> </h2>
1039
- <?php
1040
- $request_mediaids = filter_input( INPUT_GET, 'media', FILTER_DEFAULT, FILTER_SANITIZE_STRING );
1041
- if ( isset( $request_mediaids ) && trim( $request_mediaids ) !== '' ) {
1042
- $requested = false;
1043
- $media_ids = explode( ',', $request_mediaids );
1044
- $total = count( $media_ids );
1045
- } else {
1046
- $media_ids = get_video_without_thumbs();
1047
- if ( is_array( $media_ids ) ) {
1048
- $total = count( $media_ids );
1049
- }
1050
- }
1051
- ?>
1052
- <script>
1053
- var rt_thumb_all_media = <?php echo wp_json_encode( $media_ids ); ?>;
1054
- </script>
1055
- <?php
1056
- if ( ! isset( $requested ) ) {
1057
- ?>
1058
- <br/>
1059
- <p>
1060
- <?php esc_html_e( 'You can see this page because you have ', 'buddypress-media' ) ?>
1061
- <a href='<?php echo esc_url( admin_url( 'admin.php?page=rtmedia-addons' ) ); ?>'><?php esc_html_e( 'subscribed', 'buddypress-media' ) ?></a>
1062
- <?php esc_html_e( ' for ', 'buddypress-media' ) ?>
1063
- <a href='<?php echo esc_url( 'https://rtmedia.io/audio-video-encoding-service/' ); ?>' target='_blank'><?php esc_html_e( 'rtMedia audio/video encoding service', 'buddypress-media' ) ?></a>.
1064
- </p>
1065
- <p>
1066
- <?php esc_html_e( 'You can regenerate thumbnails of a specific video by visiting ', 'buddypress-media' ) ?>
1067
- <a href='<?php echo esc_url( admin_url( 'upload.php?post_mime_type=video' ) ); ?>'><?php esc_html_e( 'media page', 'buddypress-media' ); ?></a>
1068
- <?php esc_html_e( ' and clicking the ', 'buddypress-media' ) ?>
1069
- <b><?php esc_html_e( 'Regenerate Thumbnail', 'buddypress-media' ) ?></b>
1070
- <?php esc_html_e( ' option for that particular video.', 'buddypress-media' ) ?>
1071
- </p>
1072
- <p>
1073
- <?php esc_html_e( 'Click ', 'buddypress-media' ) ?>
1074
- <b><?php esc_html_e( 'Regenerate Pending Thumbnails', 'buddypress-media' ) ?></b>
1075
- <?php esc_html_e( ' to regenerate thumbnails of pending videos.', 'buddypress-media' ) ?>
1076
- </p>
1077
- <p>
1078
- <input type="button" class="button button-primary" id="rt-start-media-regenerate"
1079
- value="<?php echo esc_attr__( 'Regenerate Pending Thumbnails', 'buddypress-media' ) . ' (' . esc_attr( $total ) . ')'; ?>"/>
1080
- <?php wp_nonce_field( '_rt-start-media-regenerate_', 'rt-regenerate-nonce' ); ?>
1081
- </p>
1082
- <?php
1083
- }
1084
- ?>
1085
- <div id="rt-migration-progress">
1086
- <br/> <br/>
1087
- <?php
1088
- $temp = $prog->progress( $done, $total );
1089
- $prog->progress_ui( $temp, true );
1090
- ?>
1091
- <p> <?php esc_html_e( 'Total Videos', 'buddypress-media' ) ?> : <span
1092
- class='rt-total'><?php echo esc_html( $total ); ?></span>
1093
- </p>
1094
-
1095
- <p> <?php esc_html_e( 'Sent of regenerate thumbails', 'buddypress-media' ) ?> : <span
1096
- class='rt-done'>0</span></p>
1097
-
1098
- <p> <?php esc_html_e( 'Fail to regenerate thumbails', 'buddypress-media' ) ?> : <span
1099
- class='rt-fail'>0</span></p>
1100
-
1101
- </div>
1102
- <script>
1103
-
1104
- var db_done = 0;
1105
- var db_fail = 0;
1106
- var db_total = <?php echo esc_js( $total ); ?>;
1107
- var indx = 0;
1108
- function db_start_regenrate() {
1109
- if (indx < db_total) {
1110
- jQuery.ajax({
1111
- url: rtmedia_admin_ajax,
1112
- type: 'post',
1113
- data: {
1114
- "action": "rt_media_regeneration",
1115
- "media_id": rt_thumb_all_media[indx++],
1116
- "_rtm_nonce": jQuery('#rt-regenerate-nonce').val()
1117
- },
1118
- success: function (data) {
1119
- data = JSON.parse(data);
1120
-
1121
- if (data.status == false) {
1122
- handle_regenrate_fail();
1123
- } else {
1124
- db_done++;
1125
- var progw = Math.ceil(( db_done / db_total ) * 100);
1126
- if (progw > 100) {
1127
- progw = 100;
1128
- }
1129
- jQuery('#rtprogressbar>div').css('width', progw + '%');
1130
- jQuery('span.rt-done').html(db_done);
1131
- db_start_regenrate();
1132
- }
1133
- },
1134
- error: function () {
1135
- handle_regenrate_fail();
1136
- }
1137
- });
1138
- } else {
1139
- alert("<?php esc_html_e( 'Regenerate Video Thumbnails Done', 'buddypress-media' ); ?>");
1140
- }
1141
- }
1142
- function handle_regenrate_fail() {
1143
- db_fail++;
1144
- jQuery('span.rt-fail').html(db_fail);
1145
- db_start_regenrate();
1146
- }
1147
- $media_regenerate = jQuery("#rt-start-media-regenerate");
1148
- if ($media_regenerate.length > 0) {
1149
- jQuery("#rt-migration-progress").hide();
1150
- $media_regenerate.click(function () {
1151
- jQuery(this).hide();
1152
- jQuery("#rt-migration-progress").show();
1153
- db_start_regenrate();
1154
- })
1155
- } else {
1156
- db_start_regenrate();
1157
- }
1158
-
1159
- </script>
1160
-
1161
-
1162
- </div> <?php
1163
- }
1164
-
1165
- /**
1166
- * Generate rtmedia thumbnail notice.
1167
- *
1168
- * @access public
1169
- *
1170
- * @param void
1171
- *
1172
- * @return void
1173
- */
1174
- public function rtmedia_regenerate_thumbnail_notice() {
1175
- $obj_encoding = new RTMediaEncoding( true );
1176
- if ( $obj_encoding->api_key ) {
1177
- $site_option = rtmedia_get_site_option( 'rtmedia-video-thumb-notice' );
1178
- if ( ! $site_option || 'hide' !== $site_option ) {
1179
- rtmedia_update_site_option( 'rtmedia-video-thumb-notice', 'show' );
1180
- $videos_without_thumbs = get_video_without_thumbs();
1181
- if ( isset( $videos_without_thumbs ) && is_array( $videos_without_thumbs ) && count( $videos_without_thumbs ) > 0 ) {
1182
- ?>
1183
- <div class="error rtmedia-regenerate-video-thumb-error">
1184
- <p>
1185
- <?php printf( esc_html__( 'You have %s videos without thumbnails. Click ', 'buddypress-media' ), esc_html( count( $videos_without_thumbs ) ) );?>
1186
- <a href='<?php echo esc_url( admin_url( 'admin.php?page=rtmedia-regenerate' ) ); ?>'><?php esc_html_e( 'here', 'buddypress-media' ); ?></a>
1187
- <?php esc_html_e( ' to generate thumbnails.', 'buddypress-media' ) ?>
1188
- <a href='#' onclick='rtmedia_hide_video_thumb_notice()' style='float:right'>Hide</a>.
1189
- <?php wp_nonce_field( '_rtmedia_hide_video_thumb_notice_', 'rtm_hide_video_thumb_notice' ); ?>
1190
- </p>
1191
- </div>
1192
- <script type="text/javascript">
1193
- function rtmedia_hide_video_thumb_notice() {
1194
- var data = {action: 'rtmedia_hide_video_thumb_admin_notice', _rtm_nonce:jQuery('#rtm_hide_video_thumb_notice').val()};
1195
- jQuery.post(ajaxurl, data, function (response) {
1196
- response = response.trim();
1197
- if (response === "1")
1198
- jQuery('.rtmedia-regenerate-video-thumb-error').remove();
1199
- });
1200
- }
1201
- </script>
1202
- <?php
1203
- }
1204
- }
1205
- }
1206
- }
1207
-
1208
- /**
1209
- * Hide rtmedia video thumb admin notice.
1210
- *
1211
- * @access public
1212
- *
1213
- * @param void
1214
- *
1215
- * @return void
1216
- */
1217
- public function rtmedia_hide_video_thumb_admin_notice() {
1218
- if ( check_ajax_referer( '_rtmedia_hide_video_thumb_notice_', '_rtm_nonce' ) && rtmedia_update_site_option( 'rtmedia-video-thumb-notice', 'hide' ) ) {
1219
- echo '1';
1220
- } else {
1221
- echo '0';
1222
- }
1223
- die();
1224
  }
1225
 
1226
  /**
@@ -1241,38 +1028,6 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
1241
  die();
1242
  }
1243
 
1244
- /**
1245
- * Define rt_media_regeneration.
1246
- *
1247
- * @access public
1248
- *
1249
- * @param void
1250
- *
1251
- * @return void
1252
- */
1253
- public function rt_media_regeneration() {
1254
- if ( ! check_ajax_referer( '_rt-start-media-regenerate_', '_rtm_nonce' ) ) {
1255
- wp_send_json( false );
1256
- }
1257
- $media_id = sanitize_text_field( intval( $_POST['media_id'] ) );
1258
- if ( isset( $media_id ) ) {
1259
- $model = new RTMediaModel();
1260
- $media = $model->get_media( array( 'media_id' => $media_id ), 0, 1 );
1261
- $media_type = $media[0]->media_type;
1262
- $response = array();
1263
- if ( 'video' === $media_type ) {
1264
- $obj_rtmedia_encoding = new RTMediaEncoding( true );
1265
- $autoformat = 'thumbnails';
1266
- $obj_rtmedia_encoding->reencoding( $media_id, $autoformat );
1267
- $response['status'] = true;
1268
- } else {
1269
- $response['status'] = false;
1270
- $response['message'] = esc_html__( 'not a video ...', 'buddypress-media' );
1271
- }
1272
- echo wp_json_encode( $response );
1273
- die();
1274
- }
1275
- }
1276
 
1277
  /**
1278
  * Render the BuddyPress Media Settings page.
@@ -1957,93 +1712,6 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
1957
  wp_die();
1958
  }
1959
 
1960
- function edit_video_thumbnail( $form_fields, $post ) {
1961
- if ( isset( $post->post_mime_type ) ) {
1962
- $media_type = explode( '/', $post->post_mime_type );
1963
- if ( is_array( $media_type ) && 'video' === $media_type[0] ) {
1964
- $media_id = $post->ID;
1965
- $thumbnail_array = get_post_meta( $media_id, 'rtmedia_media_thumbnails', true );
1966
- $rtmedia_model = new RTMediaModel();
1967
- $rtmedia_media = $rtmedia_model->get( array( 'media_id' => $media_id ) );
1968
- $video_thumb_html = '';
1969
- if ( is_array( $thumbnail_array ) ) {
1970
- $video_thumb_html .= '<ul> ';
1971
-
1972
- foreach ( $thumbnail_array as $key => $thumbnail_src ) {
1973
- $checked = checked( $thumbnail_src, $rtmedia_media[0]->cover_art, false );
1974
- $count = $key + 1;
1975
- $video_thumb_html .= '<li style="width: 150px;display: inline-block;">
1976
- <label for="rtmedia-upload-select-thumbnail-' . esc_attr( $count ) . '">
1977
- <input type="radio" ' . esc_attr( $checked ) . ' id="rtmedia-upload-select-thumbnail-' . esc_attr( $count ) . '" value="' . esc_url( $thumbnail_src ) . '" name="rtmedia-thumbnail" />
1978
- <img src=" ' . esc_url( $thumbnail_src ) . '" style="max-height: 120px;max-width: 120px; vertical-align: middle;" />
1979
- </label></li> ';
1980
- }
1981
-
1982
- $video_thumb_html .= ' </ul>';
1983
- $form_fields['rtmedia_video_thumbnail'] = array(
1984
- 'label' => 'Video Thumbnails',
1985
- 'input' => 'html',
1986
- 'html' => $video_thumb_html,
1987
- );
1988
- }
1989
- }
1990
- }
1991
-
1992
- return $form_fields;
1993
- }
1994
-
1995
- function save_video_thumbnail( $post ) {
1996
- $rtmedia_thumbnail = filter_input( INPUT_POST, 'rtmedia-thumbnail', FILTER_SANITIZE_STRING );
1997
- $id = filter_input( INPUT_POST, 'ID', FILTER_SANITIZE_NUMBER_INT );
1998
- if ( isset( $rtmedia_thumbnail ) ) {
1999
- $rtmedia_model = new RTMediaModel();
2000
- $model = new RTMediaModel();
2001
- $media = $model->get( array( 'media_id' => $id ) );
2002
- $media_id = $media[0]->id;
2003
- $rtmedia_model->update( array( 'cover_art' => $rtmedia_thumbnail ), array( 'media_id' => $id ) );
2004
- update_activity_after_thumb_set( $media_id );
2005
- }
2006
-
2007
- return $post;
2008
- }
2009
-
2010
- function rtmedia_regenerate_thumb_js() {
2011
- global $pagenow;
2012
-
2013
- if ( 'upload.php' === $pagenow ) {
2014
- ?>
2015
- <script type="text/javascript">
2016
- function rtmedia_regenerate_thumbs(post_id) {
2017
- if (post_id != "") {
2018
- var data = {
2019
- action: 'rt_media_regeneration',
2020
- media_id: post_id
2021
- };
2022
- jQuery.post(ajaxurl, data, function (data) {
2023
- data = JSON.parse(data);
2024
- if (data.status === true) {
2025
- alert("<?php esc_html_e( 'Video is sent to generate thumbnails.', 'buddypress-media' ) ?>");
2026
- } else {
2027
- alert("<?php esc_html_e( 'Video cannot be sent to generate thumbnails.', 'buddypress-media' ) ?>");
2028
- }
2029
- });
2030
- }
2031
- }
2032
- </script>
2033
- <?php
2034
- }
2035
- }
2036
-
2037
- function add_bulk_actions_regenerate() {
2038
- ?>
2039
- <script type="text/javascript">
2040
- jQuery(document).ready(function ($) {
2041
- $('select[name^="action"] option:last-child').before('<option value="bulk_video_regenerate_thumbnails"><?php esc_html_e( 'Regenerate Video Thumbnails', 'buddypress-media' ); ?></option>');
2042
- });
2043
- </script>
2044
- <?php
2045
- }
2046
-
2047
  function rtmedia_update_template_notice() {
2048
  $site_option = rtmedia_get_site_option( 'rtmedia-update-template-notice-v3_9_4' );
2049
 
49
  add_action( 'wp_ajax_rtmedia_correct_upload_filetypes', array( $this, 'correct_upload_filetypes' ), 1 );
50
  add_filter( 'plugin_row_meta', array( $this, 'plugin_meta_premium_addon_link' ), 1, 2 );
51
  add_action( 'wp_dashboard_setup', array( $this, 'add_dashboard_widgets' ), 0 );
 
 
 
 
 
 
52
  add_action( 'wp_ajax_rtmedia_hide_addon_update_notice', array(
53
  $this,
54
  'rtmedia_hide_addon_update_notice',
55
  ), 1 );
56
  add_filter( 'media_row_actions', array( $this, 'modify_medialibrary_permalink' ), 10, 2 );
57
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  if ( ! isset( $rtmedia->options ) ) {
59
  $rtmedia->options = rtmedia_get_site_option( 'rtmedia-options' );
60
  }
61
 
62
+ // Show admin notice to install transcoder plugin.
63
+ if ( ! class_exists( 'RT_Transcoder_Admin' ) ) {
64
+ if ( is_multisite() ) {
65
+ add_action( 'network_admin_notices', array( $this, 'install_transcoder_admin_notice' ) );
66
+ }
67
+ add_action( 'admin_notices', array( $this, 'install_transcoder_admin_notice' ) );
68
+ add_action( 'wp_ajax_install_transcoder_hide_admin_notice', array( $this, 'install_transcoder_hide_admin_notice' ) );
69
+ }
70
+
71
  $rtmedia_option = filter_input( INPUT_POST, 'rtmedia-options', FILTER_DEFAULT, FILTER_SANITIZE_NUMBER_INT );
72
  if ( isset( $rtmedia_option ) ) {
73
  if ( isset( $rtmedia_option['general_showAdminMenu'] ) && 1 === intval( $rtmedia_option['general_showAdminMenu'] ) ) {
90
  }
91
 
92
  $this->rtmedia_settings = new RTMediaSettings();
 
93
 
94
  if ( ! class_exists( 'BuddyPress' ) ) {
95
  add_action( 'admin_init', array( $this, 'check_permalink_admin_notice' ) );
124
  add_action( 'admin_footer', array( $this, 'rtm_admin_templates' ) );
125
  }
126
 
127
+ /**
128
+ * Display admin notice.
129
+ */
130
+ function install_transcoder_admin_notice() {
131
+ $show_notice = get_site_option( 'install_transcoder_admin_notice', 1 );
132
+ if ( '1' === $show_notice || 1 === $show_notice ) :
133
+ ?>
134
+ <div class="notice notice-info install-transcoder-notice is-dismissible">
135
+ <?php wp_nonce_field( '_install_transcoder_hide_notice_', 'install_transcoder_hide_notice_nonce' ); ?>
136
+ <p>
137
+ <?php
138
+ $allowed_tags = array(
139
+ 'a' => array(
140
+ 'href' => array(),
141
+ 'target' => array(),
142
+ ),
143
+ );
144
+ echo wp_kses( __( 'Install <a href="https://wordpress.org/plugins/transcoder/" target="_blank">Transcoder plugin</a> to convert audio/video files and thumbnails generation.', 'buddypress-media' ), $allowed_tags );
145
+ ?>
146
+ </p>
147
+ </div>
148
+ <script type="text/javascript">
149
+ jQuery( document ).ready( function() {
150
+ jQuery( '.install-transcoder-notice.is-dismissible' ).on( 'click', '.notice-dismiss', function() {
151
+ var data = {
152
+ action: 'install_transcoder_hide_admin_notice',
153
+ install_transcoder_notice_nonce: jQuery('#install_transcoder_hide_notice_nonce').val()
154
+ };
155
+ jQuery.post( ajaxurl, data, function ( response ) {
156
+ jQuery('.install-transcoder-notice').remove();
157
+ });
158
+ });
159
+ });
160
+ </script>
161
+ <?php
162
+ endif;
163
+ }
164
+ /**
165
+ * Set option to hide admin notice when user click on dismiss button.
166
+ */
167
+ function install_transcoder_hide_admin_notice() {
168
+ if ( check_ajax_referer( '_install_transcoder_hide_notice_', 'install_transcoder_notice_nonce' ) ) {
169
+ update_site_option( 'install_transcoder_admin_notice', '0' );
170
+ }
171
+ die();
172
+ }
173
+
174
  function rtm_admin_templates() {
175
  foreach ( glob( RTMEDIA_PATH . 'app/admin/templates/*.php' ) as $filename ) {
176
  $slug = rtrim( basename( $filename ), '.php' );
228
  public function rtmedia_admin_notices() {
229
  if ( current_user_can( 'list_users' ) ) {
230
  $this->upload_filetypes_error();
 
231
  $this->rtmedia_addon_update_notice();
232
  $this->rtmedia_update_template_notice();
233
 
477
  <div class="error rtmedia-addon-upate-notice">
478
  <p>
479
  <strong><?php esc_html_e( 'rtMedia:', 'buddypress-media' ) ?></strong>
480
+ <?php esc_html_e( 'Please update all premium add-ons that you have purchased from', 'buddypress-media' ) ?>
481
  <a href="https://rtmedia.io/my-account/"
482
  target="_blank"><?php esc_html_e( 'your account', 'buddypress-media' ) ?></a>.
483
  <a href="#" onclick="rtmedia_hide_addon_update_notice()"
768
  return $links;
769
  }
770
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
771
  /**
772
  * Add admin bar menu
773
  *
1008
  ) );
1009
  }
1010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011
  }
1012
 
1013
  /**
1028
  die();
1029
  }
1030
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
 
1032
  /**
1033
  * Render the BuddyPress Media Settings page.
1712
  wp_die();
1713
  }
1714
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1715
  function rtmedia_update_template_notice() {
1716
  $site_option = rtmedia_get_site_option( 'rtmedia-update-template-notice-v3_9_4' );
1717
 
app/admin/RTMediaFormHandler.php CHANGED
@@ -807,31 +807,6 @@ class RTMediaFormHandler {
807
  <?php
808
  $options = $rtmedia->options;
809
 
810
- // Checking if user has subscribed any plan for encoding
811
- $rtmedia_encoding_api_key = get_rtmedia_encoding_api_key();
812
-
813
- if ( isset( $rtmedia_encoding_api_key ) && '' !== $rtmedia_encoding_api_key && $rtmedia_encoding_api_key ) {
814
- $render_video_thumb = array(
815
- 'title' => esc_html__( 'Number of thumbnails to generate on video upload', 'buddypress-media' ),
816
- 'callback' => array( 'RTMediaFormHandler', 'number' ),
817
- 'args' => array(
818
- 'key' => 'general_videothumbs',
819
- 'value' => $options['general_videothumbs'],
820
- 'class' => array( 'rtmedia-setting-text-box' ),
821
- 'desc' => esc_html__( ' If you choose more than 1 thumbnail, your users will be able to change the thumbnail by going to video \'edit\' section. Maximum value is 10.', 'buddypress-media' ),
822
- 'min' => 1,
823
- 'max' => 10,
824
- ),
825
- );
826
- ?>
827
-
828
- <div class="rtm-option-wrapper">
829
- <?php self::render_option_group( esc_html__( 'Encoding Settings', 'buddypress-media' ) ); ?>
830
- <?php self::render_option_content( $render_video_thumb ); ?>
831
- </div>
832
- <?php
833
- }
834
-
835
  $render_jpeg_image_quality = array(
836
  'title' => esc_html__( 'JPEG/JPG image quality (1-100)', 'buddypress-media' ),
837
  'callback' => array( 'RTMediaFormHandler', 'number' ),
807
  <?php
808
  $options = $rtmedia->options;
809
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
810
  $render_jpeg_image_quality = array(
811
  'title' => esc_html__( 'JPEG/JPG image quality (1-100)', 'buddypress-media' ),
812
  'callback' => array( 'RTMediaFormHandler', 'number' ),
app/assets/admin/css/admin.css CHANGED
@@ -542,15 +542,18 @@ horizontal tab css
542
  text-transform: uppercase;
543
  background: #b4b4b4;
544
  border-radius: inherit;
545
- transition: 0.15s ease-out;
546
- transition-property: opacity background;
 
 
547
  }
548
  .switch-label:before, .switch-label:after {
549
  position: absolute;
550
  top: 50%;
551
  margin-top: -.5em;
552
  line-height: 1;
553
- transition: inherit;
 
554
  }
555
  .switch-label:before {
556
  content: attr(data-off);
@@ -581,8 +584,10 @@ input[type=checkbox]:checked ~ .switch-label:after {
581
  background: white;
582
  border-radius: 10px;
583
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
 
584
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
585
- transition: left 0.15s ease-out;
 
586
  }
587
  .switch-handle:before {
588
  content: '';
@@ -595,6 +600,7 @@ input[type=checkbox]:checked ~ .switch-label:after {
595
  background: #f9f9f9;
596
  border-radius: 6px;
597
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
 
598
  background-image: linear-gradient(to bottom, #eee, white);
599
  }
600
  input[type=checkbox]:checked ~ .switch-handle {
@@ -635,7 +641,8 @@ input[type=checkbox]:checked ~ .switch-handle {
635
  visibility: hidden;
636
  width: 210px;
637
  z-index: 9999;
638
- transition: all ease-in-out 0.4s;
 
639
  }
640
 
641
  .rtm-tip-top {
542
  text-transform: uppercase;
543
  background: #b4b4b4;
544
  border-radius: inherit;
545
+ -webkit-transition: 0.15s ease-out;
546
+ transition: 0.15s ease-out;
547
+ -webkit-transition-property: opacity background;
548
+ transition-property: opacity background;
549
  }
550
  .switch-label:before, .switch-label:after {
551
  position: absolute;
552
  top: 50%;
553
  margin-top: -.5em;
554
  line-height: 1;
555
+ -webkit-transition: inherit;
556
+ transition: inherit;
557
  }
558
  .switch-label:before {
559
  content: attr(data-off);
584
  background: white;
585
  border-radius: 10px;
586
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
587
+ background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
588
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
589
+ -webkit-transition: left 0.15s ease-out;
590
+ transition: left 0.15s ease-out;
591
  }
592
  .switch-handle:before {
593
  content: '';
600
  background: #f9f9f9;
601
  border-radius: 6px;
602
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
603
+ background-image: -webkit-linear-gradient(top, #eee, white);
604
  background-image: linear-gradient(to bottom, #eee, white);
605
  }
606
  input[type=checkbox]:checked ~ .switch-handle {
641
  visibility: hidden;
642
  width: 210px;
643
  z-index: 9999;
644
+ -webkit-transition: all ease-in-out 0.4s;
645
+ transition: all ease-in-out 0.4s;
646
  }
647
 
648
  .rtm-tip-top {
app/assets/admin/css/admin.min.css CHANGED
@@ -1 +1 @@
1
- .alignleft{float:left}.alignright{float:right}.aligncenter{display:block;margin-left:auto;margin-right:auto;text-align:center}.clear-both{clear:both}.clear-none{clear:none}.clear-left{clear:left}.clear-right{clear:right}.rtm-inline-block{display:inline-block}.rtm-text-left{text-align:left}.rtm-text-right{text-align:right}.rtm-text-center{text-align:center}.rtm-border-0{border:0 !important}.hide{display:none}.clearfix:after{content:"";display:table;clear:both}.rtm-row-container{padding-top:10px}.rtm-admin-tab-container{display:table;width:100%}.rtm-admin-tab-container .rtm-tabs-content{background:#fff;border-left:1px solid #e7e7e7;display:table-cell;min-height:300px;padding:20px 30px;vertical-align:top}.rtm-setting-container{background-color:#f5f5f5;border:1px solid #dedede;box-shadow:0 1px 1px rgba(0,0,0,0.04);margin-top:10px}.rtm-sidebar .postbox .hndle{cursor:default}.rtm-tabs{display:table-cell;list-style:none;margin:0;min-height:300px;width:202px}.rtm-button-container{background:#f3f3f3;border-bottom:1px solid #dedede;box-shadow:0 1px 0 #fcfcfc inset;overflow:hidden;padding:6px 10px 6px 6px;position:relative;text-align:right}.rtm-button-container.bottom{background:#eee;border-top:1px solid #e7e7e7;box-shadow:0 0 0;z-index:999}#mce-EMAIL{width:100%}#mc-embedded-subscribe{display:block;margin:10px auto 0;width:100%}.rtm-social-links a{display:inline-block;margin:4px 0 4px 4px;text-decoration:none}.nav-tab.rtm-premium{background:#e74c3c;color:white;letter-spacing:0.5px}.rtm-setting-title{border-bottom:1px solid #eee;font-size:22px;font-weight:400;line-height:1;margin-bottom:20px;margin-top:0;padding-bottom:14px;display:none}.rtm-setting-title.rtm-show{display:block}.rtm-option-wrapper{margin-bottom:40px}.rtm-option-wrapper:last-child{margin-bottom:20px}.rtm-setting-title+.rtm-option-wrapper{margin-top:0}.rtm-option-wrapper:last-child{border-bottom:0}.rtm-option-wrapper .form-table{clear:none}.rtm-option-wrapper .rtm-field-wrap{float:left}.rtm-option-wrapper a{text-decoration:none}.rtm-option-wrapper .form-table th{color:#444;font-size:13px;font-weight:400;padding:5px 30px 5px 0;vertical-align:top;width:48%}.rtm-option-wrapper .form-table td{font-size:13px;padding:0 0 5px;vertical-align:top}.rtm-option-wrapper .form-table td fieldset label{display:block;margin:0 !important}.rtm-option-wrapper .form-table .rtm-form-radio label{margin-top:5px !important}.rtm-option-wrapper textarea,.rtm-option-wrapper select,.rtm-option-wrapper input[type=text],.rtm-option-wrapper input[type=number]{border-radius:3px}.rtm-option-wrapper input[type=number]{width:60px}.rtm-option-wrapper .rt-form-radio{height:28px;line-height:24px}.rtm-option-wrapper .rt-form-radio label:first-child{margin-right:12px !important}.rtm-option-wrapper .dashicons-info{color:#aaa;font-size:14px;height:26px;line-height:26px;position:relative}.rtm-option-wrapper .rtm-debug-info{margin-top:32px}.rtm-option-wrapper .rtm-debug-info tr{border-bottom:1px solid #eee}.rtm-option-wrapper .rtm-debug-info tr:first-child{border-top:1px solid #eee}.rtm-option-wrapper .rtm-debug-info tr:nth-child(2n){background-color:#f8f8f8}.rtm-option-wrapper .rtm-debug-info th{border-right:1px solid #eee;font-weight:600;width:auto}.rtm-option-wrapper .rtm-debug-info th,.rtm-option-wrapper .rtm-debug-info td{padding:10px}.rtm-option-title{border-bottom:1px solid #eee;font-size:14px;letter-spacing:0.02rem;margin-bottom:12px;margin-top:0;padding:0 0 6px;text-transform:uppercase}.rtm-sidebar .button{display:block;opacity:0.8;position:relative;text-decoration:none}.rtm-social-share .dashicons{font-size:18px;position:absolute;right:10px;top:4px}.rtm-social-share .twitter .dashicons{color:#45b0e3}.rtm-social-share .facebook .dashicons{color:#3b5998}.rtm-social-share .wordpress .dashicons{color:#21759b}.rtm-social-share .rss .dashicons{color:#FF6600}.rtm-social-share p:last-child{margin-bottom:0}.rtm-notice{background:rgba(238,238,238,0.8);color:#777;font-size:12px;line-height:1.6;margin-top:10px;overflow:hidden;padding:0 10px}.rtm-notice p{font-size:inherit;line-height:inherit;margin:10px 0}.rtm-warning{background-color:#fcf8e3;border-bottom:1px solid #EEE;color:#c09853;padding:10px 15px}.rtmedia-theme-warning{margin-bottom:26px}.rtm-success{background-color:#dff0d8;border-bottom:1px solid #e7e7e7;color:#468847;margin:0;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.rtm-fly-warning{border-bottom:0;left:-10px;letter-spacing:1px;line-height:22px;margin-bottom:0;padding:14px 25px;position:absolute;top:-5px}#rtmedia-types .form-table th{line-height:26px;padding:5px 0 20px;width:33%}#rtmedia-types .form-table td{padding:0 0 12px}#rtmedia-custom-css-settings .form-table th{width:35%}#rtmedia-custom-css-settings .form-table:last-child .rtm-field-wrap{width:92%}#rtmedia-custom-css-settings textarea{height:300px;width:100%}.rtm-img-size-setting .form-table th{border-bottom:1px solid #eee;padding-bottom:10px;padding-top:10px;width:20%}.rtm-img-size-setting .form-table tr:nth-child(2) td{padding-top:20px}.rtm-img-size-setting .form-table tr:nth-child(4){border-bottom:1px solid #eee}.rtm-img-size-setting .form-table tr:nth-child(4) td{padding-bottom:20px}.rtm-img-size-setting .form-table tr:nth-child(5) td{padding-top:20px}.rtm-img-size-setting .form-table tr:nth-child(6) td{padding-bottom:20px}.rtm-img-size-setting .form-table tr:nth-child(7){border-top:1px solid #eee}.rtm-img-size-setting .form-table tr:nth-child(7) td{padding-top:20px}.rtm-img-size-setting .form-table tr:nth-last-child(2) td{padding-bottom:20px}.rtm-img-size-setting .form-table tr:last-child{border-top:1px solid #eee}.rtm-img-size-setting .form-table tr:last-child td{padding-top:20px;padding-bottom:20px}.rtm-img-size-setting .form-table .rtm-row-title{font-weight:600}#rtmedia-privacy .rt-form-radio{font-size:12px}#rtmedia-privacy .rt-form-radio strong{font-size:13px}#rtmedia-encoding-usage strong{display:inline-block;min-width:120px}#rtmedia-encoding-usage p{overflow:hidden}.encoding-used,.encoding-remaining{background:#7AD03A;float:right;height:12px;margin-top:3px;width:12px}.encoding-remaining{background:#dedede}#rtprogressbar{background:#dedede;height:10px;position:relative}#rtprogressbar div{background:#7AD03A;height:10px;left:0;position:absolute}.rtm-tabs li{margin:0}.rtm-tabs a{border-bottom:1px solid #e7e7e7;border-top:1px solid #f2f2f2;color:#222;display:block;font-weight:700;outline:none;opacity:0.8;padding:10px 4px 10px 14px;position:relative;text-decoration:none;z-index:10}.rtm-tabs a:hover{background:#eee;color:#269ad6;margin-right:0;opacity:1;width:auto}.rtm-tabs a:focus{background:#fff;box-shadow:0 0 0}.rtm-tabs .active{background:white;position:relative}.rtm-tabs .active:after{background:#fff;content:' ';height:100%;position:absolute;right:-1px;top:0;width:1px}.rtm-tabs .active a{border-top-color:#fff;color:#222;opacity:1}.rtm-tabs .active a:hover{background:#fff}.rtm-tabs span{display:block;padding:0 0 0 25px}.rtm-tabs .dashicons{font-size:14px;height:auto;line-height:1;margin-top:3px;position:absolute;vertical-align:middle;width:auto}.rtm-horizotanl-tabs .rtm-tabs{list-style:none;margin:0;display:block;width:auto;min-height:0}.rtm-horizotanl-tabs .rtm-tabs-content{border-left:none;background:#fff;min-height:300px;padding:20px 30px;vertical-align:top}.rtm-horizotanl-tabs .rtm-tabs a{border-bottom:none}.rtm-horizotanl-tabs .rtm-tabs li{display:inline-block}.rtm-horizotanl-tabs.rtm-admin-tab-container{width:100%;display:block}.switch{position:relative;display:inline-block;vertical-align:top;width:58px;height:22px;padding:3px;border-radius:18px}.switch input[type=checkbox]{position:absolute;top:0;left:0;opacity:0}.switch-label{position:relative;display:block;height:inherit;color:#fff;font-size:12px;text-transform:uppercase;background:#b4b4b4;border-radius:inherit;transition:0.15s ease-out;transition-property:opacity background}.switch-label:before,.switch-label:after{position:absolute;top:50%;margin-top:-.5em;line-height:1;transition:inherit}.switch-label:before{content:attr(data-off);right:11px;color:#fff}.switch-label:after{content:attr(data-on);left:11px;opacity:0}input[type=checkbox]:checked ~ .switch-label{background:#33a7d1}input[type=checkbox]:checked ~ .switch-label:before{opacity:0}input[type=checkbox]:checked ~ .switch-label:after{opacity:1}.switch-handle{position:absolute;top:5px;left:5px;width:18px;height:18px;background:white;border-radius:10px;box-shadow:1px 1px 5px rgba(0,0,0,0.2);background-image:linear-gradient(to bottom, #fff 40%, #f0f0f0);transition:left 0.15s ease-out}.switch-handle:before{content:'';position:absolute;top:50%;left:50%;margin:-6px 0 0 -6px;width:12px;height:12px;background:#f9f9f9;border-radius:6px;box-shadow:inset 0 1px rgba(0,0,0,0.02);background-image:linear-gradient(to bottom, #eee, #fff)}input[type=checkbox]:checked ~ .switch-handle{left:41px;box-shadow:-1px 1px 5px rgba(0,0,0,0.2)}.rtm-tooltip{display:inline-block;margin-left:3px;position:relative}.rtm-tooltip:hover .rtm-tip-top,.rtm-tooltip:hover .rtm-tip{margin-left:0;opacity:1;visibility:visible}.rtm-tooltip .rtm-title{border-bottom:1px dotted;padding-bottom:2px}.rtm-tip-top,.rtm-tip{background:#fffAF0;border:1px solid #f5deaf;border-radius:3px;font-size:12px;left:24px;margin-top:-4px;margin-left:-10px;line-height:1.5;opacity:0;padding:6px 12px;position:absolute;top:0;visibility:hidden;width:210px;z-index:9999;transition:all ease-in-out 0.4s}.rtm-tip-top{bottom:26px;left:auto;right:-66px;top:auto;width:200px}.rtm-tip-top:after,.rtm-tip-top:before{right:auto;top:100%;left:50%;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none}.rtm-tip-top:after{border-color:rgba(255,250,240,0);border-top-color:#fffAF0;border-width:6px;margin-left:-6px}.rtm-tip-top:before{border-color:rgba(245,222,175,0);border-top-color:#f5deaf;border-width:8px;margin-left:-8px}.rtm-extensions .dashicons{font-size:12px;margin-left:-4px;position:relative;top:-3px}.rtm-extensions.rtm-set-top .dashicons{top:1px}.rtm-plugin-card.plugin-card{margin:1%;overflow:hidden;width:48%}.rtm-plugin-card.plugin-card .rtm-logo{float:left;margin-right:10px;max-width:200px;width:auto}.rtm-plugin-card.plugin-card .rtm-logo img{height:auto;max-width:120px}.rtm-plugin-card.plugin-card .desc,.rtm-plugin-card.plugin-card .name{margin-left:0;margin-right:0;overflow:hidden}.rtm-plugin-card.plugin-card h4{margin-bottom:0;margin-top:0}.rtm-plugin-card.plugin-card a{text-decoration:none}.rtm-plugin-card.plugin-card .rtm-live-demo{margin-right:10px}.rtm-plugin-card.plugin-card .price{color:#269ad6;font-size:22px;line-height:1.2}#rtm-plugins .rtm-option-title{margin-top:50px}#rtm-plugins .rtm-setting-title+.rtm-option-title{margin-top:0}#rtm-plugins .plugin-card-top{padding:10px}.rtm-encoding-table{border-collapse:collapse;clear:none}.rtm-encoding-table th,.rtm-encoding-table td{border:1px solid #e7e7e7}.rtm-encoding-table th{font-size:13px;font-weight:600}.rtm-theme-browser .rtm-themes{clear:none;padding:0}.rtm-theme-browser .rtm-themes .rtm-theme{width:48%}.rtm-theme-browser .rtm-themes .rtm-theme:nth-child(even){margin-right:0 !important}.rtm-theme-browser .rtm-themes .rtm-theme:nth-child(3n){margin-right:4%}.admin-bar .theme-overlay .theme-wrap{z-index:99999}.rtm-support-container{min-height:300px}.rtm-support-form .rtm-form-filed{clear:both;margin:15px 0}.rtm-support-form label{float:left;width:15%}.rtm-support-form .bp-media-textarea{height:80px}.rtm-button-wrapper{padding-left:15%}.rtm-page-container{background:#fff;overflow:hidden;padding:20px}.rtm-pro-feature-list li{box-sizing:border-box;float:left;padding:0 10px 20px;width:33%}.rtm-pro-feature-list .rtm-icon-wrap{float:left;margin-top:15px;width:30px}.rtm-pro-feature-list .dashicons{font-size:18px}.rtm-pro-feature-list .rtm-title{font-size:18px;margin-left:30px;margin-top:0px}.rtm-pro-feature-list .rtm-content{font-size:14px;line-height:25px;margin-left:30px;color:#8a8a8a;width:auto}.rtm-update-to-pro{text-align:center}.rtm-button{background-color:#269ad6;border:0;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:1px;line-height:1;margin-bottom:10px;padding:12px 26px;text-align:center;text-decoration:none;text-transform:uppercase}.rtm-button:hover,.rtm-button:focus{background-color:#228ac0;color:#fff}.rtm-button.large{font-size:16px;margin-bottom:20px;padding:20px 40px}.rtm-button.rtm-button-success{background-color:#2ecc71}.rtm-button.rtm-button-success:hover,.rtm-button.rtm-button-success:focus{background-color:#2fab41}.rtm-hire-points{font-size:14px;margin-bottom:24px}@media only screen and (min-width: 1025px){.rtm-setting-container{float:left;width:78.2%}.rtm-sidebar{float:right;width:20%}.rtm-sidebar .postbox{min-width:0}.rtm-field-wrap{max-width:92%}.rtm-tip:after,.rtm-tip:before{right:100%;top:15px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.rtm-tip:after{border-color:rgba(255,250,240,0);border-right-color:#fffAF0;border-width:6px;margin-top:-6px}.rtm-tip:before{border-color:rgba(221,204,170,0);border-right-color:#f5deaf;border-width:7px;margin-top:-7px}.rtm-support-form .bp-media-input,.rtm-support-form .bp-media-textarea{float:left;width:40%}}@media only screen and (min-width: 641px) and (max-width: 1024px){.rtm-sidebar{width:100%}.rtm-sidebar .postbox{display:inline-block;margin-left:5px;vertical-align:top}.rtm-sidebar .postbox:first-child{margin-left:0}}@media screen and (max-width: 1024px){.rtm-tip{bottom:26px;left:auto;right:-102px;top:auto;width:200px}.rtm-tip:after,.rtm-tip:before{right:auto;top:100%;left:50%;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none}.rtm-tip:after{border-color:rgba(255,250,240,0);border-top-color:#fffAF0;border-width:6px;margin-left:-6px}.rtm-tip:before{border-color:rgba(245,222,175,0);border-top-color:#f5deaf;border-width:7px;margin-left:-7px}#rtmedia-custom-css-settings .form-table:last-child .rtm-field-wrap{width:100%}.rtm-field-wrap input[type=text]{max-width:140px !important}.theme-browser .theme:nth-child(2n+1){margin-right:4%}.rtmedia-settings-submit{margin-bottom:0 !important}}@media only screen and (min-width: 641px){.rtm-pro-feature-list li:nth-child(3n+1){clear:left}}@media screen and (min-width: 421px) and (max-width: 782px){.rtm-option-wrapper .form-table td{display:table-cell}.rtm-option-wrapper .form-table th{display:table-cell}}@media only screen and (max-width: 640px){.rtm-pro-feature-list li{width:50%}.rtm-pro-feature-list li:nth-child(2n+1){clear:left}.rtm-tabs{width:40px}.rtm-tabs li{width:40px}.rtm-tabs a{height:18px}.rtm-tabs a:hover{width:140px}.rtm-tabs a:hover span{display:block}.rtm-tabs span{display:none;padding:0 0 0 28px;position:absolute}.rtm-support-form label{width:100%;margin-bottom:5px}.rtm-support-form .bp-media-input,.rtm-support-form .bp-media-textarea{width:70%}.rtm-button-wrapper{padding-left:0}}@media screen and (max-width: 481px){.rtm-plugin-card.plugin-card .rtm-logo{display:inline-block;float:none}.rtm-theme-browser .rtm-themes .rtm-theme{margin:0 0 20px;width:100%}}@media screen and (max-width: 420px){.rtm-option-wrapper .form-table th{padding-bottom:15px;width:100%}#rtmedia-types .form-table th,#rtmedia-custom-css-settings .form-table th{width:100%}.rtm-pro-feature-list li{width:100%}.rtm-tip-top{right:-115px}}body.rtl .rtm-tabs a{padding:10px 32px 10px 4px}body.rtl .rtm-tabs .dashicons{right:10px}body.rtl .rtm-social-share .dashicons{left:10px;right:auto}body.rtl .rtm-option-wrapper .rtm-field-wrap{float:right}body.rtl .rtm-tip-top,body.rtl .rtm-tip{left:auto;right:24px}body.rtl .rtm-tip-top:after,body.rtl .rtm-tip-top:before,body.rtl .rtm-tip:after,body.rtl .rtm-tip:before{display:none}body.rtl .rtm-edit-td,body.rtl .rtm-delete-td{float:right;margin-left:0}body.rtl .rtm-edit-td{margin-right:-15px}body.rtl #rtmedia-membership span.float-right{float:left}body.rtl .theme-browser .theme{float:left;margin:0 4% 4% 0}.rtmedia-license .rtm-tabs span{padding:0}
1
+ .alignleft{float:left}.alignright{float:right}.aligncenter{display:block;margin-left:auto;margin-right:auto;text-align:center}.clear-both{clear:both}.clear-none{clear:none}.clear-left{clear:left}.clear-right{clear:right}.rtm-inline-block{display:inline-block}.rtm-text-left{text-align:left}.rtm-text-right{text-align:right}.rtm-text-center{text-align:center}.rtm-border-0{border:0 !important}.hide{display:none}.clearfix:after{content:"";display:table;clear:both}.rtm-row-container{padding-top:10px}.rtm-admin-tab-container{display:table;width:100%}.rtm-admin-tab-container .rtm-tabs-content{background:#fff;border-left:1px solid #e7e7e7;display:table-cell;min-height:300px;padding:20px 30px;vertical-align:top}.rtm-setting-container{background-color:#f5f5f5;border:1px solid #dedede;box-shadow:0 1px 1px rgba(0,0,0,0.04);margin-top:10px}.rtm-sidebar .postbox .hndle{cursor:default}.rtm-tabs{display:table-cell;list-style:none;margin:0;min-height:300px;width:202px}.rtm-button-container{background:#f3f3f3;border-bottom:1px solid #dedede;box-shadow:0 1px 0 #fcfcfc inset;overflow:hidden;padding:6px 10px 6px 6px;position:relative;text-align:right}.rtm-button-container.bottom{background:#eee;border-top:1px solid #e7e7e7;box-shadow:0 0 0;z-index:999}#mce-EMAIL{width:100%}#mc-embedded-subscribe{display:block;margin:10px auto 0;width:100%}.rtm-social-links a{display:inline-block;margin:4px 0 4px 4px;text-decoration:none}.nav-tab.rtm-premium{background:#e74c3c;color:white;letter-spacing:0.5px}.rtm-setting-title{border-bottom:1px solid #eee;font-size:22px;font-weight:400;line-height:1;margin-bottom:20px;margin-top:0;padding-bottom:14px;display:none}.rtm-setting-title.rtm-show{display:block}.rtm-option-wrapper{margin-bottom:40px}.rtm-option-wrapper:last-child{margin-bottom:20px}.rtm-setting-title+.rtm-option-wrapper{margin-top:0}.rtm-option-wrapper:last-child{border-bottom:0}.rtm-option-wrapper .form-table{clear:none}.rtm-option-wrapper .rtm-field-wrap{float:left}.rtm-option-wrapper a{text-decoration:none}.rtm-option-wrapper .form-table th{color:#444;font-size:13px;font-weight:400;padding:5px 30px 5px 0;vertical-align:top;width:48%}.rtm-option-wrapper .form-table td{font-size:13px;padding:0 0 5px;vertical-align:top}.rtm-option-wrapper .form-table td fieldset label{display:block;margin:0 !important}.rtm-option-wrapper .form-table .rtm-form-radio label{margin-top:5px !important}.rtm-option-wrapper textarea,.rtm-option-wrapper select,.rtm-option-wrapper input[type=text],.rtm-option-wrapper input[type=number]{border-radius:3px}.rtm-option-wrapper input[type=number]{width:60px}.rtm-option-wrapper .rt-form-radio{height:28px;line-height:24px}.rtm-option-wrapper .rt-form-radio label:first-child{margin-right:12px !important}.rtm-option-wrapper .dashicons-info{color:#aaa;font-size:14px;height:26px;line-height:26px;position:relative}.rtm-option-wrapper .rtm-debug-info{margin-top:32px}.rtm-option-wrapper .rtm-debug-info tr{border-bottom:1px solid #eee}.rtm-option-wrapper .rtm-debug-info tr:first-child{border-top:1px solid #eee}.rtm-option-wrapper .rtm-debug-info tr:nth-child(2n){background-color:#f8f8f8}.rtm-option-wrapper .rtm-debug-info th{border-right:1px solid #eee;font-weight:600;width:auto}.rtm-option-wrapper .rtm-debug-info th,.rtm-option-wrapper .rtm-debug-info td{padding:10px}.rtm-option-title{border-bottom:1px solid #eee;font-size:14px;letter-spacing:0.02rem;margin-bottom:12px;margin-top:0;padding:0 0 6px;text-transform:uppercase}.rtm-sidebar .button{display:block;opacity:0.8;position:relative;text-decoration:none}.rtm-social-share .dashicons{font-size:18px;position:absolute;right:10px;top:4px}.rtm-social-share .twitter .dashicons{color:#45b0e3}.rtm-social-share .facebook .dashicons{color:#3b5998}.rtm-social-share .wordpress .dashicons{color:#21759b}.rtm-social-share .rss .dashicons{color:#FF6600}.rtm-social-share p:last-child{margin-bottom:0}.rtm-notice{background:rgba(238,238,238,0.8);color:#777;font-size:12px;line-height:1.6;margin-top:10px;overflow:hidden;padding:0 10px}.rtm-notice p{font-size:inherit;line-height:inherit;margin:10px 0}.rtm-warning{background-color:#fcf8e3;border-bottom:1px solid #EEE;color:#c09853;padding:10px 15px}.rtmedia-theme-warning{margin-bottom:26px}.rtm-success{background-color:#dff0d8;border-bottom:1px solid #e7e7e7;color:#468847;margin:0;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.rtm-fly-warning{border-bottom:0;left:-10px;letter-spacing:1px;line-height:22px;margin-bottom:0;padding:14px 25px;position:absolute;top:-5px}#rtmedia-types .form-table th{line-height:26px;padding:5px 0 20px;width:33%}#rtmedia-types .form-table td{padding:0 0 12px}#rtmedia-custom-css-settings .form-table th{width:35%}#rtmedia-custom-css-settings .form-table:last-child .rtm-field-wrap{width:92%}#rtmedia-custom-css-settings textarea{height:300px;width:100%}.rtm-img-size-setting .form-table th{border-bottom:1px solid #eee;padding-bottom:10px;padding-top:10px;width:20%}.rtm-img-size-setting .form-table tr:nth-child(2) td{padding-top:20px}.rtm-img-size-setting .form-table tr:nth-child(4){border-bottom:1px solid #eee}.rtm-img-size-setting .form-table tr:nth-child(4) td{padding-bottom:20px}.rtm-img-size-setting .form-table tr:nth-child(5) td{padding-top:20px}.rtm-img-size-setting .form-table tr:nth-child(6) td{padding-bottom:20px}.rtm-img-size-setting .form-table tr:nth-child(7){border-top:1px solid #eee}.rtm-img-size-setting .form-table tr:nth-child(7) td{padding-top:20px}.rtm-img-size-setting .form-table tr:nth-last-child(2) td{padding-bottom:20px}.rtm-img-size-setting .form-table tr:last-child{border-top:1px solid #eee}.rtm-img-size-setting .form-table tr:last-child td{padding-top:20px;padding-bottom:20px}.rtm-img-size-setting .form-table .rtm-row-title{font-weight:600}#rtmedia-privacy .rt-form-radio{font-size:12px}#rtmedia-privacy .rt-form-radio strong{font-size:13px}#rtmedia-encoding-usage strong{display:inline-block;min-width:120px}#rtmedia-encoding-usage p{overflow:hidden}.encoding-used,.encoding-remaining{background:#7AD03A;float:right;height:12px;margin-top:3px;width:12px}.encoding-remaining{background:#dedede}#rtprogressbar{background:#dedede;height:10px;position:relative}#rtprogressbar div{background:#7AD03A;height:10px;left:0;position:absolute}.rtm-tabs li{margin:0}.rtm-tabs a{border-bottom:1px solid #e7e7e7;border-top:1px solid #f2f2f2;color:#222;display:block;font-weight:700;outline:none;opacity:0.8;padding:10px 4px 10px 14px;position:relative;text-decoration:none;z-index:10}.rtm-tabs a:hover{background:#eee;color:#269ad6;margin-right:0;opacity:1;width:auto}.rtm-tabs a:focus{background:#fff;box-shadow:0 0 0}.rtm-tabs .active{background:white;position:relative}.rtm-tabs .active:after{background:#fff;content:' ';height:100%;position:absolute;right:-1px;top:0;width:1px}.rtm-tabs .active a{border-top-color:#fff;color:#222;opacity:1}.rtm-tabs .active a:hover{background:#fff}.rtm-tabs span{display:block;padding:0 0 0 25px}.rtm-tabs .dashicons{font-size:14px;height:auto;line-height:1;margin-top:3px;position:absolute;vertical-align:middle;width:auto}.rtm-horizotanl-tabs .rtm-tabs{list-style:none;margin:0;display:block;width:auto;min-height:0}.rtm-horizotanl-tabs .rtm-tabs-content{border-left:none;background:#fff;min-height:300px;padding:20px 30px;vertical-align:top}.rtm-horizotanl-tabs .rtm-tabs a{border-bottom:none}.rtm-horizotanl-tabs .rtm-tabs li{display:inline-block}.rtm-horizotanl-tabs.rtm-admin-tab-container{width:100%;display:block}.switch{position:relative;display:inline-block;vertical-align:top;width:58px;height:22px;padding:3px;border-radius:18px}.switch input[type=checkbox]{position:absolute;top:0;left:0;opacity:0}.switch-label{position:relative;display:block;height:inherit;color:#fff;font-size:12px;text-transform:uppercase;background:#b4b4b4;border-radius:inherit;-webkit-transition:0.15s ease-out;transition:0.15s ease-out;-webkit-transition-property:opacity background;transition-property:opacity background}.switch-label:before,.switch-label:after{position:absolute;top:50%;margin-top:-.5em;line-height:1;-webkit-transition:inherit;transition:inherit}.switch-label:before{content:attr(data-off);right:11px;color:#fff}.switch-label:after{content:attr(data-on);left:11px;opacity:0}input[type=checkbox]:checked ~ .switch-label{background:#33a7d1}input[type=checkbox]:checked ~ .switch-label:before{opacity:0}input[type=checkbox]:checked ~ .switch-label:after{opacity:1}.switch-handle{position:absolute;top:5px;left:5px;width:18px;height:18px;background:white;border-radius:10px;box-shadow:1px 1px 5px rgba(0,0,0,0.2);background-image:-webkit-linear-gradient(top, #fff 40%, #f0f0f0);background-image:linear-gradient(to bottom, #fff 40%, #f0f0f0);-webkit-transition:left 0.15s ease-out;transition:left 0.15s ease-out}.switch-handle:before{content:'';position:absolute;top:50%;left:50%;margin:-6px 0 0 -6px;width:12px;height:12px;background:#f9f9f9;border-radius:6px;box-shadow:inset 0 1px rgba(0,0,0,0.02);background-image:-webkit-linear-gradient(top, #eee, #fff);background-image:linear-gradient(to bottom, #eee, #fff)}input[type=checkbox]:checked ~ .switch-handle{left:41px;box-shadow:-1px 1px 5px rgba(0,0,0,0.2)}.rtm-tooltip{display:inline-block;margin-left:3px;position:relative}.rtm-tooltip:hover .rtm-tip-top,.rtm-tooltip:hover .rtm-tip{margin-left:0;opacity:1;visibility:visible}.rtm-tooltip .rtm-title{border-bottom:1px dotted;padding-bottom:2px}.rtm-tip-top,.rtm-tip{background:#fffAF0;border:1px solid #f5deaf;border-radius:3px;font-size:12px;left:24px;margin-top:-4px;margin-left:-10px;line-height:1.5;opacity:0;padding:6px 12px;position:absolute;top:0;visibility:hidden;width:210px;z-index:9999;-webkit-transition:all ease-in-out 0.4s;transition:all ease-in-out 0.4s}.rtm-tip-top{bottom:26px;left:auto;right:-66px;top:auto;width:200px}.rtm-tip-top:after,.rtm-tip-top:before{right:auto;top:100%;left:50%;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none}.rtm-tip-top:after{border-color:rgba(255,250,240,0);border-top-color:#fffAF0;border-width:6px;margin-left:-6px}.rtm-tip-top:before{border-color:rgba(245,222,175,0);border-top-color:#f5deaf;border-width:8px;margin-left:-8px}.rtm-extensions .dashicons{font-size:12px;margin-left:-4px;position:relative;top:-3px}.rtm-extensions.rtm-set-top .dashicons{top:1px}.rtm-plugin-card.plugin-card{margin:1%;overflow:hidden;width:48%}.rtm-plugin-card.plugin-card .rtm-logo{float:left;margin-right:10px;max-width:200px;width:auto}.rtm-plugin-card.plugin-card .rtm-logo img{height:auto;max-width:120px}.rtm-plugin-card.plugin-card .desc,.rtm-plugin-card.plugin-card .name{margin-left:0;margin-right:0;overflow:hidden}.rtm-plugin-card.plugin-card h4{margin-bottom:0;margin-top:0}.rtm-plugin-card.plugin-card a{text-decoration:none}.rtm-plugin-card.plugin-card .rtm-live-demo{margin-right:10px}.rtm-plugin-card.plugin-card .price{color:#269ad6;font-size:22px;line-height:1.2}#rtm-plugins .rtm-option-title{margin-top:50px}#rtm-plugins .rtm-setting-title+.rtm-option-title{margin-top:0}#rtm-plugins .plugin-card-top{padding:10px}.rtm-encoding-table{border-collapse:collapse;clear:none}.rtm-encoding-table th,.rtm-encoding-table td{border:1px solid #e7e7e7}.rtm-encoding-table th{font-size:13px;font-weight:600}.rtm-theme-browser .rtm-themes{clear:none;padding:0}.rtm-theme-browser .rtm-themes .rtm-theme{width:48%}.rtm-theme-browser .rtm-themes .rtm-theme:nth-child(even){margin-right:0 !important}.rtm-theme-browser .rtm-themes .rtm-theme:nth-child(3n){margin-right:4%}.admin-bar .theme-overlay .theme-wrap{z-index:99999}.rtm-support-container{min-height:300px}.rtm-support-form .rtm-form-filed{clear:both;margin:15px 0}.rtm-support-form label{float:left;width:15%}.rtm-support-form .bp-media-textarea{height:80px}.rtm-button-wrapper{padding-left:15%}.rtm-page-container{background:#fff;overflow:hidden;padding:20px}.rtm-pro-feature-list li{box-sizing:border-box;float:left;padding:0 10px 20px;width:33%}.rtm-pro-feature-list .rtm-icon-wrap{float:left;margin-top:15px;width:30px}.rtm-pro-feature-list .dashicons{font-size:18px}.rtm-pro-feature-list .rtm-title{font-size:18px;margin-left:30px;margin-top:0px}.rtm-pro-feature-list .rtm-content{font-size:14px;line-height:25px;margin-left:30px;color:#8a8a8a;width:auto}.rtm-update-to-pro{text-align:center}.rtm-button{background-color:#269ad6;border:0;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:1px;line-height:1;margin-bottom:10px;padding:12px 26px;text-align:center;text-decoration:none;text-transform:uppercase}.rtm-button:hover,.rtm-button:focus{background-color:#228ac0;color:#fff}.rtm-button.large{font-size:16px;margin-bottom:20px;padding:20px 40px}.rtm-button.rtm-button-success{background-color:#2ecc71}.rtm-button.rtm-button-success:hover,.rtm-button.rtm-button-success:focus{background-color:#2fab41}.rtm-hire-points{font-size:14px;margin-bottom:24px}@media only screen and (min-width: 1025px){.rtm-setting-container{float:left;width:78.2%}.rtm-sidebar{float:right;width:20%}.rtm-sidebar .postbox{min-width:0}.rtm-field-wrap{max-width:92%}.rtm-tip:after,.rtm-tip:before{right:100%;top:15px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.rtm-tip:after{border-color:rgba(255,250,240,0);border-right-color:#fffAF0;border-width:6px;margin-top:-6px}.rtm-tip:before{border-color:rgba(221,204,170,0);border-right-color:#f5deaf;border-width:7px;margin-top:-7px}.rtm-support-form .bp-media-input,.rtm-support-form .bp-media-textarea{float:left;width:40%}}@media only screen and (min-width: 641px) and (max-width: 1024px){.rtm-sidebar{width:100%}.rtm-sidebar .postbox{display:inline-block;margin-left:5px;vertical-align:top}.rtm-sidebar .postbox:first-child{margin-left:0}}@media screen and (max-width: 1024px){.rtm-tip{bottom:26px;left:auto;right:-102px;top:auto;width:200px}.rtm-tip:after,.rtm-tip:before{right:auto;top:100%;left:50%;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none}.rtm-tip:after{border-color:rgba(255,250,240,0);border-top-color:#fffAF0;border-width:6px;margin-left:-6px}.rtm-tip:before{border-color:rgba(245,222,175,0);border-top-color:#f5deaf;border-width:7px;margin-left:-7px}#rtmedia-custom-css-settings .form-table:last-child .rtm-field-wrap{width:100%}.rtm-field-wrap input[type=text]{max-width:140px !important}.theme-browser .theme:nth-child(2n+1){margin-right:4%}.rtmedia-settings-submit{margin-bottom:0 !important}}@media only screen and (min-width: 641px){.rtm-pro-feature-list li:nth-child(3n+1){clear:left}}@media screen and (min-width: 421px) and (max-width: 782px){.rtm-option-wrapper .form-table td{display:table-cell}.rtm-option-wrapper .form-table th{display:table-cell}}@media only screen and (max-width: 640px){.rtm-pro-feature-list li{width:50%}.rtm-pro-feature-list li:nth-child(2n+1){clear:left}.rtm-tabs{width:40px}.rtm-tabs li{width:40px}.rtm-tabs a{height:18px}.rtm-tabs a:hover{width:140px}.rtm-tabs a:hover span{display:block}.rtm-tabs span{display:none;padding:0 0 0 28px;position:absolute}.rtm-support-form label{width:100%;margin-bottom:5px}.rtm-support-form .bp-media-input,.rtm-support-form .bp-media-textarea{width:70%}.rtm-button-wrapper{padding-left:0}}@media screen and (max-width: 481px){.rtm-plugin-card.plugin-card .rtm-logo{display:inline-block;float:none}.rtm-theme-browser .rtm-themes .rtm-theme{margin:0 0 20px;width:100%}}@media screen and (max-width: 420px){.rtm-option-wrapper .form-table th{padding-bottom:15px;width:100%}#rtmedia-types .form-table th,#rtmedia-custom-css-settings .form-table th{width:100%}.rtm-pro-feature-list li{width:100%}.rtm-tip-top{right:-115px}}body.rtl .rtm-tabs a{padding:10px 32px 10px 4px}body.rtl .rtm-tabs .dashicons{right:10px}body.rtl .rtm-social-share .dashicons{left:10px;right:auto}body.rtl .rtm-option-wrapper .rtm-field-wrap{float:right}body.rtl .rtm-tip-top,body.rtl .rtm-tip{left:auto;right:24px}body.rtl .rtm-tip-top:after,body.rtl .rtm-tip-top:before,body.rtl .rtm-tip:after,body.rtl .rtm-tip:before{display:none}body.rtl .rtm-edit-td,body.rtl .rtm-delete-td{float:right;margin-left:0}body.rtl .rtm-edit-td{margin-right:-15px}body.rtl #rtmedia-membership span.float-right{float:left}body.rtl .theme-browser .theme{float:left;margin:0 4% 4% 0}.rtmedia-license .rtm-tabs span{padding:0}
app/assets/css/rtmedia.css CHANGED
@@ -88,8 +88,6 @@
88
  }
89
 
90
  #buddypress form#whats-new-form textarea {
91
- -webkit-box-sizing: border-box;
92
- -moz-box-sizing: border-box;
93
  box-sizing: border-box;
94
  min-height: 70px;
95
  width: 100%;
@@ -131,13 +129,9 @@
131
  }
132
 
133
  .rtmedia-container {
134
- -webkit-box-sizing: border-box;
135
- -moz-box-sizing: border-box;
136
  box-sizing: border-box;
137
  }
138
  .rtmedia-container *, .rtmedia-container *:before, .rtmedia-container *:after {
139
- -webkit-box-sizing: inherit;
140
- -moz-box-sizing: inherit;
141
  box-sizing: inherit;
142
  }
143
 
@@ -354,7 +348,8 @@ button#rtmedia-add-media-button-post-update .dashicons {
354
  opacity: 0;
355
  position: absolute;
356
  text-align: center;
357
- transition: all ease-in-out 0.4s;
 
358
  width: 100%;
359
  z-index: 9;
360
  }
@@ -554,8 +549,6 @@ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span {
554
  left: 0;
555
  top: 0;
556
  padding: 0 8px;
557
- -webkit-box-sizing: border-box;
558
- -moz-box-sizing: border-box;
559
  box-sizing: border-box;
560
  }
561
  .mfp-container:before {
@@ -589,15 +582,11 @@ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span {
589
  }
590
 
591
  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
592
- cursor: -moz-zoom-out;
593
- cursor: -webkit-zoom-out;
594
  cursor: zoom-out;
595
  }
596
 
597
  .mfp-zoom {
598
  cursor: pointer;
599
- cursor: -webkit-zoom-in;
600
- cursor: -moz-zoom-in;
601
  cursor: zoom-in;
602
  }
603
 
@@ -611,7 +600,8 @@ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span {
611
  .mfp-counter {
612
  -webkit-user-select: none;
613
  -moz-user-select: none;
614
- user-select: none;
 
615
  }
616
 
617
  .mfp-loading.mfp-figure {
@@ -640,7 +630,6 @@ button.mfp-close, button.mfp-arrow {
640
  outline: none;
641
  padding: 0;
642
  z-index: 1046;
643
- -webkit-box-shadow: none;
644
  box-shadow: none;
645
  }
646
 
@@ -711,7 +700,8 @@ button::-moz-focus-inner {
711
  -webkit-tap-highlight-color: transparent;
712
  opacity: 0;
713
  z-index: 10;
714
- transition: all 300ms ease-out;
 
715
  }
716
  .rtm-single-media:hover .mfp-arrow {
717
  opacity: 1;
@@ -836,8 +826,6 @@ img.mfp-img {
836
  height: auto;
837
  display: block;
838
  line-height: 0;
839
- -webkit-box-sizing: border-box;
840
- -moz-box-sizing: border-box;
841
  box-sizing: border-box;
842
  padding: 40px 0 40px;
843
  margin: 0 auto;
@@ -929,7 +917,8 @@ img.mfp-img {
929
 
930
  @keyframes spinner {
931
  to {
932
- transform: rotate(360deg);
 
933
  }
934
  }
935
  @-webkit-keyframes spinner {
@@ -967,8 +956,6 @@ img.mfp-img {
967
  top: auto;
968
  padding: 3px 5px;
969
  position: fixed;
970
- -webkit-box-sizing: border-box;
971
- -moz-box-sizing: border-box;
972
  box-sizing: border-box;
973
  }
974
 
@@ -996,17 +983,20 @@ img.mfp-img {
996
  @media all and (max-width: 900px) {
997
  .mfp-arrow {
998
  -webkit-transform: scale(0.75);
999
- transform: scale(0.75);
 
1000
  }
1001
 
1002
  .mfp-arrow-left {
1003
  -webkit-transform-origin: 0;
1004
- transform-origin: 0;
 
1005
  }
1006
 
1007
  .mfp-arrow-right {
1008
  -webkit-transform-origin: 100%;
1009
- transform-origin: 100%;
 
1010
  }
1011
 
1012
  .mfp-container {
@@ -1065,7 +1055,8 @@ img.mfp-img {
1065
  padding: 0 10px;
1066
  position: absolute;
1067
  width: 100%;
1068
- transition: all 300ms ease-out;
 
1069
  }
1070
  .rtm-single-media:hover .rtm-ltb-action-container {
1071
  opacity: 1;
@@ -1370,6 +1361,7 @@ img.mfp-img {
1370
  bottom: 20px;
1371
  padding: 10px;
1372
  position: absolute;
 
1373
  width: calc(100% - 40px);
1374
  }
1375
  .rtm-media-single-comments textarea {
@@ -1444,13 +1436,9 @@ img.mfp-img {
1444
  }
1445
 
1446
  .rtmedia-activity-container {
1447
- -webkit-box-sizing: border-box;
1448
- -moz-box-sizing: border-box;
1449
  box-sizing: border-box;
1450
  }
1451
  .rtmedia-activity-container *, .rtmedia-activity-container *:before, .rtmedia-activity-container *:after {
1452
- -webkit-box-sizing: inherit;
1453
- -moz-box-sizing: inherit;
1454
  box-sizing: inherit;
1455
  }
1456
 
@@ -1731,12 +1719,8 @@ abbr.required {
1731
  background: #f7f7f7;
1732
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
1733
  background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
1734
- background-image: -moz-linear-gradient(bottom, #fff, #f7f7f7);
1735
- background-image: -o-linear-gradient(bottom, #fff, #f7f7f7);
1736
  background-image: linear-gradient(to top, #fff, #f7f7f7);
1737
- -webkit-border-radius: 3px;
1738
  border-radius: 3px;
1739
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
1740
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
1741
  }
1742
 
@@ -1748,12 +1732,8 @@ abbr.required {
1748
  background-color: #8cc1e9;
1749
  background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
1750
  background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
1751
- background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
1752
- background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
1753
  background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
1754
- -webkit-border-radius: 3px;
1755
  border-radius: 3px;
1756
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
1757
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
1758
  }
1759
 
@@ -1904,7 +1884,6 @@ form.upgrade .hint {
1904
  border-style: solid;
1905
  line-height: 1.8em;
1906
  word-spacing: 3px;
1907
- -webkit-border-radius: 6px;
1908
  border-radius: 6px;
1909
  }
1910
 
@@ -2249,7 +2228,6 @@ span.imgedit-scale-warn {
2249
  background-color: #ffffe0;
2250
  border-color: #e6db55;
2251
  padding: 0 .6em;
2252
- -webkit-border-radius: 3px;
2253
  border-radius: 3px;
2254
  border-width: 1px;
2255
  border-style: solid;
88
  }
89
 
90
  #buddypress form#whats-new-form textarea {
 
 
91
  box-sizing: border-box;
92
  min-height: 70px;
93
  width: 100%;
129
  }
130
 
131
  .rtmedia-container {
 
 
132
  box-sizing: border-box;
133
  }
134
  .rtmedia-container *, .rtmedia-container *:before, .rtmedia-container *:after {
 
 
135
  box-sizing: inherit;
136
  }
137
 
348
  opacity: 0;
349
  position: absolute;
350
  text-align: center;
351
+ -webkit-transition: all ease-in-out 0.4s;
352
+ transition: all ease-in-out 0.4s;
353
  width: 100%;
354
  z-index: 9;
355
  }
549
  left: 0;
550
  top: 0;
551
  padding: 0 8px;
 
 
552
  box-sizing: border-box;
553
  }
554
  .mfp-container:before {
582
  }
583
 
584
  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
 
 
585
  cursor: zoom-out;
586
  }
587
 
588
  .mfp-zoom {
589
  cursor: pointer;
 
 
590
  cursor: zoom-in;
591
  }
592
 
600
  .mfp-counter {
601
  -webkit-user-select: none;
602
  -moz-user-select: none;
603
+ -ms-user-select: none;
604
+ user-select: none;
605
  }
606
 
607
  .mfp-loading.mfp-figure {
630
  outline: none;
631
  padding: 0;
632
  z-index: 1046;
 
633
  box-shadow: none;
634
  }
635
 
700
  -webkit-tap-highlight-color: transparent;
701
  opacity: 0;
702
  z-index: 10;
703
+ -webkit-transition: all 300ms ease-out;
704
+ transition: all 300ms ease-out;
705
  }
706
  .rtm-single-media:hover .mfp-arrow {
707
  opacity: 1;
826
  height: auto;
827
  display: block;
828
  line-height: 0;
 
 
829
  box-sizing: border-box;
830
  padding: 40px 0 40px;
831
  margin: 0 auto;
917
 
918
  @keyframes spinner {
919
  to {
920
+ -webkit-transform: rotate(360deg);
921
+ transform: rotate(360deg);
922
  }
923
  }
924
  @-webkit-keyframes spinner {
956
  top: auto;
957
  padding: 3px 5px;
958
  position: fixed;
 
 
959
  box-sizing: border-box;
960
  }
961
 
983
  @media all and (max-width: 900px) {
984
  .mfp-arrow {
985
  -webkit-transform: scale(0.75);
986
+ -ms-transform: scale(0.75);
987
+ transform: scale(0.75);
988
  }
989
 
990
  .mfp-arrow-left {
991
  -webkit-transform-origin: 0;
992
+ -ms-transform-origin: 0;
993
+ transform-origin: 0;
994
  }
995
 
996
  .mfp-arrow-right {
997
  -webkit-transform-origin: 100%;
998
+ -ms-transform-origin: 100%;
999
+ transform-origin: 100%;
1000
  }
1001
 
1002
  .mfp-container {
1055
  padding: 0 10px;
1056
  position: absolute;
1057
  width: 100%;
1058
+ -webkit-transition: all 300ms ease-out;
1059
+ transition: all 300ms ease-out;
1060
  }
1061
  .rtm-single-media:hover .rtm-ltb-action-container {
1062
  opacity: 1;
1361
  bottom: 20px;
1362
  padding: 10px;
1363
  position: absolute;
1364
+ width: -webkit-calc(100% - 40px);
1365
  width: calc(100% - 40px);
1366
  }
1367
  .rtm-media-single-comments textarea {
1436
  }
1437
 
1438
  .rtmedia-activity-container {
 
 
1439
  box-sizing: border-box;
1440
  }
1441
  .rtmedia-activity-container *, .rtmedia-activity-container *:before, .rtmedia-activity-container *:after {
 
 
1442
  box-sizing: inherit;
1443
  }
1444
 
1719
  background: #f7f7f7;
1720
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
1721
  background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
 
 
1722
  background-image: linear-gradient(to top, #fff, #f7f7f7);
 
1723
  border-radius: 3px;
 
1724
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
1725
  }
1726
 
1732
  background-color: #8cc1e9;
1733
  background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
1734
  background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
 
 
1735
  background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
 
1736
  border-radius: 3px;
 
1737
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
1738
  }
1739
 
1884
  border-style: solid;
1885
  line-height: 1.8em;
1886
  word-spacing: 3px;
 
1887
  border-radius: 6px;
1888
  }
1889
 
2228
  background-color: #ffffe0;
2229
  border-color: #e6db55;
2230
  padding: 0 .6em;
 
2231
  border-radius: 3px;
2232
  border-width: 1px;
2233
  border-style: solid;
app/assets/css/rtmedia.min.css CHANGED
@@ -1 +1 @@
1
- .alignleft{float:left}.alignright{float:right}.aligncenter{display:block;margin-left:auto;margin-right:auto;text-align:center}.clear-both{clear:both}.clear-none{clear:none}.clear-left{clear:left}.clear-right{clear:right}.rtm-inline-block{display:inline-block}.rtm-text-left{text-align:left}.rtm-text-right{text-align:right}.rtm-text-center{text-align:center}.rtm-border-0{border:0 !important}.hide{display:none}.rtmedia-success,.rtmedia-warning{margin:10px 0;padding:8px 14px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,0.5);border-bottom:1px solid #e7e7e7;cursor:pointer}.rtmedia-success{background-color:#dff0d8;color:#468847}.rtmedia-warning{background-color:#F0D8DD;color:#884646}.clearfix:after{content:"";display:table;clear:both}#buddypress form#whats-new-form textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-height:70px;width:100%}#buddypress #whats-new-options{height:auto !important;overflow:hidden}#buddypress form#whats-new-form p.activity-greeting{line-height:1}#buddypress form#whats-new-form #whats-new-options select{border:1px solid #ccc;font-size:13px;margin-top:0;padding:3px 2px}#whats-new-submit #aw-whats-new-submit{font-size:12px;line-height:18px;padding:4px 6px}#whats-new-post-in-box{float:left;font-size:13px}#buddypress form#whats-new-form #whats-new-submit{margin-top:0}#whats-new-textarea{margin-bottom:10px}.rtmedia-container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.rtmedia-container *,.rtmedia-container *:before,.rtmedia-container *:after{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}.rtmedia-list.rtmedia-list{list-style:none;margin:0;padding:0}.rtmedia-list-item>a{border:0;display:inline-block;text-decoration:none}.rtmedia-list-item>a:focus{outline:0}.rtmedia-list-item>a+p{display:none}.rtmedia-list-item>a .rtmedia-item-thumbnail img{display:inline-block}#rtmedia-uploader-form .rtm-plupload-list,#rtmedia_uploader_filelist{list-style:none;margin-left:-4px;margin-right:-4px;padding-left:0;padding-top:10px}#rtmedia-uploader-form .rtm-plupload-list li,#rtmedia_uploader_filelist li{background:#eee;float:left;margin:4px;max-width:110px;padding:5px;position:relative}#rtmedia-uploader-form .rtm-plupload-list li.upload-error,#rtmedia_uploader_filelist li.upload-error{border:1px solid red}#rtmedia-uploader-form .rtm-plupload-list img,#rtmedia_uploader_filelist img{max-width:100%}#rtmedia-uploader-form .rtm-plupload-list canvas,#rtmedia_uploader_filelist canvas{display:block;max-width:100%}#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-title,#rtmedia_uploader_filelist .rtm-upload-edit-title{font-size:12px}#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-desc,#rtmedia_uploader_filelist .rtm-upload-edit-desc{font-size:12px;display:block}#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-title-wrapper label,#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-desc-wrapper label,#rtmedia_uploader_filelist .rtm-upload-edit-title-wrapper label,#rtmedia_uploader_filelist .rtm-upload-edit-desc-wrapper label{display:block}.rtm-plupload-list:empty{display:none}.rtmedia-uploader-div,.rtmedia-uploader{clear:both}button#rtmedia-add-media-button-post-update{padding:3px 6px}button#rtmedia-add-media-button-post-update .dashicons{font-size:18px;line-height:20px}.plupload_file_name{font-size:11px;font-weight:bold;line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.plupload_file_size{color:#666;font-size:10px}.plupload_file_action{background:#eee;position:absolute;height:18px;right:0;top:0;width:18px;z-index:10}.plupload_file_action .dashicons{color:#DD3D36;cursor:pointer;font-size:16px;height:18px;padding:2px 1px;width:18px}.plupload_file_status{height:8px;overflow:hidden;position:relative}.plupload_file_progress{background:#7AD03A;height:4px;position:absolute;top:0}.rtm-form .rtm-field-wrap{margin-bottom:20px}.rtmedia_next_prev{padding:0 10px}.rtm-page-number{float:left}.rtm-page-number .rtm-label{line-height:30px}.rtm-page-number .rtm-label,.rtm-page-number .rtm-go-to-num,.rtm-page-number .rtmedia-page-link{float:left}.rtm-pagination{background:transparent;border:none;color:#888;font-size:small;margin:0;position:relative;display:block;float:left;width:100%;padding:10px 0}.rtm-pagination .rtm-paginate{float:right;font-size:15px}.rtm-pagination .rtm-paginate a,.rtm-pagination .rtm-paginate span{display:inline-block;line-height:1;margin:0 2px;padding:8px;text-decoration:none}.rtm-pagination .rtm-paginate a.rtmedia-page-link{padding:8px}.rtm-pagination .dashicons{font-size:14px;height:auto;line-height:1.2;margin:0;padding:0;width:auto}#rtmedia_go_to_num{font-size:16px;margin:0 5px;padding:4px 5px;width:80px}.rtmedia-upload-not-allowed{background-color:#fcf8e3;border-bottom:1px solid #EEE;color:#c09853;margin-bottom:20px;padding:10px 15px}.plupload_file_name{position:relative}.plupload_file_name .dashicons{background:#eee;color:#DD3D36;cursor:pointer;font-size:14px;height:auto;padding:0 2px 0 5px;position:absolute;right:0;top:0;width:auto}.plupload_file_name .dashicons-yes{color:#7AD03A}.rtmedia-gallery-item-actions{background-color:rgba(0,0,0,0.6);opacity:0;position:absolute;text-align:center;transition:all ease-in-out 0.4s;width:100%;z-index:9}.rtmedia-gallery-item-actions a{border:0;box-shadow:0 0 0;color:#fff;display:inline-block;font-size:12px;outline:none;padding:4px;text-align:left;text-decoration:none;text-transform:uppercase}.rtmedia-gallery-item-actions .dashicons{font-size:17px;margin-right:2px;position:relative;top:1px}.rtmedia-gallery-item-actions .dashicons-trash{font-size:15px}.rtm-pro-allow-action .rtmedia-list-item:hover .rtmedia-gallery-item-actions{opacity:1}.rtm-pro-allow-action .rtmedia-list-item:hover .rtmedia-bulk-edit-item-wrap+.rtmedia-gallery-item-actions{opacity:0}.rtmedia-footer-link{clear:both;overflow:hidden;padding:16px 0;position:relative;text-align:center}.rtmedia-text-link-decoration,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit span,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete a,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title span{text-decoration:none}.rtmedia-text-link-decoration:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit span:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete a:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title span:hover{text-decoration:underline}.rtmedia-container .rtmedia-edit-list-media-table{max-height:300px;overflow-y:auto}.rtmedia-container .rtmedia-edit-list-media-table thead tr{background-color:#50A1D7}.rtmedia-container .rtmedia-edit-list-media-table thead th{text-align:center;color:#FFF}.rtmedia-container .rtmedia-edit-list-media-table tbody tr:nth-child(odd){background:#FFF}.rtmedia-container .rtmedia-edit-list-media-table tbody tr:nth-child(even){background:#DCDCDC}table.rtmedia-edit-media-list tr{line-height:30px}table.rtmedia-edit-media-list tr th{color:#333;padding:4px 10px;line-height:20px}table.rtmedia-edit-media-list tr .rtm-edit-media-list-heading{width:44%}table.rtmedia-edit-media-list tr .rtm-edit-media-list-title-heading{width:56%}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title{padding:4px;font-size:14px;line-height:24px}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a{text-decoration:none;color:#333}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit{text-align:center}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a{color:#333;font-size:13px}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete{text-align:center}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span{color:#FF0000;cursor:pointer;font-size:13px}.rtm-hide{display:none}.rtm-tabs.rtm-tabs{border-bottom:1px solid #eee;list-style:none;margin:0 0 20px;padding:0}.rtm-tabs li{border:1px solid #eee;border-bottom:0;float:left;margin:0 5px;padding:0}.rtm-tabs a{border:0;display:block;padding:5px 15px;text-decoration:none}.rtm-tabs a:focus{background:transparent;box-shadow:0 0 0}.rtm-tabs .active{position:relative}.rtm-tabs .active:after{background:#fff;bottom:-1px;content:' ';height:1px;left:0;position:absolute;width:100%}.rtm-tabs .dashicons{font-size:16px;height:auto;line-height:20px;margin-right:8px;width:auto}.rtmedia-edit-media-tabs .rtm-tabs a{border-bottom:0 none}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:104211;overflow:hidden;position:fixed;background:rgba(0,0,0,0.9)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:104311;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;max-width:84%;margin:0 auto;right:0;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:' ';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{background:#fff;color:#999;cursor:pointer;font-size:24px;font-style:normal;height:30px;line-height:30px;padding:0;position:absolute;right:1px;text-align:center;text-decoration:none;text-indent:2px;top:0;width:32px;z-index:12}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{cursor:pointer;position:absolute;opacity:0.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent;opacity:0;z-index:10;transition:all 300ms ease-out}.rtm-single-media:hover .mfp-arrow{opacity:1}@media (max-device-width: 640px){.mfp-arrow{display:none}.rtm-single-media:hover .mfp-arrow{display:none}}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100)}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:0.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}.mfp-preloader{position:absolute;top:50%;left:0;right:0;margin-top:-36px;z-index:1044;font-size:0;width:36px;height:36px;margin-left:auto;margin-right:auto}.mfp-preloader:before{content:'Loading…';position:absolute;width:30px;height:30px}.mfp-preloader:not(:required):before{content:'';border-radius:50%;border:3px solid rgba(255,255,255,0.27);border-top-color:rgba(255,255,255,0.9);animation:spinner .6s linear infinite;-webkit-animation:spinner .6s linear infinite}@keyframes spinner{to{transform:rotate(360deg)}}@-webkit-keyframes spinner{to{-webkit-transform:rotate(360deg)}}@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-content .rtm-lightbox-container{background:#000;margin:0 auto;position:relative}.mfp-content .rtm-lightbox-container .rtmedia-media-description .allcontent{max-height:200px;overflow-y:auto;margin:5px 0}.mfp-content .rtm-single-meta{background:#fff;overflow:hidden;padding:20px 20px 110px;position:relative;vertical-align:top}.rtm-single-media{overflow:hidden;position:relative;text-align:center;vertical-align:middle}.rtm-single-media .mejs-container{margin:0 auto;max-width:inherit}.rtm-single-media .rtmedia-message-container{position:absolute;top:45%;left:0;right:0;margin-left:auto;margin-right:auto}@media (max-device-width: 640px){.rtm-single-media .rtmedia-message-container{top:25%}}.rtm-ltb-action-container{background-color:rgba(0,0,0,0.6);bottom:0;color:#fff;line-height:38px;opacity:0;padding:0 10px;position:absolute;width:100%;transition:all 300ms ease-out}.rtm-single-media:hover .rtm-ltb-action-container{opacity:1}@media (max-device-width: 640px){.rtm-ltb-action-container{clear:both;position:relative;opacity:1}.rtm-single-media:hover .rtm-ltb-action-container{opacity:1}}#buddypress #rtmedia-single-media-container.rtmedia-single-media .button{background:transparent;border:0 none;border-radius:2px;color:rgba(255,255,255,0.5);display:block;font-family:inherit;font-weight:normal;line-height:24px;margin:0;padding:0 6px;text-shadow:0 0 0;text-transform:none}#buddypress #rtmedia-single-media-container.rtmedia-single-media .button:hover{background:rgba(255,255,255,0.2);color:rgba(255,255,255,0.8)}#buddypress #rtmedia-single-media-container.rtmedia-single-media .rtm-options .button{color:#333;margin:0 auto;padding:0 4px 0 0}#buddypress #rtm-media-options-list .rtm-options .button{background:transparent;border:0 none;border-radius:2px;color:rgba(255,255,255,0.5);float:left;font-family:inherit;font-weight:normal;line-height:24px;padding:0 6px;text-shadow:0 0 0;text-transform:none}#buddypress #rtm-media-options-list .rtm-options .rtmedia-delete-favlist{color:#fff;padding:0}.rtm-options.rtm-options{background:#666;color:#fff;display:none;font-size:14px;list-style:none;margin:0;padding:8px 10px;position:absolute;left:0;top:38px;width:190px;z-index:10}.rtm-options li{margin:0;overflow:hidden;padding:2px 0}.rtm-media-options .rtm-options:after{bottom:100%;left:20px;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-bottom-color:#666;border-width:6px;margin-left:-6px}.mfp-content .rtm-options{background:#fff;color:#333;bottom:38px;right:0;left:auto;top:auto}.mfp-content .rtm-options:after{top:100%;right:22px;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:6px;margin-left:-6px}.rtm-options .dashicons{font-size:14px;line-height:24px;margin-right:2px}.rtm-media-options .rtm-options a{border:0;color:#fff;display:block;text-decoration:none}.rtm-ltb-title{color:rgba(255,255,255,0.7);float:left;font-size:13px}.rtm-ltb-title a{color:inherit}.rtm-ltb-title a:hover{border-bottom:1px dotted;color:#fff}.rtm-item-actions{float:right}.rtm-item-actions>div,.rtm-item-actions>form{float:left;margin:0 2px;padding:7px 0;position:relative}.rtmedia-media img{display:inline-block;max-height:inherit;height:auto;max-width:100%;width:auto}@media only screen and (max-device-width: 1024px){.rtmedia-media{margin:40px 0}}.rtm-user-meta-details .username{font-size:16px;line-height:1;margin-bottom:6px}.userprofile{float:left;margin:0 16px 16px 0;max-width:54px}.userprofile a{display:block}.userprofile img{height:auto;max-width:100%}.rtm-time-privacy{color:#999;font-size:12px}.rtm-time-privacy .dashicons{font-size:14px;line-height:1.5}.rtmedia-actions-before-comments>span{float:left;margin-right:10px}.rtmedia-actions-before-comments .rtmedia-comment-link,#buddypress .rtmedia-actions-before-comments .rtmedia-like{border:0;font-size:13px;font-weight:normal;line-height:2;padding:0;text-transform:none}.rtmedia-actions-before-comments .rtmedia-comment-link:hover,#buddypress .rtmedia-actions-before-comments .rtmedia-like:hover{background:transparent}.rtmedia-comment-user-pic{float:left;margin-right:10px;max-width:36px}.rtmedia-comment-user-pic img{height:auto;max-width:100%}.rtm-like-comments-info{position:relative}.rtm-like-comments-info:after{bottom:100%;left:15px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(237,239,244,0);border-bottom-color:#edeff4;border-width:4px;margin-left:-4px}.rtm-comment-list.rtm-comment-list{list-style:none;margin:0;padding:0}.rtm-comment-list li{background:#edeff4;font-size:12px;margin-bottom:1px;padding:10px;position:relative}.rtm-comment-list li:hover .rtmedia-delete-comment{opacity:1}.rtm-comment-list .rtmedia-no-comments{margin:0;padding:5px 10px}.rtmedia-like-info{background:#edeff4;font-size:12px;margin-bottom:1px;padding:5px 10px;position:relative}.rtm-comment-wrap{overflow:hidden}.rtm-comment-wrap .rtmedia-comment-author{font-weight:700}.rtm-comment-wrap .rtmedia-comment-date{color:#999;font-size:11px}.rtmedia-comment-content{margin-top:2px}.rtmedia-delete-comment{color:#999;cursor:pointer;font-size:16px;opacity:0;position:absolute;right:5px;top:5px}.rtmedia-comment-content p{margin:0}.rtmedia-comment-details{line-height:1.5;margin-top:-3px}.rtmedia-item-comments textarea{font-size:14px;padding:4px}.rtm-media-single-comments{background-color:#edeff4;bottom:20px;padding:10px;position:absolute;width:calc(100% - 40px)}.rtm-media-single-comments textarea{font-size:12px;line-height:14px;max-height:40px;min-height:30px;padding:4px}.rtmedia-popup{background:#fff;margin:20px auto;max-width:600px;padding:20px;position:relative;width:auto}.rtmedia-popup .rtm-modal-title{font-size:24px;margin-bottom:20px;margin-top:0}.rtmedia-popup label{display:block;margin-bottom:5px}#rtm-modal-container p{margin-bottom:10px}#rtm-mejs-video-container{margin:0 auto}.rtmedia-media-name{float:left;max-width:140px;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}.rtm-single-media.rtm-media-type-video{padding-bottom:40px;padding-top:40px}.rtmedia-gallery-alert-container{position:fixed;top:0;left:0;height:100%;width:100%;background-color:rgba(0,0,0,0.6);z-index:999997}.rtmedia-gallery-message-box{position:fixed;top:40%;left:50%;margin-left:auto;margin-right:auto;z-index:999999}.rtmedia-gallery-message-box span{position:relative;left:-50%}.rtmedia-activity-container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.rtmedia-activity-container *,.rtmedia-activity-container *:before,.rtmedia-activity-container *:after{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}#buddypress ul.rtmedia-list li{border-bottom:0;padding-bottom:0}.rtmedia-activity-container .rtmedia-item-actions{display:none}.rtmedia-activity-container .rtmedia-item-title,.rtmedia-activity-container .rtmedia-item-title a{border:0;color:#666;font-size:13px;margin:5px 0 0;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}#rtmedia-whts-new-upload-container div{left:0 !important;position:absolute;top:0 !important}#aw-whats-new-submit,.rtmedia-add-media-button{display:block}.rtm-drag-drop-active{border:4px dashed green !important;display:block;height:100%;opacity:0.5;z-index:9999}#rtm-drop-files-title{background:rgba(0,0,0,0.2);display:none;font-size:14px;height:100%;padding:20px;position:absolute;top:0;width:100%}#rtSelectPrivacy{float:right}.rtmedia-plupload-container{position:relative;float:left}.rtm-upload-button-wrapper{float:left;margin-right:5px}#rtmedia-action-update{margin-right:10px}.rtmedia-list-item.media-type-document,.rtmedia-list-item.media-type-music,.rtmedia-list-item.media-type-video{display:inline-block}.media-type-music .mejs-container{margin-bottom:10px}.rtmedia-album-edit .rtm-checkbox-wrap{background:rgba(255,255,255,0.9);height:30px;line-height:1;padding:10px;position:absolute;z-index:10}.rtmedia-album-edit .rtmedia-item-selector{position:relative;top:-7px}.rtmedia-album-edit .rtmedia-move-container{display:none}.rtm-single-actions.rtm-item-actions{float:none}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:0.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));background-image:-webkit-linear-gradient(bottom, #fff, #f7f7f7);background-image:-moz-linear-gradient(bottom, #fff, #f7f7f7);background-image:-o-linear-gradient(bottom, #fff, #f7f7f7);background-image:linear-gradient(to top, #fff, #f7f7f7);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#8cc1e9;background-image:-webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));background-image:-webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);background-image:-moz-linear-gradient(bottom, #72a7cf, #8cc1e9);background-image:-o-linear-gradient(bottom, #72a7cf, #8cc1e9);background-image:linear-gradient(to top, #72a7cf, #8cc1e9);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:#000;opacity:0.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #DDDDDD;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:0.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:0.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group h3{font-size:18px}.imgedit-group .dashicons{border:0;line-height:1.2}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.wp_attachment_details{margin-bottom:20px}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:0.5}.bp-media-image-editor-cotnainer{margin-top:35px}.wp_attachment_image .bp-media-image-edit{float:left}.wp_attachment_image .spinner{display:none}.bp-media-image-editor-cotnainer .hidden{display:none}.bp-media-image-editor-cotnainer div.updated{margin:5px 0 15px;background-color:#ffffe0;border-color:#e6db55;padding:0 .6em;-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.bp-media-image-editor-cotnainer div.updated p{margin:.5em 0;padding:2px}body article.bp_members.bp_member .entry-content,body div.bp_members.bp_member .entry-content{width:100%}.rtm-media-gallery-uploader{display:none}.rtmedia-uploader .drag-drop{border:4px dashed #DDD;text-align:center;background:#fafafa;overflow:hidden;color:#AAAAAA;margin-top:20px;padding:25px 0}.rtmedia-uploader .drag-drop.dragover{border-color:#83b4d8}.rtmedia-uploader .drag-drop .drag-drop-info{font-size:20px;line-height:24px}.rtmedia-uploader .drag-drop .rtm-select-files span{vertical-align:middle}.rtmedia-uploader .drag-drop .rtm-seperator{margin:0px 20px}.rtmedia-uploader .drag-drop .start-media-upload{display:none;margin-top:20px}.rtmedia-uploader .drag-drop .rtm-file-size-limit{vertical-align:middle;font-size:16px;line-height:24px}.rtm-uploader-main-wrapper .rtm-uploader-tabs{margin-bottom:10px;text-align:left}.rtm-uploader-main-wrapper ul{border-bottom:1px solid #CCC}.rtm-uploader-main-wrapper li{margin:0 0 -1px 10px;display:inline-block;padding:5px 10px;line-height:25px;background-color:#e4e4e4;border:1px solid #CCC}.rtm-uploader-main-wrapper li.active{background:transparent;border-left:1px solid #CCC;border-top:1px solid #CCC;border-right:1px solid #CCC;border-bottom:1px solid #fafafa}.rtm-uploader-main-wrapper li:hover{cursor:pointer}.rtmedia-container .rtmedia-list{margin:10px -5px}.rtmedia-container .rtmedia-list .rtmedia-list-item{float:left;margin:5px;position:relative}.rtmedia-container .rtmedia-list .rtmedia-list-item>a{display:block}.rtmedia-container .rtmedia-list .rtmedia_time{background-color:#000;color:#fff;display:inline-block;font-size:11px;font-weight:bold;line-height:14px;opacity:0.75;padding:0 4px;position:absolute;right:2px;top:2px}.rtmedia-container .rtmedia-list img{vertical-align:top}.rtmedia-container .rtmedia-list .rtmedia-item-title h4{color:#666;font-size:12px;font-weight:normal;margin:5px 0 0;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rtm-load-more{background:#eee;text-align:center}.rtmedia-container .rtm-load-more a{border:0;padding:10px 0}.rtm-load-more .rtm-media-loading{padding:10px 0}.rtm-media-options{line-height:1.4;margin-bottom:10px}.rtm-media-options>div{display:inline-block;cursor:pointer}.rtm-media-options .rtm-media-options-list{margin-right:5px;padding-right:10px;position:relative}.rtm-media-options>*{border-right:1px solid #999}.rtm-media-options>*:last-child{border-right:none}.rtm-media-options .dashicons{font-size:inherit;line-height:1.4}.rtmedia-upload-media-link{cursor:pointer}a.rtmedia-upload-media-link{border:none}.rtm-album-privacy span{font-size:16px;display:inline-block;margin:0 20px 20px 20px;vertical-align:top}.rtm-album-privacy label{margin-right:8px}.rtm-album-privacy .dashicons{font-size:16px;line-height:1.6;margin-right:5px}#rtm-media-options-list .rtmedia-delete-album{background:transparent;border:0;color:#fff;font-family:inherit;font-size:inherit;font-weight:inherit;padding:0;text-transform:inherit}#rtm-media-options-list .rtmedia-delete-album:hover{background:transparent;border:0;color:#fff}.rtmedia-single-container button.rtmedia-like{background-color:transparent;color:inherit}#buddypress .mejs-controls button{padding:4px 8px;border:none;background:transparent url("../../../lib/media-element/controls.png") no-repeat}#buddypress .mejs-controls .mejs-play button{background-position:0 0}#buddypress .mejs-controls .mejs-pause button{background-position:0 -16px}#buddypress .mejs-controls .mejs-unmute button{background-position:-16px 0}#buddypress .mejs-controls .mejs-mute button{background-position:-16px -16px}#buddypress .mejs-controls .mejs-fullscreen-button button{background-position:-32px 0}#buddypress .mejs-controls .mejs-unfullscreen button{background-position:-32px -16px}.mejs-container .mejs-controls .mejs-time{padding:10px 3px 0;content:''}.rtmedia-activity-container .mejs-playpause-button.mejs-play button:before,.rtmedia-activity-container .mejs-playpause-button.mejs-pause button:before,.rtmedia-activity-container .mejs-volume-button.mejs-mute button:before,.rtmedia-activity-container .mejs-fullscreen-button button:before,.rtmedia-media .mejs-playpause-button.mejs-play button:before,.rtmedia-media .mejs-playpause-button.mejs-pause button:before,.rtmedia-media .mejs-volume-button.mejs-mute button:before,.rtmedia-media .mejs-fullscreen-button button:before{content:''}@media only screen and (min-width: 1025px){.mfp-content .rtm-lightbox-container{display:table;table-layout:fixed;width:100%}.mfp-content .rtm-single-media{display:table-cell;width:66.6667%}.mfp-content .rtm-single-meta{display:table-cell;width:33.3333%}.mfp-content .rtmedia-item-comments{max-height:330px;overflow-x:hidden;overflow-y:auto}}.rtl #rtSelectPrivacy{float:left}.rtl .rtmedia-plupload-container{float:right}.rtl .rtm-upload-button-wrapper{float:right}.rtl #whats-new-post-in-box{float:right}.rtl .describe-toggle-off{float:left}.rtl .media-item .pinkynail{float:right}.rtl .media-item .progress{float:left}.rtl .media-item .error-div a.dismiss{float:left}.rtl #find-posts-input{float:right}.rtl #find-posts-search{float:right}.rtl .spinner{float:left}.rtl .wp_attachment_image .button,.rtl .A1B1 .button{float:right}.rtl .wp_attachment_image .spinner,.rtl .A1B1 .spinner{float:right}.rtl .imgedit-menu div{float:right}.rtl .wp_attachment_image .bp-media-image-edit{float:right}.rtl .rtmedia-container .rtmedia-list .rtmedia-list-item{float:right}.rtl #buddypress #rtm-media-options-list .rtm-options .button{float:right}.rtl .rtm-ltb-title{float:right}.rtl .rtm-item-actions{float:left}.rtl .rtm-item-actions>div,.rtl .rtm-item-actions>form{float:right}.rtl .userprofile{float:right}.rtl .rtmedia-actions-before-comments>span{float:right}.rtl .rtmedia-comment-user-pic{float:right}.rtl .rtmedia-media-name{float:right}.rtl #rtmedia-uploader-form .rtm-plupload-list li,.rtl #rtmedia_uploader_filelist li{float:right}.rtl .rtm-page-number{float:right}.rtl .rtm-page-number .rtmedia-page-link{float:right}.rtl .rtm-pagination{float:right}.rtl .rtm-pagination .rtm-paginate{float:left}.rtl .rtm-tabs li{float:right}.rtl .alignleft{float:right}.rtl .alignright{float:left}
1
+ .alignleft{float:left}.alignright{float:right}.aligncenter{display:block;margin-left:auto;margin-right:auto;text-align:center}.clear-both{clear:both}.clear-none{clear:none}.clear-left{clear:left}.clear-right{clear:right}.rtm-inline-block{display:inline-block}.rtm-text-left{text-align:left}.rtm-text-right{text-align:right}.rtm-text-center{text-align:center}.rtm-border-0{border:0 !important}.hide{display:none}.rtmedia-success,.rtmedia-warning{margin:10px 0;padding:8px 14px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,0.5);border-bottom:1px solid #e7e7e7;cursor:pointer}.rtmedia-success{background-color:#dff0d8;color:#468847}.rtmedia-warning{background-color:#F0D8DD;color:#884646}.clearfix:after{content:"";display:table;clear:both}#buddypress form#whats-new-form textarea{box-sizing:border-box;min-height:70px;width:100%}#buddypress #whats-new-options{height:auto !important;overflow:hidden}#buddypress form#whats-new-form p.activity-greeting{line-height:1}#buddypress form#whats-new-form #whats-new-options select{border:1px solid #ccc;font-size:13px;margin-top:0;padding:3px 2px}#whats-new-submit #aw-whats-new-submit{font-size:12px;line-height:18px;padding:4px 6px}#whats-new-post-in-box{float:left;font-size:13px}#buddypress form#whats-new-form #whats-new-submit{margin-top:0}#whats-new-textarea{margin-bottom:10px}.rtmedia-container{box-sizing:border-box}.rtmedia-container *,.rtmedia-container *:before,.rtmedia-container *:after{box-sizing:inherit}.rtmedia-list.rtmedia-list{list-style:none;margin:0;padding:0}.rtmedia-list-item>a{border:0;display:inline-block;text-decoration:none}.rtmedia-list-item>a:focus{outline:0}.rtmedia-list-item>a+p{display:none}.rtmedia-list-item>a .rtmedia-item-thumbnail img{display:inline-block}#rtmedia-uploader-form .rtm-plupload-list,#rtmedia_uploader_filelist{list-style:none;margin-left:-4px;margin-right:-4px;padding-left:0;padding-top:10px}#rtmedia-uploader-form .rtm-plupload-list li,#rtmedia_uploader_filelist li{background:#eee;float:left;margin:4px;max-width:110px;padding:5px;position:relative}#rtmedia-uploader-form .rtm-plupload-list li.upload-error,#rtmedia_uploader_filelist li.upload-error{border:1px solid red}#rtmedia-uploader-form .rtm-plupload-list img,#rtmedia_uploader_filelist img{max-width:100%}#rtmedia-uploader-form .rtm-plupload-list canvas,#rtmedia_uploader_filelist canvas{display:block;max-width:100%}#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-title,#rtmedia_uploader_filelist .rtm-upload-edit-title{font-size:12px}#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-desc,#rtmedia_uploader_filelist .rtm-upload-edit-desc{font-size:12px;display:block}#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-title-wrapper label,#rtmedia-uploader-form .rtm-plupload-list .rtm-upload-edit-desc-wrapper label,#rtmedia_uploader_filelist .rtm-upload-edit-title-wrapper label,#rtmedia_uploader_filelist .rtm-upload-edit-desc-wrapper label{display:block}.rtm-plupload-list:empty{display:none}.rtmedia-uploader-div,.rtmedia-uploader{clear:both}button#rtmedia-add-media-button-post-update{padding:3px 6px}button#rtmedia-add-media-button-post-update .dashicons{font-size:18px;line-height:20px}.plupload_file_name{font-size:11px;font-weight:bold;line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.plupload_file_size{color:#666;font-size:10px}.plupload_file_action{background:#eee;position:absolute;height:18px;right:0;top:0;width:18px;z-index:10}.plupload_file_action .dashicons{color:#DD3D36;cursor:pointer;font-size:16px;height:18px;padding:2px 1px;width:18px}.plupload_file_status{height:8px;overflow:hidden;position:relative}.plupload_file_progress{background:#7AD03A;height:4px;position:absolute;top:0}.rtm-form .rtm-field-wrap{margin-bottom:20px}.rtmedia_next_prev{padding:0 10px}.rtm-page-number{float:left}.rtm-page-number .rtm-label{line-height:30px}.rtm-page-number .rtm-label,.rtm-page-number .rtm-go-to-num,.rtm-page-number .rtmedia-page-link{float:left}.rtm-pagination{background:transparent;border:none;color:#888;font-size:small;margin:0;position:relative;display:block;float:left;width:100%;padding:10px 0}.rtm-pagination .rtm-paginate{float:right;font-size:15px}.rtm-pagination .rtm-paginate a,.rtm-pagination .rtm-paginate span{display:inline-block;line-height:1;margin:0 2px;padding:8px;text-decoration:none}.rtm-pagination .rtm-paginate a.rtmedia-page-link{padding:8px}.rtm-pagination .dashicons{font-size:14px;height:auto;line-height:1.2;margin:0;padding:0;width:auto}#rtmedia_go_to_num{font-size:16px;margin:0 5px;padding:4px 5px;width:80px}.rtmedia-upload-not-allowed{background-color:#fcf8e3;border-bottom:1px solid #EEE;color:#c09853;margin-bottom:20px;padding:10px 15px}.plupload_file_name{position:relative}.plupload_file_name .dashicons{background:#eee;color:#DD3D36;cursor:pointer;font-size:14px;height:auto;padding:0 2px 0 5px;position:absolute;right:0;top:0;width:auto}.plupload_file_name .dashicons-yes{color:#7AD03A}.rtmedia-gallery-item-actions{background-color:rgba(0,0,0,0.6);opacity:0;position:absolute;text-align:center;-webkit-transition:all ease-in-out 0.4s;transition:all ease-in-out 0.4s;width:100%;z-index:9}.rtmedia-gallery-item-actions a{border:0;box-shadow:0 0 0;color:#fff;display:inline-block;font-size:12px;outline:none;padding:4px;text-align:left;text-decoration:none;text-transform:uppercase}.rtmedia-gallery-item-actions .dashicons{font-size:17px;margin-right:2px;position:relative;top:1px}.rtmedia-gallery-item-actions .dashicons-trash{font-size:15px}.rtm-pro-allow-action .rtmedia-list-item:hover .rtmedia-gallery-item-actions{opacity:1}.rtm-pro-allow-action .rtmedia-list-item:hover .rtmedia-bulk-edit-item-wrap+.rtmedia-gallery-item-actions{opacity:0}.rtmedia-footer-link{clear:both;overflow:hidden;padding:16px 0;position:relative;text-align:center}.rtmedia-text-link-decoration,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit span,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete a,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title span{text-decoration:none}.rtmedia-text-link-decoration:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit span:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete a:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a:hover,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title span:hover{text-decoration:underline}.rtmedia-container .rtmedia-edit-list-media-table{max-height:300px;overflow-y:auto}.rtmedia-container .rtmedia-edit-list-media-table thead tr{background-color:#50A1D7}.rtmedia-container .rtmedia-edit-list-media-table thead th{text-align:center;color:#FFF}.rtmedia-container .rtmedia-edit-list-media-table tbody tr:nth-child(odd){background:#FFF}.rtmedia-container .rtmedia-edit-list-media-table tbody tr:nth-child(even){background:#DCDCDC}table.rtmedia-edit-media-list tr{line-height:30px}table.rtmedia-edit-media-list tr th{color:#333;padding:4px 10px;line-height:20px}table.rtmedia-edit-media-list tr .rtm-edit-media-list-heading{width:44%}table.rtmedia-edit-media-list tr .rtm-edit-media-list-title-heading{width:56%}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete,table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title{padding:4px;font-size:14px;line-height:24px}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a{text-decoration:none;color:#333}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit{text-align:center}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a{color:#333;font-size:13px}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete{text-align:center}table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span{color:#FF0000;cursor:pointer;font-size:13px}.rtm-hide{display:none}.rtm-tabs.rtm-tabs{border-bottom:1px solid #eee;list-style:none;margin:0 0 20px;padding:0}.rtm-tabs li{border:1px solid #eee;border-bottom:0;float:left;margin:0 5px;padding:0}.rtm-tabs a{border:0;display:block;padding:5px 15px;text-decoration:none}.rtm-tabs a:focus{background:transparent;box-shadow:0 0 0}.rtm-tabs .active{position:relative}.rtm-tabs .active:after{background:#fff;bottom:-1px;content:' ';height:1px;left:0;position:absolute;width:100%}.rtm-tabs .dashicons{font-size:16px;height:auto;line-height:20px;margin-right:8px;width:auto}.rtmedia-edit-media-tabs .rtm-tabs a{border-bottom:0 none}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:104211;overflow:hidden;position:fixed;background:rgba(0,0,0,0.9)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:104311;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;max-width:84%;margin:0 auto;right:0;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:' ';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{background:#fff;color:#999;cursor:pointer;font-size:24px;font-style:normal;height:30px;line-height:30px;padding:0;position:absolute;right:1px;text-align:center;text-decoration:none;text-indent:2px;top:0;width:32px;z-index:12}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{cursor:pointer;position:absolute;opacity:0.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent;opacity:0;z-index:10;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.rtm-single-media:hover .mfp-arrow{opacity:1}@media (max-device-width: 640px){.mfp-arrow{display:none}.rtm-single-media:hover .mfp-arrow{display:none}}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100)}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:0.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}.mfp-preloader{position:absolute;top:50%;left:0;right:0;margin-top:-36px;z-index:1044;font-size:0;width:36px;height:36px;margin-left:auto;margin-right:auto}.mfp-preloader:before{content:'Loading…';position:absolute;width:30px;height:30px}.mfp-preloader:not(:required):before{content:'';border-radius:50%;border:3px solid rgba(255,255,255,0.27);border-top-color:rgba(255,255,255,0.9);animation:spinner .6s linear infinite;-webkit-animation:spinner .6s linear infinite}@keyframes spinner{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner{to{-webkit-transform:rotate(360deg)}}@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{-webkit-transform:scale(0.75);-ms-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-content .rtm-lightbox-container{background:#000;margin:0 auto;position:relative}.mfp-content .rtm-lightbox-container .rtmedia-media-description .allcontent{max-height:200px;overflow-y:auto;margin:5px 0}.mfp-content .rtm-single-meta{background:#fff;overflow:hidden;padding:20px 20px 110px;position:relative;vertical-align:top}.rtm-single-media{overflow:hidden;position:relative;text-align:center;vertical-align:middle}.rtm-single-media .mejs-container{margin:0 auto;max-width:inherit}.rtm-single-media .rtmedia-message-container{position:absolute;top:45%;left:0;right:0;margin-left:auto;margin-right:auto}@media (max-device-width: 640px){.rtm-single-media .rtmedia-message-container{top:25%}}.rtm-ltb-action-container{background-color:rgba(0,0,0,0.6);bottom:0;color:#fff;line-height:38px;opacity:0;padding:0 10px;position:absolute;width:100%;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.rtm-single-media:hover .rtm-ltb-action-container{opacity:1}@media (max-device-width: 640px){.rtm-ltb-action-container{clear:both;position:relative;opacity:1}.rtm-single-media:hover .rtm-ltb-action-container{opacity:1}}#buddypress #rtmedia-single-media-container.rtmedia-single-media .button{background:transparent;border:0 none;border-radius:2px;color:rgba(255,255,255,0.5);display:block;font-family:inherit;font-weight:normal;line-height:24px;margin:0;padding:0 6px;text-shadow:0 0 0;text-transform:none}#buddypress #rtmedia-single-media-container.rtmedia-single-media .button:hover{background:rgba(255,255,255,0.2);color:rgba(255,255,255,0.8)}#buddypress #rtmedia-single-media-container.rtmedia-single-media .rtm-options .button{color:#333;margin:0 auto;padding:0 4px 0 0}#buddypress #rtm-media-options-list .rtm-options .button{background:transparent;border:0 none;border-radius:2px;color:rgba(255,255,255,0.5);float:left;font-family:inherit;font-weight:normal;line-height:24px;padding:0 6px;text-shadow:0 0 0;text-transform:none}#buddypress #rtm-media-options-list .rtm-options .rtmedia-delete-favlist{color:#fff;padding:0}.rtm-options.rtm-options{background:#666;color:#fff;display:none;font-size:14px;list-style:none;margin:0;padding:8px 10px;position:absolute;left:0;top:38px;width:190px;z-index:10}.rtm-options li{margin:0;overflow:hidden;padding:2px 0}.rtm-media-options .rtm-options:after{bottom:100%;left:20px;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-bottom-color:#666;border-width:6px;margin-left:-6px}.mfp-content .rtm-options{background:#fff;color:#333;bottom:38px;right:0;left:auto;top:auto}.mfp-content .rtm-options:after{top:100%;right:22px;border:solid transparent;content:' ';height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:6px;margin-left:-6px}.rtm-options .dashicons{font-size:14px;line-height:24px;margin-right:2px}.rtm-media-options .rtm-options a{border:0;color:#fff;display:block;text-decoration:none}.rtm-ltb-title{color:rgba(255,255,255,0.7);float:left;font-size:13px}.rtm-ltb-title a{color:inherit}.rtm-ltb-title a:hover{border-bottom:1px dotted;color:#fff}.rtm-item-actions{float:right}.rtm-item-actions>div,.rtm-item-actions>form{float:left;margin:0 2px;padding:7px 0;position:relative}.rtmedia-media img{display:inline-block;max-height:inherit;height:auto;max-width:100%;width:auto}@media only screen and (max-device-width: 1024px){.rtmedia-media{margin:40px 0}}.rtm-user-meta-details .username{font-size:16px;line-height:1;margin-bottom:6px}.userprofile{float:left;margin:0 16px 16px 0;max-width:54px}.userprofile a{display:block}.userprofile img{height:auto;max-width:100%}.rtm-time-privacy{color:#999;font-size:12px}.rtm-time-privacy .dashicons{font-size:14px;line-height:1.5}.rtmedia-actions-before-comments>span{float:left;margin-right:10px}.rtmedia-actions-before-comments .rtmedia-comment-link,#buddypress .rtmedia-actions-before-comments .rtmedia-like{border:0;font-size:13px;font-weight:normal;line-height:2;padding:0;text-transform:none}.rtmedia-actions-before-comments .rtmedia-comment-link:hover,#buddypress .rtmedia-actions-before-comments .rtmedia-like:hover{background:transparent}.rtmedia-comment-user-pic{float:left;margin-right:10px;max-width:36px}.rtmedia-comment-user-pic img{height:auto;max-width:100%}.rtm-like-comments-info{position:relative}.rtm-like-comments-info:after{bottom:100%;left:15px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(237,239,244,0);border-bottom-color:#edeff4;border-width:4px;margin-left:-4px}.rtm-comment-list.rtm-comment-list{list-style:none;margin:0;padding:0}.rtm-comment-list li{background:#edeff4;font-size:12px;margin-bottom:1px;padding:10px;position:relative}.rtm-comment-list li:hover .rtmedia-delete-comment{opacity:1}.rtm-comment-list .rtmedia-no-comments{margin:0;padding:5px 10px}.rtmedia-like-info{background:#edeff4;font-size:12px;margin-bottom:1px;padding:5px 10px;position:relative}.rtm-comment-wrap{overflow:hidden}.rtm-comment-wrap .rtmedia-comment-author{font-weight:700}.rtm-comment-wrap .rtmedia-comment-date{color:#999;font-size:11px}.rtmedia-comment-content{margin-top:2px}.rtmedia-delete-comment{color:#999;cursor:pointer;font-size:16px;opacity:0;position:absolute;right:5px;top:5px}.rtmedia-comment-content p{margin:0}.rtmedia-comment-details{line-height:1.5;margin-top:-3px}.rtmedia-item-comments textarea{font-size:14px;padding:4px}.rtm-media-single-comments{background-color:#edeff4;bottom:20px;padding:10px;position:absolute;width:-webkit-calc(100% - 40px);width:calc(100% - 40px)}.rtm-media-single-comments textarea{font-size:12px;line-height:14px;max-height:40px;min-height:30px;padding:4px}.rtmedia-popup{background:#fff;margin:20px auto;max-width:600px;padding:20px;position:relative;width:auto}.rtmedia-popup .rtm-modal-title{font-size:24px;margin-bottom:20px;margin-top:0}.rtmedia-popup label{display:block;margin-bottom:5px}#rtm-modal-container p{margin-bottom:10px}#rtm-mejs-video-container{margin:0 auto}.rtmedia-media-name{float:left;max-width:140px;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}.rtm-single-media.rtm-media-type-video{padding-bottom:40px;padding-top:40px}.rtmedia-gallery-alert-container{position:fixed;top:0;left:0;height:100%;width:100%;background-color:rgba(0,0,0,0.6);z-index:999997}.rtmedia-gallery-message-box{position:fixed;top:40%;left:50%;margin-left:auto;margin-right:auto;z-index:999999}.rtmedia-gallery-message-box span{position:relative;left:-50%}.rtmedia-activity-container{box-sizing:border-box}.rtmedia-activity-container *,.rtmedia-activity-container *:before,.rtmedia-activity-container *:after{box-sizing:inherit}#buddypress ul.rtmedia-list li{border-bottom:0;padding-bottom:0}.rtmedia-activity-container .rtmedia-item-actions{display:none}.rtmedia-activity-container .rtmedia-item-title,.rtmedia-activity-container .rtmedia-item-title a{border:0;color:#666;font-size:13px;margin:5px 0 0;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}#rtmedia-whts-new-upload-container div{left:0 !important;position:absolute;top:0 !important}#aw-whats-new-submit,.rtmedia-add-media-button{display:block}.rtm-drag-drop-active{border:4px dashed green !important;display:block;height:100%;opacity:0.5;z-index:9999}#rtm-drop-files-title{background:rgba(0,0,0,0.2);display:none;font-size:14px;height:100%;padding:20px;position:absolute;top:0;width:100%}#rtSelectPrivacy{float:right}.rtmedia-plupload-container{position:relative;float:left}.rtm-upload-button-wrapper{float:left;margin-right:5px}#rtmedia-action-update{margin-right:10px}.rtmedia-list-item.media-type-document,.rtmedia-list-item.media-type-music,.rtmedia-list-item.media-type-video{display:inline-block}.media-type-music .mejs-container{margin-bottom:10px}.rtmedia-album-edit .rtm-checkbox-wrap{background:rgba(255,255,255,0.9);height:30px;line-height:1;padding:10px;position:absolute;z-index:10}.rtmedia-album-edit .rtmedia-item-selector{position:relative;top:-7px}.rtmedia-album-edit .rtmedia-move-container{display:none}.rtm-single-actions.rtm-item-actions{float:none}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:0.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));background-image:-webkit-linear-gradient(bottom, #fff, #f7f7f7);background-image:linear-gradient(to top, #fff, #f7f7f7);border-radius:3px;box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#8cc1e9;background-image:-webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));background-image:-webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);background-image:linear-gradient(to top, #72a7cf, #8cc1e9);border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:#000;opacity:0.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #DDDDDD;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:0.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:0.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group h3{font-size:18px}.imgedit-group .dashicons{border:0;line-height:1.2}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.wp_attachment_details{margin-bottom:20px}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:0.5}.bp-media-image-editor-cotnainer{margin-top:35px}.wp_attachment_image .bp-media-image-edit{float:left}.wp_attachment_image .spinner{display:none}.bp-media-image-editor-cotnainer .hidden{display:none}.bp-media-image-editor-cotnainer div.updated{margin:5px 0 15px;background-color:#ffffe0;border-color:#e6db55;padding:0 .6em;border-radius:3px;border-width:1px;border-style:solid}.bp-media-image-editor-cotnainer div.updated p{margin:.5em 0;padding:2px}body article.bp_members.bp_member .entry-content,body div.bp_members.bp_member .entry-content{width:100%}.rtm-media-gallery-uploader{display:none}.rtmedia-uploader .drag-drop{border:4px dashed #DDD;text-align:center;background:#fafafa;overflow:hidden;color:#AAAAAA;margin-top:20px;padding:25px 0}.rtmedia-uploader .drag-drop.dragover{border-color:#83b4d8}.rtmedia-uploader .drag-drop .drag-drop-info{font-size:20px;line-height:24px}.rtmedia-uploader .drag-drop .rtm-select-files span{vertical-align:middle}.rtmedia-uploader .drag-drop .rtm-seperator{margin:0px 20px}.rtmedia-uploader .drag-drop .start-media-upload{display:none;margin-top:20px}.rtmedia-uploader .drag-drop .rtm-file-size-limit{vertical-align:middle;font-size:16px;line-height:24px}.rtm-uploader-main-wrapper .rtm-uploader-tabs{margin-bottom:10px;text-align:left}.rtm-uploader-main-wrapper ul{border-bottom:1px solid #CCC}.rtm-uploader-main-wrapper li{margin:0 0 -1px 10px;display:inline-block;padding:5px 10px;line-height:25px;background-color:#e4e4e4;border:1px solid #CCC}.rtm-uploader-main-wrapper li.active{background:transparent;border-left:1px solid #CCC;border-top:1px solid #CCC;border-right:1px solid #CCC;border-bottom:1px solid #fafafa}.rtm-uploader-main-wrapper li:hover{cursor:pointer}.rtmedia-container .rtmedia-list{margin:10px -5px}.rtmedia-container .rtmedia-list .rtmedia-list-item{float:left;margin:5px;position:relative}.rtmedia-container .rtmedia-list .rtmedia-list-item>a{display:block}.rtmedia-container .rtmedia-list .rtmedia_time{background-color:#000;color:#fff;display:inline-block;font-size:11px;font-weight:bold;line-height:14px;opacity:0.75;padding:0 4px;position:absolute;right:2px;top:2px}.rtmedia-container .rtmedia-list img{vertical-align:top}.rtmedia-container .rtmedia-list .rtmedia-item-title h4{color:#666;font-size:12px;font-weight:normal;margin:5px 0 0;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rtm-load-more{background:#eee;text-align:center}.rtmedia-container .rtm-load-more a{border:0;padding:10px 0}.rtm-load-more .rtm-media-loading{padding:10px 0}.rtm-media-options{line-height:1.4;margin-bottom:10px}.rtm-media-options>div{display:inline-block;cursor:pointer}.rtm-media-options .rtm-media-options-list{margin-right:5px;padding-right:10px;position:relative}.rtm-media-options>*{border-right:1px solid #999}.rtm-media-options>*:last-child{border-right:none}.rtm-media-options .dashicons{font-size:inherit;line-height:1.4}.rtmedia-upload-media-link{cursor:pointer}a.rtmedia-upload-media-link{border:none}.rtm-album-privacy span{font-size:16px;display:inline-block;margin:0 20px 20px 20px;vertical-align:top}.rtm-album-privacy label{margin-right:8px}.rtm-album-privacy .dashicons{font-size:16px;line-height:1.6;margin-right:5px}#rtm-media-options-list .rtmedia-delete-album{background:transparent;border:0;color:#fff;font-family:inherit;font-size:inherit;font-weight:inherit;padding:0;text-transform:inherit}#rtm-media-options-list .rtmedia-delete-album:hover{background:transparent;border:0;color:#fff}.rtmedia-single-container button.rtmedia-like{background-color:transparent;color:inherit}#buddypress .mejs-controls button{padding:4px 8px;border:none;background:transparent url("../../../lib/media-element/controls.png") no-repeat}#buddypress .mejs-controls .mejs-play button{background-position:0 0}#buddypress .mejs-controls .mejs-pause button{background-position:0 -16px}#buddypress .mejs-controls .mejs-unmute button{background-position:-16px 0}#buddypress .mejs-controls .mejs-mute button{background-position:-16px -16px}#buddypress .mejs-controls .mejs-fullscreen-button button{background-position:-32px 0}#buddypress .mejs-controls .mejs-unfullscreen button{background-position:-32px -16px}.mejs-container .mejs-controls .mejs-time{padding:10px 3px 0;content:''}.rtmedia-activity-container .mejs-playpause-button.mejs-play button:before,.rtmedia-activity-container .mejs-playpause-button.mejs-pause button:before,.rtmedia-activity-container .mejs-volume-button.mejs-mute button:before,.rtmedia-activity-container .mejs-fullscreen-button button:before,.rtmedia-media .mejs-playpause-button.mejs-play button:before,.rtmedia-media .mejs-playpause-button.mejs-pause button:before,.rtmedia-media .mejs-volume-button.mejs-mute button:before,.rtmedia-media .mejs-fullscreen-button button:before{content:''}@media only screen and (min-width: 1025px){.mfp-content .rtm-lightbox-container{display:table;table-layout:fixed;width:100%}.mfp-content .rtm-single-media{display:table-cell;width:66.6667%}.mfp-content .rtm-single-meta{display:table-cell;width:33.3333%}.mfp-content .rtmedia-item-comments{max-height:330px;overflow-x:hidden;overflow-y:auto}}.rtl #rtSelectPrivacy{float:left}.rtl .rtmedia-plupload-container{float:right}.rtl .rtm-upload-button-wrapper{float:right}.rtl #whats-new-post-in-box{float:right}.rtl .describe-toggle-off{float:left}.rtl .media-item .pinkynail{float:right}.rtl .media-item .progress{float:left}.rtl .media-item .error-div a.dismiss{float:left}.rtl #find-posts-input{float:right}.rtl #find-posts-search{float:right}.rtl .spinner{float:left}.rtl .wp_attachment_image .button,.rtl .A1B1 .button{float:right}.rtl .wp_attachment_image .spinner,.rtl .A1B1 .spinner{float:right}.rtl .imgedit-menu div{float:right}.rtl .wp_attachment_image .bp-media-image-edit{float:right}.rtl .rtmedia-container .rtmedia-list .rtmedia-list-item{float:right}.rtl #buddypress #rtm-media-options-list .rtm-options .button{float:right}.rtl .rtm-ltb-title{float:right}.rtl .rtm-item-actions{float:left}.rtl .rtm-item-actions>div,.rtl .rtm-item-actions>form{float:right}.rtl .userprofile{float:right}.rtl .rtmedia-actions-before-comments>span{float:right}.rtl .rtmedia-comment-user-pic{float:right}.rtl .rtmedia-media-name{float:right}.rtl #rtmedia-uploader-form .rtm-plupload-list li,.rtl #rtmedia_uploader_filelist li{float:right}.rtl .rtm-page-number{float:right}.rtl .rtm-page-number .rtmedia-page-link{float:right}.rtl .rtm-pagination{float:right}.rtl .rtm-pagination .rtm-paginate{float:left}.rtl .rtm-tabs li{float:right}.rtl .alignleft{float:right}.rtl .alignright{float:left}
app/helper/RTMediaAddon.php CHANGED
@@ -64,7 +64,7 @@ if ( ! class_exists( 'RTMediaAddon' ) ) {
64
  }
65
 
66
  /**
67
- * Get addons for Audio/Video Encoding and Plugins.
68
  *
69
  * @access public
70
  *
@@ -86,14 +86,6 @@ if ( ! class_exists( 'RTMediaAddon' ) ) {
86
  );
87
  }
88
 
89
- $tabs[] = array(
90
- 'title' => esc_html__( 'Audio/Video Encoding', 'buddypress-media' ),
91
- 'name' => esc_html__( 'Audio/Video Encoding', 'buddypress-media' ),
92
- 'href' => '#rtm-services',
93
- 'icon' => 'dashicons-playlist-video',
94
- 'callback' => array( $rtmedia_admin->rtmedia_encoding, 'encoding_service_intro' ),
95
- );
96
-
97
  RTMediaAdmin::render_admin_ui( self::$page, $tabs );
98
  }
99
 
@@ -549,19 +541,6 @@ if ( ! class_exists( 'RTMediaAddon' ) ) {
549
  <?php
550
  }
551
 
552
- /**
553
- * services_content.
554
- *
555
- * @access public
556
- *
557
- * @param array $args
558
- *
559
- * @return void
560
- */
561
- public function services_content( $args = '' ) {
562
- $objEncoding->encoding_service_intro();
563
- }
564
-
565
  /**
566
  * themes_content.
567
  *
64
  }
65
 
66
  /**
67
+ * Get addons for Plugins.
68
  *
69
  * @access public
70
  *
86
  );
87
  }
88
 
 
 
 
 
 
 
 
 
89
  RTMediaAdmin::render_admin_ui( self::$page, $tabs );
90
  }
91
 
541
  <?php
542
  }
543
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
  /**
545
  * themes_content.
546
  *
app/main/controllers/activity/RTMediaActivity.php CHANGED
@@ -41,9 +41,9 @@ class RTMediaActivity {
41
  $html .= '<div class="rtmedia-activity-container">';
42
 
43
  if ( ! empty( $this->activity_text ) ) {
44
- $html .= '<div class="rtmedia-activity-text">';
45
  $html .= $this->activity_text;
46
- $html .= '</div>';
47
  }
48
 
49
  global $rtmedia;
41
  $html .= '<div class="rtmedia-activity-container">';
42
 
43
  if ( ! empty( $this->activity_text ) ) {
44
+ $html .= '<div class="rtmedia-activity-text"><span>';
45
  $html .= $this->activity_text;
46
+ $html .= '</span></div>';
47
  }
48
 
49
  global $rtmedia;
app/main/controllers/activity/RTMediaBuddyPressActivity.php CHANGED
@@ -326,27 +326,30 @@ class RTMediaBuddyPressActivity {
326
 
327
  function override_allowed_tags( $activity_allowedtags ) {
328
 
329
- $activity_allowedtags['video'] = array();
330
- $activity_allowedtags['video']['id'] = array();
331
- $activity_allowedtags['video']['class'] = array();
332
- $activity_allowedtags['video']['src'] = array();
333
- $activity_allowedtags['video']['controls'] = array();
334
- $activity_allowedtags['video']['preload'] = array();
335
- $activity_allowedtags['video']['alt'] = array();
336
- $activity_allowedtags['video']['title'] = array();
337
- $activity_allowedtags['video']['width'] = array();
338
- $activity_allowedtags['video']['height'] = array();
339
- $activity_allowedtags['video']['poster'] = array();
340
- $activity_allowedtags['audio'] = array();
341
- $activity_allowedtags['audio']['id'] = array();
342
- $activity_allowedtags['audio']['class'] = array();
343
- $activity_allowedtags['audio']['src'] = array();
344
- $activity_allowedtags['audio']['controls'] = array();
345
- $activity_allowedtags['audio']['preload'] = array();
346
- $activity_allowedtags['audio']['alt'] = array();
347
- $activity_allowedtags['audio']['title'] = array();
348
- $activity_allowedtags['audio']['width'] = array();
349
- $activity_allowedtags['audio']['poster'] = array();
 
 
 
350
 
351
  if ( ! isset( $activity_allowedtags['div'] ) ) {
352
  $activity_allowedtags['div'] = array();
326
 
327
  function override_allowed_tags( $activity_allowedtags ) {
328
 
329
+ $activity_allowedtags['video'] = array();
330
+ $activity_allowedtags['video']['id'] = array();
331
+ $activity_allowedtags['video']['class'] = array();
332
+ $activity_allowedtags['video']['src'] = array();
333
+ $activity_allowedtags['video']['controls'] = array();
334
+ $activity_allowedtags['video']['preload'] = array();
335
+ $activity_allowedtags['video']['alt'] = array();
336
+ $activity_allowedtags['video']['title'] = array();
337
+ $activity_allowedtags['video']['width'] = array();
338
+ $activity_allowedtags['video']['height'] = array();
339
+ $activity_allowedtags['video']['poster'] = array();
340
+ $activity_allowedtags['source'] = array();
341
+ $activity_allowedtags['source']['type'] = array();
342
+ $activity_allowedtags['source']['src'] = array();
343
+ $activity_allowedtags['audio'] = array();
344
+ $activity_allowedtags['audio']['id'] = array();
345
+ $activity_allowedtags['audio']['class'] = array();
346
+ $activity_allowedtags['audio']['src'] = array();
347
+ $activity_allowedtags['audio']['controls'] = array();
348
+ $activity_allowedtags['audio']['preload'] = array();
349
+ $activity_allowedtags['audio']['alt'] = array();
350
+ $activity_allowedtags['audio']['title'] = array();
351
+ $activity_allowedtags['audio']['width'] = array();
352
+ $activity_allowedtags['audio']['poster'] = array();
353
 
354
  if ( ! isset( $activity_allowedtags['div'] ) ) {
355
  $activity_allowedtags['div'] = array();
app/main/controllers/template/rt-template-functions.php CHANGED
@@ -1019,7 +1019,7 @@ function rtmedia_pagination_page_link( $page_no = '' ) {
1019
  $link = '';
1020
 
1021
  if ( $rtmedia_interaction && isset( $rtmedia_interaction->context ) && 'profile' === $rtmedia_interaction->context->type ) {
1022
- if ( function_exists( 'bp_core_get_user_domain' ) ) {
1023
  $link .= trailingslashit( bp_core_get_user_domain( $rtmedia_query->media_query['media_author'] ) );
1024
  } else {
1025
  $link .= $site_url . 'author/' . $author_name . '/';
@@ -1235,131 +1235,6 @@ function is_rtmedia_edit_allowed() {
1235
  }
1236
  }
1237
 
1238
- add_action( 'rtmedia_after_update_media', 'set_video_thumbnail', 12 );
1239
- add_filter( 'rtmedia_single_content_filter', 'change_poster', 99, 2 );
1240
-
1241
- function change_poster( $html, $media ) {
1242
- global $rtmedia_media;
1243
- if ( 'video' === $rtmedia_media->media_type ) {
1244
- $thumbnail_id = $rtmedia_media->cover_art;
1245
- if ( $thumbnail_id ) {
1246
- if ( is_numeric( $thumbnail_id ) ) {
1247
- $thumbnail_info = wp_get_attachment_image_src( $thumbnail_id, 'full' );
1248
- $html = str_replace( '<video ', '<video poster="' . esc_url( $thumbnail_info[0] ) . '" ', $html );
1249
- } else {
1250
- $html = str_replace( '<video ', '<video poster="' . esc_attr( $thumbnail_id ) . '" ', $html );
1251
- }
1252
- }
1253
- }
1254
-
1255
- return $html;
1256
- }
1257
-
1258
- // add title for video editor in tabs
1259
- add_action( 'rtmedia_add_edit_tab_title', 'rtmedia_vedio_editor_title', 1000 );
1260
-
1261
- function rtmedia_vedio_editor_title() {
1262
- global $rtmedia_query;
1263
- if ( isset( $rtmedia_query->media[0]->media_type ) && 'video' === $rtmedia_query->media[0]->media_type ) {
1264
- $flag = false;
1265
- $media_id = $rtmedia_query->media[0]->media_id;
1266
- $thumbnail_array = get_post_meta( $media_id, 'rtmedia_media_thumbnails', true );
1267
- if ( is_array( $thumbnail_array ) ) {
1268
- $flag = true;
1269
- } else {
1270
- global $rtmedia_media;
1271
- $curr_cover_art = $rtmedia_media->cover_art;
1272
- if ( ! empty( $curr_cover_art ) ) {
1273
- $rtmedia_video_thumbs = get_rtmedia_meta( $rtmedia_query->media[0]->media_id, 'rtmedia-thumbnail-ids' );
1274
- if ( is_array( $rtmedia_video_thumbs ) ) {
1275
- $flag = true;
1276
- }
1277
- }
1278
- }
1279
- if ( $flag ) {
1280
- echo '<li><a href="#panel2"><i class="dashicons dashicons-format-image rtmicon"></i>' . esc_html__( 'Video Thumbnail', 'buddypress-media' ) . '</a></li>';
1281
- }
1282
- }
1283
- }
1284
-
1285
- add_action( 'rtmedia_add_edit_tab_content', 'rtmedia_vedio_editor_content', 1000 );
1286
-
1287
- function rtmedia_vedio_editor_content() {
1288
- global $rtmedia_query;
1289
- if ( isset( $rtmedia_query->media ) && is_array( $rtmedia_query->media ) && isset( $rtmedia_query->media[0]->media_type ) && 'video' === $rtmedia_query->media[0]->media_type ) {
1290
- $media_id = $rtmedia_query->media[0]->media_id;
1291
- $thumbnail_array = get_post_meta( $media_id, 'rtmedia_media_thumbnails', true );
1292
- echo '<div class="content" id="panel2">';
1293
- if ( is_array( $thumbnail_array ) ) {
1294
- ?>
1295
-
1296
- <div class="rtmedia-change-cover-arts">
1297
- <ul>
1298
- <?php
1299
- foreach ( $thumbnail_array as $key => $thumbnail_src ) {
1300
- ?>
1301
- <li<?php echo checked( $thumbnail_src, $rtmedia_query->media[0]->cover_art, false ) ? ' class="selected"' : ''; ?>
1302
- style="width: 150px;display: inline-block;">
1303
- <label
1304
- for="rtmedia-upload-select-thumbnail-<?php echo intval( sanitize_text_field( $key ) ) + 1; ?>"
1305
- class="alignleft">
1306
- <input
1307
- type="radio"<?php checked( $thumbnail_src, $rtmedia_query->media[0]->cover_art ); ?>
1308
- id="rtmedia-upload-select-thumbnail-<?php echo intval( sanitize_text_field( $key ) ) + 1; ?>"
1309
- value="<?php echo esc_url( $thumbnail_src ); ?>" name="rtmedia-thumbnail"/>
1310
- <img src="<?php echo esc_url( $thumbnail_src ); ?>"
1311
- style="max-height: 120px;max-width: 120px"/>
1312
- </label>
1313
- </li>
1314
- <?php
1315
- }
1316
- ?>
1317
- </ul>
1318
- </div>
1319
-
1320
-
1321
- <?php
1322
- } else { // check for array of thumbs stored as attachement ids
1323
- global $rtmedia_media;
1324
- $curr_cover_art = $rtmedia_media->cover_art;
1325
- if ( ! empty( $curr_cover_art ) ) {
1326
- $rtmedia_video_thumbs = get_rtmedia_meta( $rtmedia_query->media[0]->media_id, 'rtmedia-thumbnail-ids' );
1327
- if ( is_array( $rtmedia_video_thumbs ) ) {
1328
- ?>
1329
- <div class="rtmedia-change-cover-arts">
1330
- <p><?php esc_html_e( 'Video Thumbnail:', 'buddypress-media' ); ?></p>
1331
- <ul>
1332
- <?php
1333
- foreach ( $rtmedia_video_thumbs as $key => $attachment_id ) {
1334
- $thumbnail_src = wp_get_attachment_url( $attachment_id );
1335
- ?>
1336
- <li<?php echo checked( $attachment_id, $curr_cover_art, false ) ? ' class="selected"' : ''; ?>
1337
- style="width: 150px;display: inline-block;">
1338
- <label
1339
- for="rtmedia-upload-select-thumbnail-<?php echo intval( sanitize_text_field( $key ) ) + 1; ?>"
1340
- class="alignleft">
1341
- <input type="radio"<?php checked( $attachment_id, $curr_cover_art ); ?>
1342
- id="rtmedia-upload-select-thumbnail-<?php echo intval( sanitize_text_field( $key ) ) + 1; ?>"
1343
- value="<?php echo esc_attr( $attachment_id ); ?>"
1344
- name="rtmedia-thumbnail"/>
1345
- <img src="<?php echo esc_attr( $thumbnail_src ); ?>"
1346
- style="max-height: 120px;max-width: 120px"/>
1347
- </label>
1348
- </li>
1349
- <?php
1350
- }
1351
- ?>
1352
- </ul>
1353
- </div>
1354
-
1355
- <?php
1356
- }
1357
- }
1358
- }
1359
- echo '</div>';
1360
- }
1361
- }
1362
-
1363
  function update_activity_after_thumb_set( $id ) {
1364
  $model = new RTMediaModel();
1365
  $media_obj = new RTMediaMedia();
@@ -1397,16 +1272,6 @@ function update_activity_after_thumb_set( $id ) {
1397
  }
1398
  }
1399
 
1400
- function set_video_thumbnail( $id ) {
1401
- $media_type = rtmedia_type( $id );
1402
- $thumbnail = filter_input( INPUT_POST, 'rtmedia-thumbnail', FILTER_SANITIZE_URL );
1403
- if ( 'video' === $media_type && ! empty( $thumbnail ) ) {
1404
- $model = new RTMediaModel();
1405
- $model->update( array( 'cover_art' => $thumbnail ), array( 'id' => intval( $id ) ) );
1406
- update_activity_after_thumb_set( $id );
1407
- // code to update activity
1408
- }
1409
- }
1410
 
1411
  add_action( 'rtmedia_add_edit_tab_title', 'rtmedia_image_editor_title', 12, 1 );
1412
 
@@ -3018,3 +2883,30 @@ function rtm_get_server_var( $server_key, $filter_type = 'FILTER_SANITIZE_STRING
3018
  return $server_val;
3019
 
3020
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1019
  $link = '';
1020
 
1021
  if ( $rtmedia_interaction && isset( $rtmedia_interaction->context ) && 'profile' === $rtmedia_interaction->context->type ) {
1022
+ if ( function_exists( 'bp_core_get_user_domain' ) && ! empty( $rtmedia_query->media_query['media_author'] ) ) {
1023
  $link .= trailingslashit( bp_core_get_user_domain( $rtmedia_query->media_query['media_author'] ) );
1024
  } else {
1025
  $link .= $site_url . 'author/' . $author_name . '/';
1235
  }
1236
  }
1237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1238
  function update_activity_after_thumb_set( $id ) {
1239
  $model = new RTMediaModel();
1240
  $media_obj = new RTMediaMedia();
1272
  }
1273
  }
1274
 
 
 
 
 
 
 
 
 
 
 
1275
 
1276
  add_action( 'rtmedia_add_edit_tab_title', 'rtmedia_image_editor_title', 12, 1 );
1277
 
2883
  return $server_val;
2884
 
2885
  }
2886
+
2887
+ function replace_src_with_transcoded_file_url( $html, $rtmedia_media ) {
2888
+
2889
+ if ( empty( $rtmedia_media->media_id ) ) {
2890
+ return $html;
2891
+ }
2892
+
2893
+ $media_type = 'mp4';
2894
+ $attachment_id = $rtmedia_media->media_id;
2895
+
2896
+ $medias = get_post_meta( $attachment_id, '_rt_media_transcoded_files', true );
2897
+ if ( isset( $medias[ $media_type ] ) && is_array( $medias[ $media_type ] ) && ! empty( $medias[ $media_type ][0] ) ) {
2898
+ $file_url = $medias[ $media_type ][0];
2899
+ $uploads = wp_get_upload_dir();
2900
+ if ( 0 === strpos( $file_url, $uploads['baseurl'] ) ) {
2901
+ $final_file_url = $file_url;
2902
+ } else {
2903
+ $final_file_url = $uploads['baseurl'] . '/' . $file_url;
2904
+ }
2905
+ } else {
2906
+ $final_file_url = wp_get_attachment_url( $attachment_id );
2907
+ }
2908
+ return preg_replace( "/src=[\"]([^\"]+)[\"]/", "src=\"$final_file_url\"", $html );
2909
+
2910
+ }
2911
+
2912
+ add_filter( 'rtmedia_single_content_filter', 'replace_src_with_transcoded_file_url', 100, 2 );
app/main/controllers/upload/RTMediaUploadEndpoint.php CHANGED
@@ -52,7 +52,7 @@ class RTMediaUploadEndpoint {
52
 
53
  }
54
 
55
- // ////if media upload is being made for a group, identify the group privacy and set media privacy accordingly
56
  if ( isset( $this->upload['context'] ) && isset( $this->upload['context_id'] ) && 'group' === $this->upload['context'] && function_exists( 'groups_get_group' ) ) {
57
 
58
  $group = groups_get_group( array( 'group_id' => $this->upload['context_id'] ) );
52
 
53
  }
54
 
55
+ //if media upload is being made for a group, identify the group privacy and set media privacy accordingly
56
  if ( isset( $this->upload['context'] ) && isset( $this->upload['context_id'] ) && 'group' === $this->upload['context'] && function_exists( 'groups_get_group' ) ) {
57
 
58
  $group = groups_get_group( array( 'group_id' => $this->upload['context_id'] ) );
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
- Version: 4.0.7
8
  Author: rtCamp
9
  Text Domain: buddypress-media
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
+ Version: 4.1
8
  Author: rtCamp
9
  Text Domain: buddypress-media
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
languages/buddypress-media-da_DK.mo CHANGED
Binary file
languages/buddypress-media.po CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the rtMedia for WordPress, BuddyPress and bbPress package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://community.rtcamp.com/c/rtmedia/\n"
7
- "POT-Creation-Date: 2016-08-08 06:06:16+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,526 +24,436 @@ msgstr ""
24
  "X-Poedit-Bookmarks: \n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
- #: app/admin/RTMediaAdmin.php:153
 
 
 
 
 
 
 
28
  msgid "View &#8220;%s&#8221;"
29
  msgstr ""
30
 
31
- #: app/admin/RTMediaAdmin.php:153
32
  msgid "View"
33
  msgstr ""
34
 
35
- #: app/admin/RTMediaAdmin.php:221 app/admin/RTMediaAdmin.php:273
36
  msgid "rtMedia: "
37
  msgstr ""
38
 
39
- #: app/admin/RTMediaAdmin.php:222
40
  msgid "We have released 30+ premium add-ons for rtMedia plugin. Read more about it "
41
  msgstr ""
42
 
43
- #: app/admin/RTMediaAdmin.php:224 app/admin/RTMediaAdmin.php:1186
44
- #: app/admin/RTMediaAdmin.php:1857 app/admin/RTMediaAdmin.php:1875
45
- #: app/admin/RTMediaAdmin.php:1893 app/admin/RTMediaFormHandler.php:435
46
- #: app/admin/RTMediaFormHandler.php:446 app/helper/RTMediaSettings.php:297
47
- #: app/helper/RTMediaSupport.php:383 app/helper/RTMediaSupport.php:652
48
  msgid "here"
49
  msgstr ""
50
 
51
- #: app/admin/RTMediaAdmin.php:274
52
  msgid "Meet "
53
  msgstr ""
54
 
55
- #: app/admin/RTMediaAdmin.php:277
56
  msgid "rtMedia Social Sync"
57
  msgstr ""
58
 
59
- #: app/admin/RTMediaAdmin.php:279
60
  msgid " which allows you to import media from your Facebook account."
61
  msgstr ""
62
 
63
- #: app/admin/RTMediaAdmin.php:332
64
  msgid "Meet InspireBook"
65
  msgstr ""
66
 
67
- #: app/admin/RTMediaAdmin.php:334
68
  msgid " - First official rtMedia premium theme."
69
  msgstr ""
70
 
71
- #: app/admin/RTMediaAdmin.php:418 app/admin/RTMediaAdmin.php:443
72
  msgid "rtMedia:"
73
  msgstr ""
74
 
75
- #: app/admin/RTMediaAdmin.php:418
76
  msgid " You must"
77
  msgstr ""
78
 
79
- #: app/admin/RTMediaAdmin.php:418
80
  msgid "update permalink structure"
81
  msgstr ""
82
 
83
- #: app/admin/RTMediaAdmin.php:418
84
  msgid "to something other than the default for it to work."
85
  msgstr ""
86
 
87
- #: app/admin/RTMediaAdmin.php:444
88
  msgid "Please update all premium add-ons that you have purchased from rtCamp from"
89
  msgstr ""
90
 
91
- #: app/admin/RTMediaAdmin.php:446
92
  msgid "your account"
93
  msgstr ""
94
 
95
- #: app/admin/RTMediaAdmin.php:448
96
  msgid "Dismiss"
97
  msgstr ""
98
 
99
- #: app/admin/RTMediaAdmin.php:563
100
  msgid "rtMedia Pro is released"
101
  msgstr ""
102
 
103
- #: app/admin/RTMediaAdmin.php:584
104
  msgid "Media Stats"
105
  msgstr ""
106
 
107
- #: app/admin/RTMediaAdmin.php:614
108
  msgid "Usage Stats"
109
  msgstr ""
110
 
111
- #: app/admin/RTMediaAdmin.php:626
112
  msgid "Total "
113
  msgstr ""
114
 
115
- #: app/admin/RTMediaAdmin.php:637
116
  msgid "With Media"
117
  msgstr ""
118
 
119
- #: app/admin/RTMediaAdmin.php:648
120
  msgid "Comments "
121
  msgstr ""
122
 
123
- #: app/admin/RTMediaAdmin.php:659 app/main/controllers/media/RTMediaLike.php:19
124
  msgid "Likes"
125
  msgstr ""
126
 
127
- #: app/admin/RTMediaAdmin.php:669
128
  msgid "rtMedia Links:"
129
  msgstr ""
130
 
131
- #: app/admin/RTMediaAdmin.php:670
132
  msgid "Homepage"
133
  msgstr ""
134
 
135
- #: app/admin/RTMediaAdmin.php:672
136
  msgid "Free Support"
137
  msgstr ""
138
 
139
- #: app/admin/RTMediaAdmin.php:675
140
  msgid "Premium Addons"
141
  msgstr ""
142
 
143
- #: app/admin/RTMediaAdmin.php:692
144
  msgid "Right Now in rtMedia"
145
  msgstr ""
146
 
147
- #: app/admin/RTMediaAdmin.php:727 app/admin/RTMediaAdmin.php:800
148
- #: app/admin/RTMediaAdmin.php:803 app/admin/RTMediaAdmin.php:978
149
- #: app/admin/RTMediaAdmin.php:1567
150
  msgid "Settings"
151
  msgstr ""
152
 
153
- #: app/admin/RTMediaAdmin.php:729 app/admin/RTMediaAdmin.php:824
154
- #: app/admin/RTMediaAdmin.php:827 app/admin/RTMediaAdmin.php:988
155
- #: app/admin/RTMediaAdmin.php:1593 app/helper/RTMediaSettings.php:221
156
  #: app/helper/RTMediaSupport.php:52 app/helper/RTMediaSupport.php:53
157
  msgid "Support"
158
  msgstr ""
159
 
160
- #: app/admin/RTMediaAdmin.php:749 app/admin/RTMediaAdmin.php:1017
161
- #: app/admin/RTMediaAdmin.php:1069
162
- msgid "Regenerate Thumbnail"
163
- msgstr ""
164
-
165
- #: app/admin/RTMediaAdmin.php:793 app/admin/RTMediaAdmin.php:1539
166
- #: app/admin/RTMediaAdmin.php:1540 app/importers/RTMediaActivityUpgrade.php:116
167
  #: app/importers/RTMediaMigration.php:68 app/main/RTMedia.php:908
168
  msgid "rtMedia"
169
  msgstr ""
170
 
171
- #: app/admin/RTMediaAdmin.php:812 app/admin/RTMediaAdmin.php:815
172
- #: app/admin/RTMediaAdmin.php:983 app/admin/RTMediaAdmin.php:1572
173
  msgid "Addons"
174
  msgstr ""
175
 
176
- #: app/admin/RTMediaAdmin.php:836 app/admin/RTMediaAdmin.php:839
177
- #: app/admin/RTMediaAdmin.php:994 app/admin/RTMediaAdmin.php:1580
178
  msgid "Themes"
179
  msgstr ""
180
 
181
- #: app/admin/RTMediaAdmin.php:849 app/admin/RTMediaAdmin.php:852
182
- #: app/admin/RTMediaAdmin.php:1001 app/admin/RTMediaAdmin.php:1586
183
  msgid "Hire Us"
184
  msgstr ""
185
 
186
- #: app/admin/RTMediaAdmin.php:862 app/admin/RTMediaAdmin.php:865
187
- #: app/admin/RTMediaAdmin.php:1008 app/admin/RTMediaAdmin.php:1600
188
  msgid "Licenses"
189
  msgstr ""
190
 
191
- #: app/admin/RTMediaAdmin.php:916
192
  msgid "ON"
193
  msgstr ""
194
 
195
- #: app/admin/RTMediaAdmin.php:917
196
  msgid "OFF"
197
  msgstr ""
198
 
199
- #: app/admin/RTMediaAdmin.php:923
200
  msgid "Please do not refresh this page."
201
  msgstr ""
202
 
203
- #: app/admin/RTMediaAdmin.php:924
204
  msgid "Something went wrong. Please "
205
  msgstr ""
206
 
207
- #: app/admin/RTMediaAdmin.php:924
208
  msgid "refresh"
209
  msgstr ""
210
 
211
- #: app/admin/RTMediaAdmin.php:924
212
  msgid " page."
213
  msgstr ""
214
 
215
- #: app/admin/RTMediaAdmin.php:925
216
  msgid "This will subscribe you to the free plan."
217
  msgstr ""
218
 
219
- #: app/admin/RTMediaAdmin.php:926
220
  msgid "Are you sure you want to disable the encoding service?"
221
  msgstr ""
222
 
223
- #: app/admin/RTMediaAdmin.php:927
224
  msgid "Are you sure you want to enable the encoding service?"
225
  msgstr ""
226
 
227
- #: app/admin/RTMediaAdmin.php:928
228
  msgid "Settings have changed, you should save them!"
229
  msgstr ""
230
 
231
- #: app/admin/RTMediaAdmin.php:929
232
  msgid ""
233
  "Number of video thumbnails to be generated should be greater than 0 in "
234
  "media sizes settings. Setting it to default value 2."
235
  msgstr ""
236
 
237
- #: app/admin/RTMediaAdmin.php:930
238
  msgid ""
239
  "Invalid value for number of video thumbnails in media sizes settings. "
240
  "Setting it to round value"
241
  msgstr ""
242
 
243
- #: app/admin/RTMediaAdmin.php:931
244
  msgid ""
245
  "Number of percentage in JPEG image quality should be greater than 0 in "
246
  "media sizes settings. Setting it to default value 90."
247
  msgstr ""
248
 
249
- #: app/admin/RTMediaAdmin.php:932
250
  msgid ""
251
  "Number of percentage in JPEG image quality should be less than 100 in media "
252
  "sizes settings. Setting it to 100."
253
  msgstr ""
254
 
255
- #: app/admin/RTMediaAdmin.php:933
256
  msgid ""
257
  "Invalid value for percentage in JPEG image quality in media sizes settings. "
258
  "Setting it to round value"
259
  msgstr ""
260
 
261
- #: app/admin/RTMediaAdmin.php:934
262
  msgid ""
263
  "Please enter positive integer value only. Setting number of media per page "
264
  "value to default value 10."
265
  msgstr ""
266
 
267
- #: app/admin/RTMediaAdmin.php:935
268
  msgid ""
269
  "Please enter positive integer value only. Setting number of media per page "
270
  "value to round value"
271
  msgstr ""
272
 
273
- #: app/admin/RTMediaAdmin.php:936
274
  msgid "Request failed."
275
  msgstr ""
276
 
277
- #: app/admin/RTMediaAdmin.php:944
278
  msgid "Please enter WP Admin Login."
279
  msgstr ""
280
 
281
- #: app/admin/RTMediaAdmin.php:945
282
  msgid "Please enter WP Admin password."
283
  msgstr ""
284
 
285
- #: app/admin/RTMediaAdmin.php:946
286
  msgid "Please enter SSH / FTP host."
287
  msgstr ""
288
 
289
- #: app/admin/RTMediaAdmin.php:947
290
  msgid "Please enter SSH / FTP login."
291
  msgstr ""
292
 
293
- #: app/admin/RTMediaAdmin.php:948
294
  msgid "Please enter SSH / FTP password."
295
  msgstr ""
296
 
297
- #: app/admin/RTMediaAdmin.php:949
298
  msgid "Please fill all the fields."
299
  msgstr ""
300
 
301
- #: app/admin/RTMediaAdmin.php:1017
302
- msgid "Regen. Thumbnail "
303
- msgstr ""
304
-
305
- #: app/admin/RTMediaAdmin.php:1038
306
- msgid "rtMedia: Regenerate Video Thumbnails"
307
- msgstr ""
308
-
309
- #: app/admin/RTMediaAdmin.php:1060
310
- msgid "You can see this page because you have "
311
- msgstr ""
312
-
313
- #: app/admin/RTMediaAdmin.php:1061
314
- msgid "subscribed"
315
- msgstr ""
316
-
317
- #: app/admin/RTMediaAdmin.php:1062
318
- msgid " for "
319
- msgstr ""
320
-
321
- #: app/admin/RTMediaAdmin.php:1063
322
- msgid "rtMedia audio/video encoding service"
323
- msgstr ""
324
-
325
- #: app/admin/RTMediaAdmin.php:1066
326
- msgid "You can regenerate thumbnails of a specific video by visiting "
327
- msgstr ""
328
-
329
- #: app/admin/RTMediaAdmin.php:1067
330
- msgid "media page"
331
- msgstr ""
332
-
333
- #: app/admin/RTMediaAdmin.php:1068
334
- msgid " and clicking the "
335
- msgstr ""
336
-
337
- #: app/admin/RTMediaAdmin.php:1070
338
- msgid " option for that particular video."
339
- msgstr ""
340
-
341
- #: app/admin/RTMediaAdmin.php:1073
342
- msgid "Click "
343
- msgstr ""
344
-
345
- #: app/admin/RTMediaAdmin.php:1074 app/admin/RTMediaAdmin.php:1079
346
- msgid "Regenerate Pending Thumbnails"
347
- msgstr ""
348
-
349
- #: app/admin/RTMediaAdmin.php:1075
350
- msgid " to regenerate thumbnails of pending videos."
351
- msgstr ""
352
-
353
- #: app/admin/RTMediaAdmin.php:1091
354
- msgid "Total Videos"
355
- msgstr ""
356
-
357
- #: app/admin/RTMediaAdmin.php:1095
358
- msgid "Sent of regenerate thumbails"
359
- msgstr ""
360
-
361
- #: app/admin/RTMediaAdmin.php:1098
362
- msgid "Fail to regenerate thumbails"
363
- msgstr ""
364
-
365
- #: app/admin/RTMediaAdmin.php:1139
366
- msgid "Regenerate Video Thumbnails Done"
367
- msgstr ""
368
-
369
- #: app/admin/RTMediaAdmin.php:1185
370
- msgid "You have %s videos without thumbnails. Click "
371
- msgstr ""
372
-
373
- #: app/admin/RTMediaAdmin.php:1187
374
- msgid " to generate thumbnails."
375
- msgstr ""
376
-
377
- #: app/admin/RTMediaAdmin.php:1270
378
- msgid "not a video ..."
379
- msgstr ""
380
-
381
- #: app/admin/RTMediaAdmin.php:1421
382
  msgid "Empowering The Web With WordPress"
383
  msgstr ""
384
 
385
- #: app/admin/RTMediaAdmin.php:1442
386
  msgid "Settings saved successfully!"
387
  msgstr ""
388
 
389
- #: app/admin/RTMediaAdmin.php:1448 app/admin/RTMediaAdmin.php:1477
390
  msgid "Save Settings"
391
  msgstr ""
392
 
393
- #: app/admin/RTMediaAdmin.php:1674 app/admin/RTMediaAdmin.php:1675
394
  msgid "Display"
395
  msgstr ""
396
 
397
- #: app/admin/RTMediaAdmin.php:1683
398
  msgid "rtMedia BuddyPress"
399
  msgstr ""
400
 
401
- #: app/admin/RTMediaAdmin.php:1684
402
  msgid "BuddyPress"
403
  msgstr ""
404
 
405
- #: app/admin/RTMediaAdmin.php:1692
406
  msgid "rtMedia Types"
407
  msgstr ""
408
 
409
- #: app/admin/RTMediaAdmin.php:1693
410
  msgid "Types"
411
  msgstr ""
412
 
413
- #: app/admin/RTMediaAdmin.php:1700
414
  msgid "rtMedia Sizes"
415
  msgstr ""
416
 
417
- #: app/admin/RTMediaAdmin.php:1701
418
  msgid "Media Sizes"
419
  msgstr ""
420
 
421
- #: app/admin/RTMediaAdmin.php:1708
422
  msgid "rtMedia Privacy"
423
  msgstr ""
424
 
425
- #: app/admin/RTMediaAdmin.php:1709
426
  #: app/main/controllers/privacy/RTMediaPrivacy.php:417
427
  msgid "Privacy"
428
  msgstr ""
429
 
430
- #: app/admin/RTMediaAdmin.php:1715
431
  msgid "rtMedia Custom CSS"
432
  msgstr ""
433
 
434
- #: app/admin/RTMediaAdmin.php:1716
435
  msgid "Custom CSS"
436
  msgstr ""
437
 
438
- #: app/admin/RTMediaAdmin.php:1725 app/admin/RTMediaAdmin.php:1726
439
  msgid "Other Settings"
440
  msgstr ""
441
 
442
- #: app/admin/RTMediaAdmin.php:1773
443
  msgid "I use @rtMediaWP http://rt.cx/rtmedia on %s"
444
  msgstr ""
445
 
446
- #: app/admin/RTMediaAdmin.php:1775
447
  msgid "Post to Twitter Now"
448
  msgstr ""
449
 
450
- #: app/admin/RTMediaAdmin.php:1775
451
  msgid "Post to Twitter"
452
  msgstr ""
453
 
454
- #: app/admin/RTMediaAdmin.php:1776
455
  msgid "Share on Facebook Now"
456
  msgstr ""
457
 
458
- #: app/admin/RTMediaAdmin.php:1776
459
  msgid "Share on Facebook"
460
  msgstr ""
461
 
462
- #: app/admin/RTMediaAdmin.php:1777
463
  msgid "Rate rtMedia on Wordpress.org"
464
  msgstr ""
465
 
466
- #: app/admin/RTMediaAdmin.php:1777
467
  msgid "Rate on Wordpress.org"
468
  msgstr ""
469
 
470
- #: app/admin/RTMediaAdmin.php:1778
471
  msgid "Subscribe to our Feeds"
472
  msgstr ""
473
 
474
- #: app/admin/RTMediaAdmin.php:1781
475
  msgid "Spread the Word"
476
  msgstr ""
477
 
478
- #: app/admin/RTMediaAdmin.php:1787 app/admin/RTMediaAdmin.php:1794
479
  msgid "Subscribe"
480
  msgstr ""
481
 
482
- #: app/admin/RTMediaAdmin.php:1825
483
  msgid "Thank you for your time."
484
  msgstr ""
485
 
486
- #: app/admin/RTMediaAdmin.php:1838
487
  msgid "Premium Add-ons"
488
  msgstr ""
489
 
490
- #: app/admin/RTMediaAdmin.php:1856
491
  msgid ""
492
  "You have images enabled on rtMedia but your network allowed filetypes do "
493
  "not permit uploading of %s. Click "
494
  msgstr ""
495
 
496
- #: app/admin/RTMediaAdmin.php:1858 app/admin/RTMediaAdmin.php:1876
497
- #: app/admin/RTMediaAdmin.php:1894
498
  msgid " to change your settings manually."
499
  msgstr ""
500
 
501
- #: app/admin/RTMediaAdmin.php:1860 app/admin/RTMediaAdmin.php:1878
502
- #: app/admin/RTMediaAdmin.php:1896
503
  msgid "Recommended:"
504
  msgstr ""
505
 
506
- #: app/admin/RTMediaAdmin.php:1861 app/admin/RTMediaAdmin.php:1879
507
- #: app/admin/RTMediaAdmin.php:1897
508
  msgid "Update Network Settings Automatically"
509
  msgstr ""
510
 
511
- #: app/admin/RTMediaAdmin.php:1874
512
  msgid ""
513
  "You have video enabled on BuddyPress Media but your network allowed "
514
  "filetypes do not permit uploading of mp4. Click "
515
  msgstr ""
516
 
517
- #: app/admin/RTMediaAdmin.php:1892
518
  msgid ""
519
  "You have audio enabled on BuddyPress Media but your network allowed "
520
  "filetypes do not permit uploading of mp3. Click "
521
  msgstr ""
522
 
523
- #: app/admin/RTMediaAdmin.php:1913
524
  msgid "Network settings updated successfully."
525
  msgstr ""
526
 
527
- #: app/admin/RTMediaAdmin.php:2025
528
- msgid "Video is sent to generate thumbnails."
529
- msgstr ""
530
-
531
- #: app/admin/RTMediaAdmin.php:2027
532
- msgid "Video cannot be sent to generate thumbnails."
533
- msgstr ""
534
-
535
- #: app/admin/RTMediaAdmin.php:2041
536
- msgid "Regenerate Video Thumbnails"
537
- msgstr ""
538
-
539
- #: app/admin/RTMediaAdmin.php:2053
540
  msgid ""
541
  "Please update rtMedia template files if you have overridden the default "
542
  "rtMedia templates in your theme. If not, you can ignore and hide this "
543
  "notice."
544
  msgstr ""
545
 
546
- #: app/admin/RTMediaAdmin.php:2053
547
  #: app/importers/RTMediaMediaSizeImporter.php:73
548
  #: app/importers/RTMediaMigration.php:68
549
  msgid "Hide"
@@ -788,113 +698,99 @@ msgstr ""
788
  msgid "Crop"
789
  msgstr ""
790
 
791
- #: app/admin/RTMediaFormHandler.php:815
792
- msgid "Number of thumbnails to generate on video upload"
793
- msgstr ""
794
-
795
- #: app/admin/RTMediaFormHandler.php:821
796
- msgid ""
797
- " If you choose more than 1 thumbnail, your users will be able to change the "
798
- "thumbnail by going to video 'edit' section. Maximum value is 10."
799
- msgstr ""
800
-
801
- #: app/admin/RTMediaFormHandler.php:829
802
- msgid "Encoding Settings"
803
- msgstr ""
804
-
805
- #: app/admin/RTMediaFormHandler.php:836
806
  msgid "JPEG/JPG image quality (1-100)"
807
  msgstr ""
808
 
809
- #: app/admin/RTMediaFormHandler.php:842
810
  msgid "Enter JPEG/JPG Image Quality. Minimum value is 1. 100 is original quality."
811
  msgstr ""
812
 
813
- #: app/admin/RTMediaFormHandler.php:850
814
  msgid "Image Quality"
815
  msgstr ""
816
 
817
- #: app/admin/RTMediaFormHandler.php:872
818
  msgid "Custom CSS settings"
819
  msgstr ""
820
 
821
- #: app/admin/RTMediaFormHandler.php:889
822
  msgid "rtMedia default styles"
823
  msgstr ""
824
 
825
- #: app/admin/RTMediaFormHandler.php:895
826
  msgid ""
827
  "Load default rtMedia styles. You need to write your own style for rtMedia "
828
  "if you disable it."
829
  msgstr ""
830
 
831
- #: app/admin/RTMediaFormHandler.php:900
832
  msgid "Paste your CSS code"
833
  msgstr ""
834
 
835
- #: app/admin/RTMediaFormHandler.php:906
836
  msgid "Custom rtMedia CSS container"
837
  msgstr ""
838
 
839
- #: app/admin/RTMediaFormHandler.php:929
840
  msgid "Enable privacy"
841
  msgstr ""
842
 
843
- #: app/admin/RTMediaFormHandler.php:935
844
  msgid "Enable privacy in rtMedia"
845
  msgstr ""
846
 
847
- #: app/admin/RTMediaFormHandler.php:940
848
  msgid "Default privacy"
849
  msgstr ""
850
 
851
- #: app/admin/RTMediaFormHandler.php:946
852
  msgid "Set default privacy for media"
853
  msgstr ""
854
 
855
- #: app/admin/RTMediaFormHandler.php:952
856
  msgid "Allow users to set privacy for their content"
857
  msgstr ""
858
 
859
- #: app/admin/RTMediaFormHandler.php:957
860
  msgid ""
861
  "If you choose this, users will be able to change privacy of their own "
862
  "uploads."
863
  msgstr ""
864
 
865
- #: app/admin/RTMediaFormHandler.php:961
866
  msgid "For group uploads, BuddyPress groups privacy is used."
867
  msgstr ""
868
 
869
- #: app/admin/RTMediaFormHandler.php:1003
870
  msgid "Enable media in profile"
871
  msgstr ""
872
 
873
- #: app/admin/RTMediaFormHandler.php:1008
874
  msgid "Enable Media on BuddyPress Profile"
875
  msgstr ""
876
 
877
- #: app/admin/RTMediaFormHandler.php:1013
878
  msgid "Enable media in group"
879
  msgstr ""
880
 
881
- #: app/admin/RTMediaFormHandler.php:1018
882
  msgid "Enable Media on BuddyPress Groups"
883
  msgstr ""
884
 
885
- #: app/admin/RTMediaFormHandler.php:1023
886
  msgid "Allow upload from activity stream"
887
  msgstr ""
888
 
889
- #: app/admin/RTMediaFormHandler.php:1028
890
  msgid "Allow upload using status update box present on activity stream page"
891
  msgstr ""
892
 
893
- #: app/admin/RTMediaFormHandler.php:1034
894
  msgid "Number of media items to show in activity stream"
895
  msgstr ""
896
 
897
- #: app/admin/RTMediaFormHandler.php:1039
898
  msgid ""
899
  "With bulk uploads activity, the stream may get flooded. You can control the "
900
  "maximum number of media items or files per activity. This limit will not "
@@ -902,37 +798,37 @@ msgid ""
902
  "unlimited."
903
  msgstr ""
904
 
905
- #: app/admin/RTMediaFormHandler.php:1046
906
  msgid "Enable media notification"
907
  msgstr ""
908
 
909
- #: app/admin/RTMediaFormHandler.php:1051
910
  msgid ""
911
  "This will enable notifications to media authors for media likes and "
912
  "comments."
913
  msgstr ""
914
 
915
- #: app/admin/RTMediaFormHandler.php:1057
916
  msgid "Create activity for media likes"
917
  msgstr ""
918
 
919
- #: app/admin/RTMediaFormHandler.php:1062
920
  msgid "Enabling this setting will create BuddyPress activity for media likes."
921
  msgstr ""
922
 
923
- #: app/admin/RTMediaFormHandler.php:1068
924
  msgid "Create activity for media comments"
925
  msgstr ""
926
 
927
- #: app/admin/RTMediaFormHandler.php:1073
928
  msgid "Enabling this setting will create BuddyPress activity for media comments."
929
  msgstr ""
930
 
931
- #: app/admin/RTMediaFormHandler.php:1079
932
  msgid "Organize media into albums"
933
  msgstr ""
934
 
935
- #: app/admin/RTMediaFormHandler.php:1085
936
  msgid ""
937
  "This will add 'album' tab to BuddyPress profile and group depending on the "
938
  "^above^ settings."
@@ -946,411 +842,407 @@ msgstr ""
946
  msgid "Plugins"
947
  msgstr ""
948
 
949
- #: app/helper/RTMediaAddon.php:90 app/helper/RTMediaAddon.php:91
950
- msgid "Audio/Video Encoding"
951
- msgstr ""
952
-
953
- #: app/helper/RTMediaAddon.php:114
954
  msgid "SEO"
955
  msgstr ""
956
 
957
- #: app/helper/RTMediaAddon.php:117
958
  msgid ""
959
  "Generate an XML sitemap for all the public media files uploaded via rtMedia "
960
  "plugin. These sitemaps can be useful to index search engine to improve "
961
  "website SEO."
962
  msgstr ""
963
 
964
- #: app/helper/RTMediaAddon.php:125
965
  msgid "Moderation"
966
  msgstr ""
967
 
968
- #: app/helper/RTMediaAddon.php:128
969
  msgid ""
970
  "Report media if they find offensive. Set number of reports to automatically "
971
  "take down media from site."
972
  msgstr ""
973
 
974
- #: app/helper/RTMediaAddon.php:136
975
  msgid "Custom Attributes"
976
  msgstr ""
977
 
978
- #: app/helper/RTMediaAddon.php:139
979
  msgid ""
980
  "Categories media based on attributes. Site owner need to create attributes. "
981
  "When user upload a media, can select in which attribute that media can add."
982
  msgstr ""
983
 
984
- #: app/helper/RTMediaAddon.php:147
985
  msgid "Docs and Other files"
986
  msgstr ""
987
 
988
- #: app/helper/RTMediaAddon.php:150
989
  msgid ""
990
  "Allow users to upload documents and other file type using rtMedia upload "
991
  "box. This addon support all the file extensions which WordPress allows."
992
  msgstr ""
993
 
994
- #: app/helper/RTMediaAddon.php:158
995
  msgid "Default Albums"
996
  msgstr ""
997
 
998
- #: app/helper/RTMediaAddon.php:161
999
  msgid ""
1000
  "This plugin allows the creation of multiple default albums for rtMedia "
1001
  "uploads. One of these albums can be set as the default global album."
1002
  msgstr ""
1003
 
1004
- #: app/helper/RTMediaAddon.php:169
1005
  msgid "Podcast (RSS and Atom feeds)"
1006
  msgstr ""
1007
 
1008
- #: app/helper/RTMediaAddon.php:172
1009
  msgid ""
1010
  "Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting "
1011
  "software."
1012
  msgstr ""
1013
 
1014
- #: app/helper/RTMediaAddon.php:180
1015
  msgid "Playlists"
1016
  msgstr ""
1017
 
1018
- #: app/helper/RTMediaAddon.php:183
1019
  msgid ""
1020
  "Audio can be grouped into playlists. Once the user upload any audio file, "
1021
  "can create a playlist or use existing one to manage audio files."
1022
  msgstr ""
1023
 
1024
- #: app/helper/RTMediaAddon.php:191
1025
  msgid "Favorites"
1026
  msgstr ""
1027
 
1028
- #: app/helper/RTMediaAddon.php:194
1029
  msgid ""
1030
  "Users can create their list of favorite media in which they can add media "
1031
  "previously uploaded by any user."
1032
  msgstr ""
1033
 
1034
- #: app/helper/RTMediaAddon.php:202
1035
  msgid "Restrictions"
1036
  msgstr ""
1037
 
1038
- #: app/helper/RTMediaAddon.php:205
1039
  msgid ""
1040
  "Site admin can set an upload limit on the basis of time span, file size "
1041
  "(MB) and number of files user can upload."
1042
  msgstr ""
1043
 
1044
- #: app/helper/RTMediaAddon.php:213
1045
  msgid "bbPress Attachments"
1046
  msgstr ""
1047
 
1048
- #: app/helper/RTMediaAddon.php:216
1049
  msgid "Attach media files to bbPress forum topics and replies."
1050
  msgstr ""
1051
 
1052
- #: app/helper/RTMediaAddon.php:224
1053
  msgid "WordPress Sitewide Gallery"
1054
  msgstr ""
1055
 
1056
- #: app/helper/RTMediaAddon.php:227
1057
  msgid ""
1058
  "Site admin can create and upload media into WordPress album. Create album "
1059
  "without being dependent on BuddyPress."
1060
  msgstr ""
1061
 
1062
- #: app/helper/RTMediaAddon.php:235
1063
  msgid "WordPress Comment Attachments"
1064
  msgstr ""
1065
 
1066
- #: app/helper/RTMediaAddon.php:238
1067
  msgid ""
1068
  "Allow users to upload a media file in WordPress comment attachment box. It "
1069
  "will display a thumbnail of attached file."
1070
  msgstr ""
1071
 
1072
- #: app/helper/RTMediaAddon.php:246
1073
  msgid "Social Sharing"
1074
  msgstr ""
1075
 
1076
- #: app/helper/RTMediaAddon.php:249
1077
  msgid ""
1078
  "Share uploaded media on social network sites like Facebook, twitter, "
1079
  "linkedin, Google +. This addon integrate with rtSocial plugin."
1080
  msgstr ""
1081
 
1082
- #: app/helper/RTMediaAddon.php:257
1083
  msgid "Sidebar Widgets"
1084
  msgstr ""
1085
 
1086
- #: app/helper/RTMediaAddon.php:260
1087
  msgid ""
1088
  "This addon provide widgets to upload media and display gallery for rtMedia "
1089
  "plugin."
1090
  msgstr ""
1091
 
1092
- #: app/helper/RTMediaAddon.php:268
1093
  msgid "5 Star Ratings"
1094
  msgstr ""
1095
 
1096
- #: app/helper/RTMediaAddon.php:271
1097
  msgid ""
1098
  "Display 5 star rating for all the uploaded media. User can rate the media "
1099
  "files from 1 to 5 star."
1100
  msgstr ""
1101
 
1102
- #: app/helper/RTMediaAddon.php:279
1103
  msgid "Edit Mp3 Info (ID3 Tags)"
1104
  msgstr ""
1105
 
1106
- #: app/helper/RTMediaAddon.php:282
1107
  msgid "Allow user to edit MP3 FIle Audio tags (ID 3 tags)."
1108
  msgstr ""
1109
 
1110
- #: app/helper/RTMediaAddon.php:290
1111
  msgid "Media Sorting"
1112
  msgstr ""
1113
 
1114
- #: app/helper/RTMediaAddon.php:293
1115
  msgid ""
1116
  "Sort uploaded media based on file size, ascending/descending title, upload "
1117
  "date of media."
1118
  msgstr ""
1119
 
1120
- #: app/helper/RTMediaAddon.php:301
1121
  msgid "Bulk Edit"
1122
  msgstr ""
1123
 
1124
- #: app/helper/RTMediaAddon.php:304
1125
  msgid ""
1126
  "Bulk edit option will allow user to quickly select media files and do "
1127
  "required actions like move files from one album to another, change "
1128
  "attributes, change privacy, delete files."
1129
  msgstr ""
1130
 
1131
- #: app/helper/RTMediaAddon.php:312
1132
  msgid "BuddyPress Profile Picture"
1133
  msgstr ""
1134
 
1135
- #: app/helper/RTMediaAddon.php:315
1136
  msgid "User can easily set his/her profile picture from media uploaded via rtMedia."
1137
  msgstr ""
1138
 
1139
- #: app/helper/RTMediaAddon.php:323
1140
  msgid "Album Cover Art"
1141
  msgstr ""
1142
 
1143
- #: app/helper/RTMediaAddon.php:326
1144
  msgid "User can easily set any of the image of the album as album cover photo"
1145
  msgstr ""
1146
 
1147
- #: app/helper/RTMediaAddon.php:334
1148
  msgid "Direct Download Link"
1149
  msgstr ""
1150
 
1151
- #: app/helper/RTMediaAddon.php:337
1152
  msgid ""
1153
  "User can download media from website. Site owner can restrict which media "
1154
  "type can be allowed to download."
1155
  msgstr ""
1156
 
1157
- #: app/helper/RTMediaAddon.php:345
1158
  msgid "Upload by URL"
1159
  msgstr ""
1160
 
1161
- #: app/helper/RTMediaAddon.php:348
1162
  msgid ""
1163
  "Users do not need to download media files from a URL and then upload it "
1164
  "with rtMedia. Just provide the absolute URL for the media and it will "
1165
  "upload on site."
1166
  msgstr ""
1167
 
1168
- #: app/helper/RTMediaAddon.php:356
1169
  msgid "Media Likes"
1170
  msgstr ""
1171
 
1172
- #: app/helper/RTMediaAddon.php:359
1173
  msgid ""
1174
  "This add-on let you know who liked the media. User can also see which media "
1175
  "they liked under their profile."
1176
  msgstr ""
1177
 
1178
- #: app/helper/RTMediaAddon.php:367
1179
  msgid "Activity URL Preview"
1180
  msgstr ""
1181
 
1182
- #: app/helper/RTMediaAddon.php:370
1183
  msgid ""
1184
  "This addon provides a preview of the URL that is shared in BuddyPress "
1185
  "activity. Just enter the URL you want to share on your site and see a "
1186
  "preview of it before it is shared."
1187
  msgstr ""
1188
 
1189
- #: app/helper/RTMediaAddon.php:378
1190
  msgid "View Counter"
1191
  msgstr ""
1192
 
1193
- #: app/helper/RTMediaAddon.php:381
1194
  msgid ""
1195
  "Enable view count for all the uploaded media. Whenever user open that media "
1196
  "file in lightbox or in single media view, that view count will be "
1197
  "calculated and display next to media file."
1198
  msgstr ""
1199
 
1200
- #: app/helper/RTMediaAddon.php:389
1201
  msgid "Shortcode Generator"
1202
  msgstr ""
1203
 
1204
- #: app/helper/RTMediaAddon.php:392
1205
  msgid ""
1206
  "This add-on will add shortcode generator button in WordPress post and page "
1207
  "editor for all the rtMedia shortcodes."
1208
  msgstr ""
1209
 
1210
- #: app/helper/RTMediaAddon.php:400
1211
  msgid "Album Privacy"
1212
  msgstr ""
1213
 
1214
- #: app/helper/RTMediaAddon.php:403
1215
  msgid ""
1216
  "Set album privacy when user create an album or change album privacy when "
1217
  "editing existing albums. The privacy levels are Public, Logged in user, "
1218
  "Friends and Private."
1219
  msgstr ""
1220
 
1221
- #: app/helper/RTMediaAddon.php:411
1222
  msgid "BuddyPress Group Media Control"
1223
  msgstr ""
1224
 
1225
- #: app/helper/RTMediaAddon.php:414
1226
  msgid "This add-on allows group owner to manage media upload feature group wise."
1227
  msgstr ""
1228
 
1229
- #: app/helper/RTMediaAddon.php:422
1230
  msgid "Set Custom Thumbnail for Audio/Video"
1231
  msgstr ""
1232
 
1233
- #: app/helper/RTMediaAddon.php:425
1234
  msgid ""
1235
  "Allow media owner to change the thumbnail of uploaded audio/video files. "
1236
  "The File Upload box will be provided to change media thumbnail."
1237
  msgstr ""
1238
 
1239
- #: app/helper/RTMediaAddon.php:433
1240
  msgid "myCRED"
1241
  msgstr ""
1242
 
1243
- #: app/helper/RTMediaAddon.php:436
1244
  msgid ""
1245
  "This plugin integrates rtMedia and myCRED plugin, users can be can award "
1246
  "virtual points for various rtMedia activities, like media upload, likes, "
1247
  "deleted etc."
1248
  msgstr ""
1249
 
1250
- #: app/helper/RTMediaAddon.php:444
1251
  msgid "Upload Terms"
1252
  msgstr ""
1253
 
1254
- #: app/helper/RTMediaAddon.php:447
1255
  msgid ""
1256
  "User must have to check the terms and conditions checkbox before uploading "
1257
  "the media."
1258
  msgstr ""
1259
 
1260
- #: app/helper/RTMediaAddon.php:455
1261
  msgid "CubePoints"
1262
  msgstr ""
1263
 
1264
- #: app/helper/RTMediaAddon.php:458
1265
  msgid ""
1266
  "If you are using CubePoints plugin on your website than rtMedia CubePoint "
1267
  "add-on can be integrate with that plugin to setup point management system "
1268
  "for rtMedia related activities."
1269
  msgstr ""
1270
 
1271
- #: app/helper/RTMediaAddon.php:466
1272
  msgid "Social Sync"
1273
  msgstr ""
1274
 
1275
- #: app/helper/RTMediaAddon.php:469
1276
  msgid "rtMedia Social Sync allows you to import media from your Facebook account."
1277
  msgstr ""
1278
 
1279
- #: app/helper/RTMediaAddon.php:477
1280
  msgid "Photo Watermark"
1281
  msgstr ""
1282
 
1283
- #: app/helper/RTMediaAddon.php:480
1284
  msgid ""
1285
  "rtMedia Photo Watermark let you add watermark on your images uploaded using "
1286
  "rtMedia."
1287
  msgstr ""
1288
 
1289
- #: app/helper/RTMediaAddon.php:488
1290
  msgid "Photo Tagging"
1291
  msgstr ""
1292
 
1293
- #: app/helper/RTMediaAddon.php:491
1294
  msgid ""
1295
  "rtMedia Photo Tagging enable users to tag their friends on photos uploaded "
1296
  "using rtMedia."
1297
  msgstr ""
1298
 
1299
- #: app/helper/RTMediaAddon.php:499
1300
  msgid "Photo Filters"
1301
  msgstr ""
1302
 
1303
- #: app/helper/RTMediaAddon.php:502
1304
  msgid ""
1305
  "rtMedia Photo Filters adds Instagram like filters to images uploaded with "
1306
  "rtMedia."
1307
  msgstr ""
1308
 
1309
- #: app/helper/RTMediaAddon.php:510
1310
  msgid "Kaltura Add-on"
1311
  msgstr ""
1312
 
1313
- #: app/helper/RTMediaAddon.php:513
1314
  msgid ""
1315
  "Add support for more video formats using Kaltura video solution. It works "
1316
  "with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1317
  msgstr ""
1318
 
1319
- #: app/helper/RTMediaAddon.php:521
1320
  msgid "FFMPEG Add-on"
1321
  msgstr ""
1322
 
1323
- #: app/helper/RTMediaAddon.php:524
1324
  msgid ""
1325
  "Add supports for more audio & video formats using open-source media-node. "
1326
  "Media node comes with automated setup script for Ubuntu/Debian."
1327
  msgstr ""
1328
 
1329
- #: app/helper/RTMediaAddon.php:532
1330
  msgid "Membership Add-on"
1331
  msgstr ""
1332
 
1333
- #: app/helper/RTMediaAddon.php:535
1334
  msgid ""
1335
  "rtMedia Membership add-on provides membership functionality in your site in "
1336
  "terms of media upload."
1337
  msgstr ""
1338
 
1339
- #: app/helper/RTMediaAddon.php:575
1340
  msgid "Coming Soon !!"
1341
  msgstr ""
1342
 
1343
- #: app/helper/RTMediaAddon.php:608
1344
  msgid "Purchased"
1345
  msgstr ""
1346
 
1347
- #: app/helper/RTMediaAddon.php:610 app/helper/RTMediaThemes.php:157
1348
  #: app/helper/RTMediaThemes.php:201 app/helper/RTMediaThemes.php:310
1349
  #: app/helper/RTMediaThemes.php:354 app/importers/BPMediaAlbumimporter.php:177
1350
  msgid "Buy Now"
1351
  msgstr ""
1352
 
1353
- #: app/helper/RTMediaAddon.php:642 app/helper/RTMediaThemes.php:155
1354
  #: app/helper/RTMediaThemes.php:199 app/helper/RTMediaThemes.php:308
1355
  #: app/helper/RTMediaThemes.php:352 app/importers/BPMediaAlbumimporter.php:178
1356
  msgid "Live Demo"
@@ -1896,7 +1788,6 @@ msgid "Users"
1896
  msgstr ""
1897
 
1898
  #: app/importers/BPMediaAlbumimporter.php:89 app/main/RTMedia.php:597
1899
- #: app/services/RTMediaEncoding.php:605
1900
  msgid "Media"
1901
  msgstr ""
1902
 
@@ -2150,7 +2041,7 @@ msgid "All"
2150
  msgstr ""
2151
 
2152
  #: app/main/RTMedia.php:617 app/main/controllers/media/RTMediaAlbum.php:54
2153
- #: app/main/controllers/template/rt-template-functions.php:1466
2154
  #: app/main/controllers/upload/RTMediaUploadView.php:52
2155
  #: app/main/controllers/upload/RTMediaUploadView.php:55
2156
  msgid "Album"
@@ -2163,8 +2054,8 @@ msgid "Albums"
2163
  msgstr ""
2164
 
2165
  #: app/main/RTMedia.php:631 app/main/controllers/media/RTMediaLoginPopup.php:38
2166
- #: app/main/controllers/template/rt-template-functions.php:2228
2167
- #: app/main/controllers/template/rt-template-functions.php:2232
2168
  msgid "Upload"
2169
  msgstr ""
2170
 
@@ -2279,8 +2170,8 @@ msgstr ""
2279
  #: app/main/RTMedia.php:986
2280
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:67
2281
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2282
- #: app/main/controllers/template/rt-template-functions.php:1547
2283
- #: app/main/controllers/template/rt-template-functions.php:1554
2284
  #: templates/media/album-single-edit.php:78
2285
  msgid "Delete"
2286
  msgstr ""
@@ -2355,41 +2246,41 @@ msgstr ""
2355
 
2356
  #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:323
2357
  #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:100
2358
- #: app/main/controllers/template/rt-template-functions.php:1581
2359
  msgid "You are not allowed to upload/attach media."
2360
  msgstr ""
2361
 
2362
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:458
2363
  msgid "%s added a %s"
2364
  msgstr ""
2365
 
2366
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:465
2367
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:467
2368
  #: app/main/controllers/upload/RTMediaUploadEndpoint.php:122
2369
  msgid "%s added %d %s"
2370
  msgstr ""
2371
 
2372
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:520
2373
  msgid "%1$s liked a %2$s in the group %3$s"
2374
  msgstr ""
2375
 
2376
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:523
2377
  msgid "%1$s liked their %2$s"
2378
  msgstr ""
2379
 
2380
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:527
2381
  msgid "%1$s liked %2$s's %3$s"
2382
  msgstr ""
2383
 
2384
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:609
2385
  msgid "%1$s commented on a %2$s in the group %3$s"
2386
  msgstr ""
2387
 
2388
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:612
2389
  msgid "%1$s commented on their %2$s"
2390
  msgstr ""
2391
 
2392
- #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:616
2393
  msgid "%1$s commented on %2$s's %3$s"
2394
  msgstr ""
2395
 
@@ -2666,12 +2557,12 @@ msgid "Create"
2666
  msgstr ""
2667
 
2668
  #: app/main/controllers/media/RTMediaAlbum.php:56
2669
- #: app/main/controllers/template/rt-template-functions.php:1859
2670
  msgid "Create Album"
2671
  msgstr ""
2672
 
2673
  #: app/main/controllers/media/RTMediaAlbum.php:57
2674
- #: app/main/controllers/template/rt-template-functions.php:1939
2675
  msgid "Edit Album"
2676
  msgstr ""
2677
 
@@ -2717,8 +2608,8 @@ msgstr ""
2717
  msgid "Unset Featured"
2718
  msgstr ""
2719
 
2720
- #: app/main/controllers/media/RTMediaFeatured.php:193
2721
- #: app/main/controllers/media/RTMediaGroupFeatured.php:195
2722
  msgid "Media type is not allowed"
2723
  msgstr ""
2724
 
@@ -2741,8 +2632,8 @@ msgid "Unlike"
2741
  msgstr ""
2742
 
2743
  #: app/main/controllers/media/RTMediaLoginPopup.php:38
2744
- #: app/main/controllers/template/rt-template-functions.php:2228
2745
- #: app/main/controllers/template/rt-template-functions.php:2232
2746
  msgid "Upload Media"
2747
  msgstr ""
2748
 
@@ -2835,7 +2726,7 @@ msgid "Error in updating Media"
2835
  msgstr ""
2836
 
2837
  #: app/main/controllers/template/rt-template-functions.php:766
2838
- #: app/main/controllers/template/rt-template-functions.php:1764
2839
  msgid "Options"
2840
  msgstr ""
2841
 
@@ -2855,159 +2746,151 @@ msgstr ""
2855
  msgid "Go"
2856
  msgstr ""
2857
 
2858
- #: app/main/controllers/template/rt-template-functions.php:1280
2859
- msgid "Video Thumbnail"
2860
- msgstr ""
2861
-
2862
- #: app/main/controllers/template/rt-template-functions.php:1330
2863
- msgid "Video Thumbnail:"
2864
- msgstr ""
2865
-
2866
- #: app/main/controllers/template/rt-template-functions.php:1417
2867
  msgid "Image"
2868
  msgstr ""
2869
 
2870
- #: app/main/controllers/template/rt-template-functions.php:1434
2871
  msgid "Modify Image"
2872
  msgstr ""
2873
 
2874
- #: app/main/controllers/template/rt-template-functions.php:1508
2875
  msgid "Type Comment..."
2876
  msgstr ""
2877
 
2878
- #: app/main/controllers/template/rt-template-functions.php:1511
2879
  #: templates/media/media-single.php:98 templates/media/media-single.php:141
2880
  msgid "Comment"
2881
  msgstr ""
2882
 
2883
- #: app/main/controllers/template/rt-template-functions.php:1547
2884
- #: app/main/controllers/template/rt-template-functions.php:1554
2885
  msgid "Delete Media"
2886
  msgstr ""
2887
 
2888
- #: app/main/controllers/template/rt-template-functions.php:1708
2889
  msgid "Profile Albums"
2890
  msgstr ""
2891
 
2892
- #: app/main/controllers/template/rt-template-functions.php:1711
2893
- #: app/main/controllers/template/rt-template-functions.php:1743
2894
  msgid "Group Albums"
2895
  msgstr ""
2896
 
2897
- #: app/main/controllers/template/rt-template-functions.php:1829
2898
  msgid "Create New Album"
2899
  msgstr ""
2900
 
2901
- #: app/main/controllers/template/rt-template-functions.php:1829
2902
  msgid "Add Album"
2903
  msgstr ""
2904
 
2905
- #: app/main/controllers/template/rt-template-functions.php:1845
2906
  msgid "Create an Album"
2907
  msgstr ""
2908
 
2909
- #: app/main/controllers/template/rt-template-functions.php:1848
2910
  msgid "Album Title : "
2911
  msgstr ""
2912
 
2913
- #: app/main/controllers/template/rt-template-functions.php:1890
2914
- #: app/main/controllers/template/rt-template-functions.php:1898
2915
- #: app/main/controllers/template/rt-template-functions.php:1949
2916
  msgid "Merge Album"
2917
  msgstr ""
2918
 
2919
- #: app/main/controllers/template/rt-template-functions.php:1893
2920
  msgid "Select Album to merge with : "
2921
  msgstr ""
2922
 
2923
- #: app/main/controllers/template/rt-template-functions.php:1940
2924
  msgid "Delete Album"
2925
  msgstr ""
2926
 
2927
- #: app/main/controllers/template/rt-template-functions.php:1977
2928
  msgid "Merge"
2929
  msgstr ""
2930
 
2931
- #: app/main/controllers/template/rt-template-functions.php:2036
2932
  msgid "Privacy : "
2933
  msgstr ""
2934
 
2935
- #: app/main/controllers/template/rt-template-functions.php:2216
2936
  msgid "people like this"
2937
  msgstr ""
2938
 
2939
- #: app/main/controllers/template/rt-template-functions.php:2311
2940
  msgid "Empowering your community with "
2941
  msgstr ""
2942
 
2943
- #: app/main/controllers/template/rt-template-functions.php:2313
2944
  msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2945
  msgstr ""
2946
 
2947
- #: app/main/controllers/template/rt-template-functions.php:2329
2948
  msgid "Close (Esc)"
2949
  msgstr ""
2950
 
2951
- #: app/main/controllers/template/rt-template-functions.php:2343
2952
  msgid "Public"
2953
  msgstr ""
2954
 
2955
- #: app/main/controllers/template/rt-template-functions.php:2347
2956
  msgid "All members"
2957
  msgstr ""
2958
 
2959
- #: app/main/controllers/template/rt-template-functions.php:2351
2960
  msgid "Your friends"
2961
  msgstr ""
2962
 
2963
- #: app/main/controllers/template/rt-template-functions.php:2355
2964
  msgid "Only you"
2965
  msgstr ""
2966
 
2967
- #: app/main/controllers/template/rt-template-functions.php:2359
2968
  msgid "Blocked temporarily"
2969
  msgstr ""
2970
 
2971
- #: app/main/controllers/template/rt-template-functions.php:2395
2972
  msgid "%s ago "
2973
  msgstr ""
2974
 
2975
- #: app/main/controllers/template/rt-template-functions.php:2408
2976
  msgid "1 second"
2977
  msgid_plural "%s seconds"
2978
  msgstr[0] ""
2979
  msgstr[1] ""
2980
 
2981
- #: app/main/controllers/template/rt-template-functions.php:2411
2982
  msgid "1 minute"
2983
  msgid_plural "%s minutes"
2984
  msgstr[0] ""
2985
  msgstr[1] ""
2986
 
2987
- #: app/main/controllers/template/rt-template-functions.php:2414
2988
  msgid "1 hour"
2989
  msgid_plural "%s hours"
2990
  msgstr[0] ""
2991
  msgstr[1] ""
2992
 
2993
- #: app/main/controllers/template/rt-template-functions.php:2799
2994
  #. translators: date format, see http:php.net/date
2995
  msgid "You can consider rtMedia Team for following :"
2996
  msgstr ""
2997
 
2998
- #: app/main/controllers/template/rt-template-functions.php:2802
2999
  msgid "rtMedia Customization ( in Upgrade Safe manner )"
3000
  msgstr ""
3001
 
3002
- #: app/main/controllers/template/rt-template-functions.php:2803
3003
  msgid "WordPress/BuddyPress Theme Design and Development"
3004
  msgstr ""
3005
 
3006
- #: app/main/controllers/template/rt-template-functions.php:2804
3007
  msgid "WordPress/BuddyPress Plugin Development"
3008
  msgstr ""
3009
 
3010
- #: app/main/controllers/template/rt-template-functions.php:2809
3011
  msgid "Contact Us"
3012
  msgstr ""
3013
 
@@ -3089,225 +2972,6 @@ msgstr ""
3089
  msgid "Deprecated %s. Please use %s."
3090
  msgstr ""
3091
 
3092
- #: app/services/RTMediaEncoding.php:163
3093
- msgid "rtMedia Encoding: Nearing quota limit."
3094
- msgstr ""
3095
-
3096
- #: app/services/RTMediaEncoding.php:164
3097
- msgid "You are nearing the quota limit for your rtMedia encoding service."
3098
- msgstr ""
3099
-
3100
- #: app/services/RTMediaEncoding.php:165 app/services/RTMediaEncoding.php:185
3101
- msgid "Following are the details:"
3102
- msgstr ""
3103
-
3104
- #: app/services/RTMediaEncoding.php:166 app/services/RTMediaEncoding.php:186
3105
- #: app/services/RTMediaEncoding.php:338
3106
- msgid "Remaining"
3107
- msgstr ""
3108
-
3109
- #: app/services/RTMediaEncoding.php:166 app/services/RTMediaEncoding.php:186
3110
- msgid "Total:"
3111
- msgstr ""
3112
-
3113
- #: app/services/RTMediaEncoding.php:183
3114
- msgid "rtMedia Encoding: Usage quota over."
3115
- msgstr ""
3116
-
3117
- #: app/services/RTMediaEncoding.php:184
3118
- msgid "Your usage quota is over. Upgrade your plan"
3119
- msgstr ""
3120
-
3121
- #: app/services/RTMediaEncoding.php:185
3122
- msgid "Used:"
3123
- msgstr ""
3124
-
3125
- #: app/services/RTMediaEncoding.php:264
3126
- msgid "You have successfully subscribed for the "
3127
- msgstr ""
3128
-
3129
- #: app/services/RTMediaEncoding.php:266
3130
- msgid " plan"
3131
- msgstr ""
3132
-
3133
- #: app/services/RTMediaEncoding.php:280
3134
- msgid "Unsubscribe"
3135
- msgstr ""
3136
-
3137
- #: app/services/RTMediaEncoding.php:282
3138
- msgid ""
3139
- "Just to improve our service we would like to know the reason for you to "
3140
- "leave us."
3141
- msgstr ""
3142
-
3143
- #: app/services/RTMediaEncoding.php:332 app/services/RTMediaEncoding.php:452
3144
- msgid "Current Plan"
3145
- msgstr ""
3146
-
3147
- #: app/services/RTMediaEncoding.php:332
3148
- msgid "Unsubscribed"
3149
- msgstr ""
3150
-
3151
- #: app/services/RTMediaEncoding.php:335
3152
- msgid "Used"
3153
- msgstr ""
3154
-
3155
- #: app/services/RTMediaEncoding.php:341
3156
- msgid "Total"
3157
- msgstr ""
3158
-
3159
- #: app/services/RTMediaEncoding.php:346
3160
- msgid "Your usage limit has been reached. Upgrade your plan."
3161
- msgstr ""
3162
-
3163
- #: app/services/RTMediaEncoding.php:349
3164
- msgid "Your API key is not valid or is expired."
3165
- msgstr ""
3166
-
3167
- #: app/services/RTMediaEncoding.php:351
3168
- msgid "Encoding Usage"
3169
- msgstr ""
3170
-
3171
- #: app/services/RTMediaEncoding.php:357
3172
- msgid "Audio/Video encoding service"
3173
- msgstr ""
3174
-
3175
- #: app/services/RTMediaEncoding.php:359
3176
- msgid "rtMedia team has started offering an audio/video encoding service."
3177
- msgstr ""
3178
-
3179
- #: app/services/RTMediaEncoding.php:362
3180
- msgid "Enter API KEY"
3181
- msgstr ""
3182
-
3183
- #: app/services/RTMediaEncoding.php:366
3184
- msgid "Save Key"
3185
- msgstr ""
3186
-
3187
- #: app/services/RTMediaEncoding.php:389
3188
- msgid "Feature\\Plan"
3189
- msgstr ""
3190
-
3191
- #: app/services/RTMediaEncoding.php:390 app/services/RTMediaEncoding.php:442
3192
- msgid "Free"
3193
- msgstr ""
3194
-
3195
- #: app/services/RTMediaEncoding.php:391
3196
- msgid "Silver"
3197
- msgstr ""
3198
-
3199
- #: app/services/RTMediaEncoding.php:392
3200
- msgid "Gold"
3201
- msgstr ""
3202
-
3203
- #: app/services/RTMediaEncoding.php:393
3204
- msgid "Platinum"
3205
- msgstr ""
3206
-
3207
- #: app/services/RTMediaEncoding.php:399
3208
- msgid "File Size Limit"
3209
- msgstr ""
3210
-
3211
- #: app/services/RTMediaEncoding.php:410
3212
- msgid "Bandwidth (monthly)"
3213
- msgstr ""
3214
-
3215
- #: app/services/RTMediaEncoding.php:420
3216
- msgid "Overage Bandwidth"
3217
- msgstr ""
3218
-
3219
- #: app/services/RTMediaEncoding.php:421 app/services/RTMediaEncoding.php:428
3220
- #: app/services/RTMediaEncoding.php:433
3221
- msgid "Not Available"
3222
- msgstr ""
3223
-
3224
- #: app/services/RTMediaEncoding.php:427
3225
- msgid "Amazon S3 Support"
3226
- msgstr ""
3227
-
3228
- #: app/services/RTMediaEncoding.php:429 app/services/RTMediaEncoding.php:434
3229
- #: app/services/RTMediaEncoding.php:438
3230
- msgid "Coming Soon"
3231
- msgstr ""
3232
-
3233
- #: app/services/RTMediaEncoding.php:432
3234
- msgid "HD Profile"
3235
- msgstr ""
3236
-
3237
- #: app/services/RTMediaEncoding.php:437
3238
- msgid "Webcam Recording"
3239
- msgstr ""
3240
-
3241
- #: app/services/RTMediaEncoding.php:441
3242
- msgid "Pricing"
3243
- msgstr ""
3244
-
3245
- #: app/services/RTMediaEncoding.php:443
3246
- msgid "$9/month"
3247
- msgstr ""
3248
-
3249
- #: app/services/RTMediaEncoding.php:444
3250
- msgid "$99/month"
3251
- msgstr ""
3252
-
3253
- #: app/services/RTMediaEncoding.php:445
3254
- msgid "$999/month"
3255
- msgstr ""
3256
-
3257
- #: app/services/RTMediaEncoding.php:457
3258
- msgid "Try Now"
3259
- msgstr ""
3260
-
3261
- #: app/services/RTMediaEncoding.php:583
3262
- msgid "Could not read file."
3263
- msgstr ""
3264
-
3265
- #: app/services/RTMediaEncoding.php:587
3266
- msgid ""
3267
- "Something went wrong. The required attachment id does not exists. It must "
3268
- "have been deleted."
3269
- msgstr ""
3270
-
3271
- #: app/services/RTMediaEncoding.php:604
3272
- msgid "rtMedia Encoding: Download Failed"
3273
- msgstr ""
3274
-
3275
- #: app/services/RTMediaEncoding.php:606
3276
- msgid " was successfully encoded but there was an error while downloading:"
3277
- msgstr ""
3278
-
3279
- #: app/services/RTMediaEncoding.php:607
3280
- msgid "You can "
3281
- msgstr ""
3282
-
3283
- #: app/services/RTMediaEncoding.php:608
3284
- msgid "retry the download"
3285
- msgstr ""
3286
-
3287
- #: app/services/RTMediaEncoding.php:622
3288
- msgid "Done"
3289
- msgstr ""
3290
-
3291
- #: app/services/RTMediaEncoding.php:650 app/services/RTMediaEncoding.php:678
3292
- msgid "Something went wrong please try again."
3293
- msgstr ""
3294
-
3295
- #: app/services/RTMediaEncoding.php:673
3296
- msgid "Your subscription was cancelled successfully"
3297
- msgstr ""
3298
-
3299
- #: app/services/RTMediaEncoding.php:687
3300
- msgid "Please enter the api key."
3301
- msgstr ""
3302
-
3303
- #: app/services/RTMediaEncoding.php:694
3304
- msgid "Encoding disabled successfully."
3305
- msgstr ""
3306
-
3307
- #: app/services/RTMediaEncoding.php:700
3308
- msgid "Encoding enabled successfully."
3309
- msgstr ""
3310
-
3311
  #: templates/media/album-gallery.php:14
3312
  msgid "Album List"
3313
  msgstr ""
2
  # This file is distributed under the same license as the rtMedia for WordPress, BuddyPress and bbPress package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 4.0.7\n"
6
  "Report-Msgid-Bugs-To: http://community.rtcamp.com/c/rtmedia/\n"
7
+ "POT-Creation-Date: 2016-08-19 06:27:41+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
24
  "X-Poedit-Bookmarks: \n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
+ #: app/admin/RTMediaAdmin.php:137
28
+ msgid ""
29
+ "Install <a href=\"https://wordpress.org/plugins/transcoder/\" "
30
+ "target=\"_blank\">Transcoder plugin</a> to convert audio/video files and "
31
+ "transcoder generation."
32
+ msgstr ""
33
+
34
+ #: app/admin/RTMediaAdmin.php:182
35
  msgid "View &#8220;%s&#8221;"
36
  msgstr ""
37
 
38
+ #: app/admin/RTMediaAdmin.php:182
39
  msgid "View"
40
  msgstr ""
41
 
42
+ #: app/admin/RTMediaAdmin.php:249 app/admin/RTMediaAdmin.php:301
43
  msgid "rtMedia: "
44
  msgstr ""
45
 
46
+ #: app/admin/RTMediaAdmin.php:250
47
  msgid "We have released 30+ premium add-ons for rtMedia plugin. Read more about it "
48
  msgstr ""
49
 
50
+ #: app/admin/RTMediaAdmin.php:252 app/admin/RTMediaAdmin.php:1604
51
+ #: app/admin/RTMediaAdmin.php:1622 app/admin/RTMediaAdmin.php:1640
52
+ #: app/admin/RTMediaFormHandler.php:435 app/admin/RTMediaFormHandler.php:446
53
+ #: app/helper/RTMediaSettings.php:297 app/helper/RTMediaSupport.php:383
54
+ #: app/helper/RTMediaSupport.php:652
55
  msgid "here"
56
  msgstr ""
57
 
58
+ #: app/admin/RTMediaAdmin.php:302
59
  msgid "Meet "
60
  msgstr ""
61
 
62
+ #: app/admin/RTMediaAdmin.php:305
63
  msgid "rtMedia Social Sync"
64
  msgstr ""
65
 
66
+ #: app/admin/RTMediaAdmin.php:307
67
  msgid " which allows you to import media from your Facebook account."
68
  msgstr ""
69
 
70
+ #: app/admin/RTMediaAdmin.php:360
71
  msgid "Meet InspireBook"
72
  msgstr ""
73
 
74
+ #: app/admin/RTMediaAdmin.php:362
75
  msgid " - First official rtMedia premium theme."
76
  msgstr ""
77
 
78
+ #: app/admin/RTMediaAdmin.php:446 app/admin/RTMediaAdmin.php:471
79
  msgid "rtMedia:"
80
  msgstr ""
81
 
82
+ #: app/admin/RTMediaAdmin.php:446
83
  msgid " You must"
84
  msgstr ""
85
 
86
+ #: app/admin/RTMediaAdmin.php:446
87
  msgid "update permalink structure"
88
  msgstr ""
89
 
90
+ #: app/admin/RTMediaAdmin.php:446
91
  msgid "to something other than the default for it to work."
92
  msgstr ""
93
 
94
+ #: app/admin/RTMediaAdmin.php:472
95
  msgid "Please update all premium add-ons that you have purchased from rtCamp from"
96
  msgstr ""
97
 
98
+ #: app/admin/RTMediaAdmin.php:474
99
  msgid "your account"
100
  msgstr ""
101
 
102
+ #: app/admin/RTMediaAdmin.php:476
103
  msgid "Dismiss"
104
  msgstr ""
105
 
106
+ #: app/admin/RTMediaAdmin.php:591
107
  msgid "rtMedia Pro is released"
108
  msgstr ""
109
 
110
+ #: app/admin/RTMediaAdmin.php:612
111
  msgid "Media Stats"
112
  msgstr ""
113
 
114
+ #: app/admin/RTMediaAdmin.php:642
115
  msgid "Usage Stats"
116
  msgstr ""
117
 
118
+ #: app/admin/RTMediaAdmin.php:654
119
  msgid "Total "
120
  msgstr ""
121
 
122
+ #: app/admin/RTMediaAdmin.php:665
123
  msgid "With Media"
124
  msgstr ""
125
 
126
+ #: app/admin/RTMediaAdmin.php:676
127
  msgid "Comments "
128
  msgstr ""
129
 
130
+ #: app/admin/RTMediaAdmin.php:687 app/main/controllers/media/RTMediaLike.php:19
131
  msgid "Likes"
132
  msgstr ""
133
 
134
+ #: app/admin/RTMediaAdmin.php:697
135
  msgid "rtMedia Links:"
136
  msgstr ""
137
 
138
+ #: app/admin/RTMediaAdmin.php:698
139
  msgid "Homepage"
140
  msgstr ""
141
 
142
+ #: app/admin/RTMediaAdmin.php:700
143
  msgid "Free Support"
144
  msgstr ""
145
 
146
+ #: app/admin/RTMediaAdmin.php:703
147
  msgid "Premium Addons"
148
  msgstr ""
149
 
150
+ #: app/admin/RTMediaAdmin.php:720
151
  msgid "Right Now in rtMedia"
152
  msgstr ""
153
 
154
+ #: app/admin/RTMediaAdmin.php:755 app/admin/RTMediaAdmin.php:789
155
+ #: app/admin/RTMediaAdmin.php:792 app/admin/RTMediaAdmin.php:967
156
+ #: app/admin/RTMediaAdmin.php:1314
157
  msgid "Settings"
158
  msgstr ""
159
 
160
+ #: app/admin/RTMediaAdmin.php:757 app/admin/RTMediaAdmin.php:813
161
+ #: app/admin/RTMediaAdmin.php:816 app/admin/RTMediaAdmin.php:977
162
+ #: app/admin/RTMediaAdmin.php:1340 app/helper/RTMediaSettings.php:221
163
  #: app/helper/RTMediaSupport.php:52 app/helper/RTMediaSupport.php:53
164
  msgid "Support"
165
  msgstr ""
166
 
167
+ #: app/admin/RTMediaAdmin.php:782 app/admin/RTMediaAdmin.php:1286
168
+ #: app/admin/RTMediaAdmin.php:1287 app/importers/RTMediaActivityUpgrade.php:116
 
 
 
 
 
169
  #: app/importers/RTMediaMigration.php:68 app/main/RTMedia.php:908
170
  msgid "rtMedia"
171
  msgstr ""
172
 
173
+ #: app/admin/RTMediaAdmin.php:801 app/admin/RTMediaAdmin.php:804
174
+ #: app/admin/RTMediaAdmin.php:972 app/admin/RTMediaAdmin.php:1319
175
  msgid "Addons"
176
  msgstr ""
177
 
178
+ #: app/admin/RTMediaAdmin.php:825 app/admin/RTMediaAdmin.php:828
179
+ #: app/admin/RTMediaAdmin.php:983 app/admin/RTMediaAdmin.php:1327
180
  msgid "Themes"
181
  msgstr ""
182
 
183
+ #: app/admin/RTMediaAdmin.php:838 app/admin/RTMediaAdmin.php:841
184
+ #: app/admin/RTMediaAdmin.php:990 app/admin/RTMediaAdmin.php:1333
185
  msgid "Hire Us"
186
  msgstr ""
187
 
188
+ #: app/admin/RTMediaAdmin.php:851 app/admin/RTMediaAdmin.php:854
189
+ #: app/admin/RTMediaAdmin.php:997 app/admin/RTMediaAdmin.php:1347
190
  msgid "Licenses"
191
  msgstr ""
192
 
193
+ #: app/admin/RTMediaAdmin.php:905
194
  msgid "ON"
195
  msgstr ""
196
 
197
+ #: app/admin/RTMediaAdmin.php:906
198
  msgid "OFF"
199
  msgstr ""
200
 
201
+ #: app/admin/RTMediaAdmin.php:912
202
  msgid "Please do not refresh this page."
203
  msgstr ""
204
 
205
+ #: app/admin/RTMediaAdmin.php:913
206
  msgid "Something went wrong. Please "
207
  msgstr ""
208
 
209
+ #: app/admin/RTMediaAdmin.php:913
210
  msgid "refresh"
211
  msgstr ""
212
 
213
+ #: app/admin/RTMediaAdmin.php:913
214
  msgid " page."
215
  msgstr ""
216
 
217
+ #: app/admin/RTMediaAdmin.php:914
218
  msgid "This will subscribe you to the free plan."
219
  msgstr ""
220
 
221
+ #: app/admin/RTMediaAdmin.php:915
222
  msgid "Are you sure you want to disable the encoding service?"
223
  msgstr ""
224
 
225
+ #: app/admin/RTMediaAdmin.php:916
226
  msgid "Are you sure you want to enable the encoding service?"
227
  msgstr ""
228
 
229
+ #: app/admin/RTMediaAdmin.php:917
230
  msgid "Settings have changed, you should save them!"
231
  msgstr ""
232
 
233
+ #: app/admin/RTMediaAdmin.php:918
234
  msgid ""
235
  "Number of video thumbnails to be generated should be greater than 0 in "
236
  "media sizes settings. Setting it to default value 2."
237
  msgstr ""
238
 
239
+ #: app/admin/RTMediaAdmin.php:919
240
  msgid ""
241
  "Invalid value for number of video thumbnails in media sizes settings. "
242
  "Setting it to round value"
243
  msgstr ""
244
 
245
+ #: app/admin/RTMediaAdmin.php:920
246
  msgid ""
247
  "Number of percentage in JPEG image quality should be greater than 0 in "
248
  "media sizes settings. Setting it to default value 90."
249
  msgstr ""
250
 
251
+ #: app/admin/RTMediaAdmin.php:921
252
  msgid ""
253
  "Number of percentage in JPEG image quality should be less than 100 in media "
254
  "sizes settings. Setting it to 100."
255
  msgstr ""
256
 
257
+ #: app/admin/RTMediaAdmin.php:922
258
  msgid ""
259
  "Invalid value for percentage in JPEG image quality in media sizes settings. "
260
  "Setting it to round value"
261
  msgstr ""
262
 
263
+ #: app/admin/RTMediaAdmin.php:923
264
  msgid ""
265
  "Please enter positive integer value only. Setting number of media per page "
266
  "value to default value 10."
267
  msgstr ""
268
 
269
+ #: app/admin/RTMediaAdmin.php:924
270
  msgid ""
271
  "Please enter positive integer value only. Setting number of media per page "
272
  "value to round value"
273
  msgstr ""
274
 
275
+ #: app/admin/RTMediaAdmin.php:925
276
  msgid "Request failed."
277
  msgstr ""
278
 
279
+ #: app/admin/RTMediaAdmin.php:933
280
  msgid "Please enter WP Admin Login."
281
  msgstr ""
282
 
283
+ #: app/admin/RTMediaAdmin.php:934
284
  msgid "Please enter WP Admin password."
285
  msgstr ""
286
 
287
+ #: app/admin/RTMediaAdmin.php:935
288
  msgid "Please enter SSH / FTP host."
289
  msgstr ""
290
 
291
+ #: app/admin/RTMediaAdmin.php:936
292
  msgid "Please enter SSH / FTP login."
293
  msgstr ""
294
 
295
+ #: app/admin/RTMediaAdmin.php:937
296
  msgid "Please enter SSH / FTP password."
297
  msgstr ""
298
 
299
+ #: app/admin/RTMediaAdmin.php:938
300
  msgid "Please fill all the fields."
301
  msgstr ""
302
 
303
+ #: app/admin/RTMediaAdmin.php:1168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  msgid "Empowering The Web With WordPress"
305
  msgstr ""
306
 
307
+ #: app/admin/RTMediaAdmin.php:1189
308
  msgid "Settings saved successfully!"
309
  msgstr ""
310
 
311
+ #: app/admin/RTMediaAdmin.php:1195 app/admin/RTMediaAdmin.php:1224
312
  msgid "Save Settings"
313
  msgstr ""
314
 
315
+ #: app/admin/RTMediaAdmin.php:1421 app/admin/RTMediaAdmin.php:1422
316
  msgid "Display"
317
  msgstr ""
318
 
319
+ #: app/admin/RTMediaAdmin.php:1430
320
  msgid "rtMedia BuddyPress"
321
  msgstr ""
322
 
323
+ #: app/admin/RTMediaAdmin.php:1431
324
  msgid "BuddyPress"
325
  msgstr ""
326
 
327
+ #: app/admin/RTMediaAdmin.php:1439
328
  msgid "rtMedia Types"
329
  msgstr ""
330
 
331
+ #: app/admin/RTMediaAdmin.php:1440
332
  msgid "Types"
333
  msgstr ""
334
 
335
+ #: app/admin/RTMediaAdmin.php:1447
336
  msgid "rtMedia Sizes"
337
  msgstr ""
338
 
339
+ #: app/admin/RTMediaAdmin.php:1448
340
  msgid "Media Sizes"
341
  msgstr ""
342
 
343
+ #: app/admin/RTMediaAdmin.php:1455
344
  msgid "rtMedia Privacy"
345
  msgstr ""
346
 
347
+ #: app/admin/RTMediaAdmin.php:1456
348
  #: app/main/controllers/privacy/RTMediaPrivacy.php:417
349
  msgid "Privacy"
350
  msgstr ""
351
 
352
+ #: app/admin/RTMediaAdmin.php:1462
353
  msgid "rtMedia Custom CSS"
354
  msgstr ""
355
 
356
+ #: app/admin/RTMediaAdmin.php:1463
357
  msgid "Custom CSS"
358
  msgstr ""
359
 
360
+ #: app/admin/RTMediaAdmin.php:1472 app/admin/RTMediaAdmin.php:1473
361
  msgid "Other Settings"
362
  msgstr ""
363
 
364
+ #: app/admin/RTMediaAdmin.php:1520
365
  msgid "I use @rtMediaWP http://rt.cx/rtmedia on %s"
366
  msgstr ""
367
 
368
+ #: app/admin/RTMediaAdmin.php:1522
369
  msgid "Post to Twitter Now"
370
  msgstr ""
371
 
372
+ #: app/admin/RTMediaAdmin.php:1522
373
  msgid "Post to Twitter"
374
  msgstr ""
375
 
376
+ #: app/admin/RTMediaAdmin.php:1523
377
  msgid "Share on Facebook Now"
378
  msgstr ""
379
 
380
+ #: app/admin/RTMediaAdmin.php:1523
381
  msgid "Share on Facebook"
382
  msgstr ""
383
 
384
+ #: app/admin/RTMediaAdmin.php:1524
385
  msgid "Rate rtMedia on Wordpress.org"
386
  msgstr ""
387
 
388
+ #: app/admin/RTMediaAdmin.php:1524
389
  msgid "Rate on Wordpress.org"
390
  msgstr ""
391
 
392
+ #: app/admin/RTMediaAdmin.php:1525
393
  msgid "Subscribe to our Feeds"
394
  msgstr ""
395
 
396
+ #: app/admin/RTMediaAdmin.php:1528
397
  msgid "Spread the Word"
398
  msgstr ""
399
 
400
+ #: app/admin/RTMediaAdmin.php:1534 app/admin/RTMediaAdmin.php:1541
401
  msgid "Subscribe"
402
  msgstr ""
403
 
404
+ #: app/admin/RTMediaAdmin.php:1572
405
  msgid "Thank you for your time."
406
  msgstr ""
407
 
408
+ #: app/admin/RTMediaAdmin.php:1585
409
  msgid "Premium Add-ons"
410
  msgstr ""
411
 
412
+ #: app/admin/RTMediaAdmin.php:1603
413
  msgid ""
414
  "You have images enabled on rtMedia but your network allowed filetypes do "
415
  "not permit uploading of %s. Click "
416
  msgstr ""
417
 
418
+ #: app/admin/RTMediaAdmin.php:1605 app/admin/RTMediaAdmin.php:1623
419
+ #: app/admin/RTMediaAdmin.php:1641
420
  msgid " to change your settings manually."
421
  msgstr ""
422
 
423
+ #: app/admin/RTMediaAdmin.php:1607 app/admin/RTMediaAdmin.php:1625
424
+ #: app/admin/RTMediaAdmin.php:1643
425
  msgid "Recommended:"
426
  msgstr ""
427
 
428
+ #: app/admin/RTMediaAdmin.php:1608 app/admin/RTMediaAdmin.php:1626
429
+ #: app/admin/RTMediaAdmin.php:1644
430
  msgid "Update Network Settings Automatically"
431
  msgstr ""
432
 
433
+ #: app/admin/RTMediaAdmin.php:1621
434
  msgid ""
435
  "You have video enabled on BuddyPress Media but your network allowed "
436
  "filetypes do not permit uploading of mp4. Click "
437
  msgstr ""
438
 
439
+ #: app/admin/RTMediaAdmin.php:1639
440
  msgid ""
441
  "You have audio enabled on BuddyPress Media but your network allowed "
442
  "filetypes do not permit uploading of mp3. Click "
443
  msgstr ""
444
 
445
+ #: app/admin/RTMediaAdmin.php:1660
446
  msgid "Network settings updated successfully."
447
  msgstr ""
448
 
449
+ #: app/admin/RTMediaAdmin.php:1713
 
 
 
 
 
 
 
 
 
 
 
 
450
  msgid ""
451
  "Please update rtMedia template files if you have overridden the default "
452
  "rtMedia templates in your theme. If not, you can ignore and hide this "
453
  "notice."
454
  msgstr ""
455
 
456
+ #: app/admin/RTMediaAdmin.php:1713
457
  #: app/importers/RTMediaMediaSizeImporter.php:73
458
  #: app/importers/RTMediaMigration.php:68
459
  msgid "Hide"
698
  msgid "Crop"
699
  msgstr ""
700
 
701
+ #: app/admin/RTMediaFormHandler.php:811
 
 
 
 
 
 
 
 
 
 
 
 
 
 
702
  msgid "JPEG/JPG image quality (1-100)"
703
  msgstr ""
704
 
705
+ #: app/admin/RTMediaFormHandler.php:817
706
  msgid "Enter JPEG/JPG Image Quality. Minimum value is 1. 100 is original quality."
707
  msgstr ""
708
 
709
+ #: app/admin/RTMediaFormHandler.php:825
710
  msgid "Image Quality"
711
  msgstr ""
712
 
713
+ #: app/admin/RTMediaFormHandler.php:847
714
  msgid "Custom CSS settings"
715
  msgstr ""
716
 
717
+ #: app/admin/RTMediaFormHandler.php:864
718
  msgid "rtMedia default styles"
719
  msgstr ""
720
 
721
+ #: app/admin/RTMediaFormHandler.php:870
722
  msgid ""
723
  "Load default rtMedia styles. You need to write your own style for rtMedia "
724
  "if you disable it."
725
  msgstr ""
726
 
727
+ #: app/admin/RTMediaFormHandler.php:875
728
  msgid "Paste your CSS code"
729
  msgstr ""
730
 
731
+ #: app/admin/RTMediaFormHandler.php:881
732
  msgid "Custom rtMedia CSS container"
733
  msgstr ""
734
 
735
+ #: app/admin/RTMediaFormHandler.php:904
736
  msgid "Enable privacy"
737
  msgstr ""
738
 
739
+ #: app/admin/RTMediaFormHandler.php:910
740
  msgid "Enable privacy in rtMedia"
741
  msgstr ""
742
 
743
+ #: app/admin/RTMediaFormHandler.php:915
744
  msgid "Default privacy"
745
  msgstr ""
746
 
747
+ #: app/admin/RTMediaFormHandler.php:921
748
  msgid "Set default privacy for media"
749
  msgstr ""
750
 
751
+ #: app/admin/RTMediaFormHandler.php:927
752
  msgid "Allow users to set privacy for their content"
753
  msgstr ""
754
 
755
+ #: app/admin/RTMediaFormHandler.php:932
756
  msgid ""
757
  "If you choose this, users will be able to change privacy of their own "
758
  "uploads."
759
  msgstr ""
760
 
761
+ #: app/admin/RTMediaFormHandler.php:936
762
  msgid "For group uploads, BuddyPress groups privacy is used."
763
  msgstr ""
764
 
765
+ #: app/admin/RTMediaFormHandler.php:978
766
  msgid "Enable media in profile"
767
  msgstr ""
768
 
769
+ #: app/admin/RTMediaFormHandler.php:983
770
  msgid "Enable Media on BuddyPress Profile"
771
  msgstr ""
772
 
773
+ #: app/admin/RTMediaFormHandler.php:988
774
  msgid "Enable media in group"
775
  msgstr ""
776
 
777
+ #: app/admin/RTMediaFormHandler.php:993
778
  msgid "Enable Media on BuddyPress Groups"
779
  msgstr ""
780
 
781
+ #: app/admin/RTMediaFormHandler.php:998
782
  msgid "Allow upload from activity stream"
783
  msgstr ""
784
 
785
+ #: app/admin/RTMediaFormHandler.php:1003
786
  msgid "Allow upload using status update box present on activity stream page"
787
  msgstr ""
788
 
789
+ #: app/admin/RTMediaFormHandler.php:1009
790
  msgid "Number of media items to show in activity stream"
791
  msgstr ""
792
 
793
+ #: app/admin/RTMediaFormHandler.php:1014
794
  msgid ""
795
  "With bulk uploads activity, the stream may get flooded. You can control the "
796
  "maximum number of media items or files per activity. This limit will not "
798
  "unlimited."
799
  msgstr ""
800
 
801
+ #: app/admin/RTMediaFormHandler.php:1021
802
  msgid "Enable media notification"
803
  msgstr ""
804
 
805
+ #: app/admin/RTMediaFormHandler.php:1026
806
  msgid ""
807
  "This will enable notifications to media authors for media likes and "
808
  "comments."
809
  msgstr ""
810
 
811
+ #: app/admin/RTMediaFormHandler.php:1032
812
  msgid "Create activity for media likes"
813
  msgstr ""
814
 
815
+ #: app/admin/RTMediaFormHandler.php:1037
816
  msgid "Enabling this setting will create BuddyPress activity for media likes."
817
  msgstr ""
818
 
819
+ #: app/admin/RTMediaFormHandler.php:1043
820
  msgid "Create activity for media comments"
821
  msgstr ""
822
 
823
+ #: app/admin/RTMediaFormHandler.php:1048
824
  msgid "Enabling this setting will create BuddyPress activity for media comments."
825
  msgstr ""
826
 
827
+ #: app/admin/RTMediaFormHandler.php:1054
828
  msgid "Organize media into albums"
829
  msgstr ""
830
 
831
+ #: app/admin/RTMediaFormHandler.php:1060
832
  msgid ""
833
  "This will add 'album' tab to BuddyPress profile and group depending on the "
834
  "^above^ settings."
842
  msgid "Plugins"
843
  msgstr ""
844
 
845
+ #: app/helper/RTMediaAddon.php:106
 
 
 
 
846
  msgid "SEO"
847
  msgstr ""
848
 
849
+ #: app/helper/RTMediaAddon.php:109
850
  msgid ""
851
  "Generate an XML sitemap for all the public media files uploaded via rtMedia "
852
  "plugin. These sitemaps can be useful to index search engine to improve "
853
  "website SEO."
854
  msgstr ""
855
 
856
+ #: app/helper/RTMediaAddon.php:117
857
  msgid "Moderation"
858
  msgstr ""
859
 
860
+ #: app/helper/RTMediaAddon.php:120
861
  msgid ""
862
  "Report media if they find offensive. Set number of reports to automatically "
863
  "take down media from site."
864
  msgstr ""
865
 
866
+ #: app/helper/RTMediaAddon.php:128
867
  msgid "Custom Attributes"
868
  msgstr ""
869
 
870
+ #: app/helper/RTMediaAddon.php:131
871
  msgid ""
872
  "Categories media based on attributes. Site owner need to create attributes. "
873
  "When user upload a media, can select in which attribute that media can add."
874
  msgstr ""
875
 
876
+ #: app/helper/RTMediaAddon.php:139
877
  msgid "Docs and Other files"
878
  msgstr ""
879
 
880
+ #: app/helper/RTMediaAddon.php:142
881
  msgid ""
882
  "Allow users to upload documents and other file type using rtMedia upload "
883
  "box. This addon support all the file extensions which WordPress allows."
884
  msgstr ""
885
 
886
+ #: app/helper/RTMediaAddon.php:150
887
  msgid "Default Albums"
888
  msgstr ""
889
 
890
+ #: app/helper/RTMediaAddon.php:153
891
  msgid ""
892
  "This plugin allows the creation of multiple default albums for rtMedia "
893
  "uploads. One of these albums can be set as the default global album."
894
  msgstr ""
895
 
896
+ #: app/helper/RTMediaAddon.php:161
897
  msgid "Podcast (RSS and Atom feeds)"
898
  msgstr ""
899
 
900
+ #: app/helper/RTMediaAddon.php:164
901
  msgid ""
902
  "Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting "
903
  "software."
904
  msgstr ""
905
 
906
+ #: app/helper/RTMediaAddon.php:172
907
  msgid "Playlists"
908
  msgstr ""
909
 
910
+ #: app/helper/RTMediaAddon.php:175
911
  msgid ""
912
  "Audio can be grouped into playlists. Once the user upload any audio file, "
913
  "can create a playlist or use existing one to manage audio files."
914
  msgstr ""
915
 
916
+ #: app/helper/RTMediaAddon.php:183
917
  msgid "Favorites"
918
  msgstr ""
919
 
920
+ #: app/helper/RTMediaAddon.php:186
921
  msgid ""
922
  "Users can create their list of favorite media in which they can add media "
923
  "previously uploaded by any user."
924
  msgstr ""
925
 
926
+ #: app/helper/RTMediaAddon.php:194
927
  msgid "Restrictions"
928
  msgstr ""
929
 
930
+ #: app/helper/RTMediaAddon.php:197
931
  msgid ""
932
  "Site admin can set an upload limit on the basis of time span, file size "
933
  "(MB) and number of files user can upload."
934
  msgstr ""
935
 
936
+ #: app/helper/RTMediaAddon.php:205
937
  msgid "bbPress Attachments"
938
  msgstr ""
939
 
940
+ #: app/helper/RTMediaAddon.php:208
941
  msgid "Attach media files to bbPress forum topics and replies."
942
  msgstr ""
943
 
944
+ #: app/helper/RTMediaAddon.php:216
945
  msgid "WordPress Sitewide Gallery"
946
  msgstr ""
947
 
948
+ #: app/helper/RTMediaAddon.php:219
949
  msgid ""
950
  "Site admin can create and upload media into WordPress album. Create album "
951
  "without being dependent on BuddyPress."
952
  msgstr ""
953
 
954
+ #: app/helper/RTMediaAddon.php:227
955
  msgid "WordPress Comment Attachments"
956
  msgstr ""
957
 
958
+ #: app/helper/RTMediaAddon.php:230
959
  msgid ""
960
  "Allow users to upload a media file in WordPress comment attachment box. It "
961
  "will display a thumbnail of attached file."
962
  msgstr ""
963
 
964
+ #: app/helper/RTMediaAddon.php:238
965
  msgid "Social Sharing"
966
  msgstr ""
967
 
968
+ #: app/helper/RTMediaAddon.php:241
969
  msgid ""
970
  "Share uploaded media on social network sites like Facebook, twitter, "
971
  "linkedin, Google +. This addon integrate with rtSocial plugin."
972
  msgstr ""
973
 
974
+ #: app/helper/RTMediaAddon.php:249
975
  msgid "Sidebar Widgets"
976
  msgstr ""
977
 
978
+ #: app/helper/RTMediaAddon.php:252
979
  msgid ""
980
  "This addon provide widgets to upload media and display gallery for rtMedia "
981
  "plugin."
982
  msgstr ""
983
 
984
+ #: app/helper/RTMediaAddon.php:260
985
  msgid "5 Star Ratings"
986
  msgstr ""
987
 
988
+ #: app/helper/RTMediaAddon.php:263
989
  msgid ""
990
  "Display 5 star rating for all the uploaded media. User can rate the media "
991
  "files from 1 to 5 star."
992
  msgstr ""
993
 
994
+ #: app/helper/RTMediaAddon.php:271
995
  msgid "Edit Mp3 Info (ID3 Tags)"
996
  msgstr ""
997
 
998
+ #: app/helper/RTMediaAddon.php:274
999
  msgid "Allow user to edit MP3 FIle Audio tags (ID 3 tags)."
1000
  msgstr ""
1001
 
1002
+ #: app/helper/RTMediaAddon.php:282
1003
  msgid "Media Sorting"
1004
  msgstr ""
1005
 
1006
+ #: app/helper/RTMediaAddon.php:285
1007
  msgid ""
1008
  "Sort uploaded media based on file size, ascending/descending title, upload "
1009
  "date of media."
1010
  msgstr ""
1011
 
1012
+ #: app/helper/RTMediaAddon.php:293
1013
  msgid "Bulk Edit"
1014
  msgstr ""
1015
 
1016
+ #: app/helper/RTMediaAddon.php:296
1017
  msgid ""
1018
  "Bulk edit option will allow user to quickly select media files and do "
1019
  "required actions like move files from one album to another, change "
1020
  "attributes, change privacy, delete files."
1021
  msgstr ""
1022
 
1023
+ #: app/helper/RTMediaAddon.php:304
1024
  msgid "BuddyPress Profile Picture"
1025
  msgstr ""
1026
 
1027
+ #: app/helper/RTMediaAddon.php:307
1028
  msgid "User can easily set his/her profile picture from media uploaded via rtMedia."
1029
  msgstr ""
1030
 
1031
+ #: app/helper/RTMediaAddon.php:315
1032
  msgid "Album Cover Art"
1033
  msgstr ""
1034
 
1035
+ #: app/helper/RTMediaAddon.php:318
1036
  msgid "User can easily set any of the image of the album as album cover photo"
1037
  msgstr ""
1038
 
1039
+ #: app/helper/RTMediaAddon.php:326
1040
  msgid "Direct Download Link"
1041
  msgstr ""
1042
 
1043
+ #: app/helper/RTMediaAddon.php:329
1044
  msgid ""
1045
  "User can download media from website. Site owner can restrict which media "
1046
  "type can be allowed to download."
1047
  msgstr ""
1048
 
1049
+ #: app/helper/RTMediaAddon.php:337
1050
  msgid "Upload by URL"
1051
  msgstr ""
1052
 
1053
+ #: app/helper/RTMediaAddon.php:340
1054
  msgid ""
1055
  "Users do not need to download media files from a URL and then upload it "
1056
  "with rtMedia. Just provide the absolute URL for the media and it will "
1057
  "upload on site."
1058
  msgstr ""
1059
 
1060
+ #: app/helper/RTMediaAddon.php:348
1061
  msgid "Media Likes"
1062
  msgstr ""
1063
 
1064
+ #: app/helper/RTMediaAddon.php:351
1065
  msgid ""
1066
  "This add-on let you know who liked the media. User can also see which media "
1067
  "they liked under their profile."
1068
  msgstr ""
1069
 
1070
+ #: app/helper/RTMediaAddon.php:359
1071
  msgid "Activity URL Preview"
1072
  msgstr ""
1073
 
1074
+ #: app/helper/RTMediaAddon.php:362
1075
  msgid ""
1076
  "This addon provides a preview of the URL that is shared in BuddyPress "
1077
  "activity. Just enter the URL you want to share on your site and see a "
1078
  "preview of it before it is shared."
1079
  msgstr ""
1080
 
1081
+ #: app/helper/RTMediaAddon.php:370
1082
  msgid "View Counter"
1083
  msgstr ""
1084
 
1085
+ #: app/helper/RTMediaAddon.php:373
1086
  msgid ""
1087
  "Enable view count for all the uploaded media. Whenever user open that media "
1088
  "file in lightbox or in single media view, that view count will be "
1089
  "calculated and display next to media file."
1090
  msgstr ""
1091
 
1092
+ #: app/helper/RTMediaAddon.php:381
1093
  msgid "Shortcode Generator"
1094
  msgstr ""
1095
 
1096
+ #: app/helper/RTMediaAddon.php:384
1097
  msgid ""
1098
  "This add-on will add shortcode generator button in WordPress post and page "
1099
  "editor for all the rtMedia shortcodes."
1100
  msgstr ""
1101
 
1102
+ #: app/helper/RTMediaAddon.php:392
1103
  msgid "Album Privacy"
1104
  msgstr ""
1105
 
1106
+ #: app/helper/RTMediaAddon.php:395
1107
  msgid ""
1108
  "Set album privacy when user create an album or change album privacy when "
1109
  "editing existing albums. The privacy levels are Public, Logged in user, "
1110
  "Friends and Private."
1111
  msgstr ""
1112
 
1113
+ #: app/helper/RTMediaAddon.php:403
1114
  msgid "BuddyPress Group Media Control"
1115
  msgstr ""
1116
 
1117
+ #: app/helper/RTMediaAddon.php:406
1118
  msgid "This add-on allows group owner to manage media upload feature group wise."
1119
  msgstr ""
1120
 
1121
+ #: app/helper/RTMediaAddon.php:414
1122
  msgid "Set Custom Thumbnail for Audio/Video"
1123
  msgstr ""
1124
 
1125
+ #: app/helper/RTMediaAddon.php:417
1126
  msgid ""
1127
  "Allow media owner to change the thumbnail of uploaded audio/video files. "
1128
  "The File Upload box will be provided to change media thumbnail."
1129
  msgstr ""
1130
 
1131
+ #: app/helper/RTMediaAddon.php:425
1132
  msgid "myCRED"
1133
  msgstr ""
1134
 
1135
+ #: app/helper/RTMediaAddon.php:428
1136
  msgid ""
1137
  "This plugin integrates rtMedia and myCRED plugin, users can be can award "
1138
  "virtual points for various rtMedia activities, like media upload, likes, "
1139
  "deleted etc."
1140
  msgstr ""
1141
 
1142
+ #: app/helper/RTMediaAddon.php:436
1143
  msgid "Upload Terms"
1144
  msgstr ""
1145
 
1146
+ #: app/helper/RTMediaAddon.php:439
1147
  msgid ""
1148
  "User must have to check the terms and conditions checkbox before uploading "
1149
  "the media."
1150
  msgstr ""
1151
 
1152
+ #: app/helper/RTMediaAddon.php:447
1153
  msgid "CubePoints"
1154
  msgstr ""
1155
 
1156
+ #: app/helper/RTMediaAddon.php:450
1157
  msgid ""
1158
  "If you are using CubePoints plugin on your website than rtMedia CubePoint "
1159
  "add-on can be integrate with that plugin to setup point management system "
1160
  "for rtMedia related activities."
1161
  msgstr ""
1162
 
1163
+ #: app/helper/RTMediaAddon.php:458
1164
  msgid "Social Sync"
1165
  msgstr ""
1166
 
1167
+ #: app/helper/RTMediaAddon.php:461
1168
  msgid "rtMedia Social Sync allows you to import media from your Facebook account."
1169
  msgstr ""
1170
 
1171
+ #: app/helper/RTMediaAddon.php:469
1172
  msgid "Photo Watermark"
1173
  msgstr ""
1174
 
1175
+ #: app/helper/RTMediaAddon.php:472
1176
  msgid ""
1177
  "rtMedia Photo Watermark let you add watermark on your images uploaded using "
1178
  "rtMedia."
1179
  msgstr ""
1180
 
1181
+ #: app/helper/RTMediaAddon.php:480
1182
  msgid "Photo Tagging"
1183
  msgstr ""
1184
 
1185
+ #: app/helper/RTMediaAddon.php:483
1186
  msgid ""
1187
  "rtMedia Photo Tagging enable users to tag their friends on photos uploaded "
1188
  "using rtMedia."
1189
  msgstr ""
1190
 
1191
+ #: app/helper/RTMediaAddon.php:491
1192
  msgid "Photo Filters"
1193
  msgstr ""
1194
 
1195
+ #: app/helper/RTMediaAddon.php:494
1196
  msgid ""
1197
  "rtMedia Photo Filters adds Instagram like filters to images uploaded with "
1198
  "rtMedia."
1199
  msgstr ""
1200
 
1201
+ #: app/helper/RTMediaAddon.php:502
1202
  msgid "Kaltura Add-on"
1203
  msgstr ""
1204
 
1205
+ #: app/helper/RTMediaAddon.php:505
1206
  msgid ""
1207
  "Add support for more video formats using Kaltura video solution. It works "
1208
  "with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1209
  msgstr ""
1210
 
1211
+ #: app/helper/RTMediaAddon.php:513
1212
  msgid "FFMPEG Add-on"
1213
  msgstr ""
1214
 
1215
+ #: app/helper/RTMediaAddon.php:516
1216
  msgid ""
1217
  "Add supports for more audio & video formats using open-source media-node. "
1218
  "Media node comes with automated setup script for Ubuntu/Debian."
1219
  msgstr ""
1220
 
1221
+ #: app/helper/RTMediaAddon.php:524
1222
  msgid "Membership Add-on"
1223
  msgstr ""
1224
 
1225
+ #: app/helper/RTMediaAddon.php:527
1226
  msgid ""
1227
  "rtMedia Membership add-on provides membership functionality in your site in "
1228
  "terms of media upload."
1229
  msgstr ""
1230
 
1231
+ #: app/helper/RTMediaAddon.php:554
1232
  msgid "Coming Soon !!"
1233
  msgstr ""
1234
 
1235
+ #: app/helper/RTMediaAddon.php:587
1236
  msgid "Purchased"
1237
  msgstr ""
1238
 
1239
+ #: app/helper/RTMediaAddon.php:589 app/helper/RTMediaThemes.php:157
1240
  #: app/helper/RTMediaThemes.php:201 app/helper/RTMediaThemes.php:310
1241
  #: app/helper/RTMediaThemes.php:354 app/importers/BPMediaAlbumimporter.php:177
1242
  msgid "Buy Now"
1243
  msgstr ""
1244
 
1245
+ #: app/helper/RTMediaAddon.php:621 app/helper/RTMediaThemes.php:155
1246
  #: app/helper/RTMediaThemes.php:199 app/helper/RTMediaThemes.php:308
1247
  #: app/helper/RTMediaThemes.php:352 app/importers/BPMediaAlbumimporter.php:178
1248
  msgid "Live Demo"
1788
  msgstr ""
1789
 
1790
  #: app/importers/BPMediaAlbumimporter.php:89 app/main/RTMedia.php:597
 
1791
  msgid "Media"
1792
  msgstr ""
1793
 
2041
  msgstr ""
2042
 
2043
  #: app/main/RTMedia.php:617 app/main/controllers/media/RTMediaAlbum.php:54
2044
+ #: app/main/controllers/template/rt-template-functions.php:1295
2045
  #: app/main/controllers/upload/RTMediaUploadView.php:52
2046
  #: app/main/controllers/upload/RTMediaUploadView.php:55
2047
  msgid "Album"
2054
  msgstr ""
2055
 
2056
  #: app/main/RTMedia.php:631 app/main/controllers/media/RTMediaLoginPopup.php:38
2057
+ #: app/main/controllers/template/rt-template-functions.php:2045
2058
+ #: app/main/controllers/template/rt-template-functions.php:2049
2059
  msgid "Upload"
2060
  msgstr ""
2061
 
2170
  #: app/main/RTMedia.php:986
2171
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:67
2172
  #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2173
+ #: app/main/controllers/template/rt-template-functions.php:1364
2174
+ #: app/main/controllers/template/rt-template-functions.php:1371
2175
  #: templates/media/album-single-edit.php:78
2176
  msgid "Delete"
2177
  msgstr ""
2246
 
2247
  #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:323
2248
  #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:100
2249
+ #: app/main/controllers/template/rt-template-functions.php:1398
2250
  msgid "You are not allowed to upload/attach media."
2251
  msgstr ""
2252
 
2253
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:461
2254
  msgid "%s added a %s"
2255
  msgstr ""
2256
 
2257
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:468
2258
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:470
2259
  #: app/main/controllers/upload/RTMediaUploadEndpoint.php:122
2260
  msgid "%s added %d %s"
2261
  msgstr ""
2262
 
2263
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:523
2264
  msgid "%1$s liked a %2$s in the group %3$s"
2265
  msgstr ""
2266
 
2267
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:526
2268
  msgid "%1$s liked their %2$s"
2269
  msgstr ""
2270
 
2271
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:530
2272
  msgid "%1$s liked %2$s's %3$s"
2273
  msgstr ""
2274
 
2275
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:612
2276
  msgid "%1$s commented on a %2$s in the group %3$s"
2277
  msgstr ""
2278
 
2279
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:615
2280
  msgid "%1$s commented on their %2$s"
2281
  msgstr ""
2282
 
2283
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:619
2284
  msgid "%1$s commented on %2$s's %3$s"
2285
  msgstr ""
2286
 
2557
  msgstr ""
2558
 
2559
  #: app/main/controllers/media/RTMediaAlbum.php:56
2560
+ #: app/main/controllers/template/rt-template-functions.php:1676
2561
  msgid "Create Album"
2562
  msgstr ""
2563
 
2564
  #: app/main/controllers/media/RTMediaAlbum.php:57
2565
+ #: app/main/controllers/template/rt-template-functions.php:1756
2566
  msgid "Edit Album"
2567
  msgstr ""
2568
 
2608
  msgid "Unset Featured"
2609
  msgstr ""
2610
 
2611
+ #: app/main/controllers/media/RTMediaFeatured.php:195
2612
+ #: app/main/controllers/media/RTMediaGroupFeatured.php:197
2613
  msgid "Media type is not allowed"
2614
  msgstr ""
2615
 
2632
  msgstr ""
2633
 
2634
  #: app/main/controllers/media/RTMediaLoginPopup.php:38
2635
+ #: app/main/controllers/template/rt-template-functions.php:2045
2636
+ #: app/main/controllers/template/rt-template-functions.php:2049
2637
  msgid "Upload Media"
2638
  msgstr ""
2639
 
2726
  msgstr ""
2727
 
2728
  #: app/main/controllers/template/rt-template-functions.php:766
2729
+ #: app/main/controllers/template/rt-template-functions.php:1581
2730
  msgid "Options"
2731
  msgstr ""
2732
 
2746
  msgid "Go"
2747
  msgstr ""
2748
 
2749
+ #: app/main/controllers/template/rt-template-functions.php:1246
 
 
 
 
 
 
 
 
2750
  msgid "Image"
2751
  msgstr ""
2752
 
2753
+ #: app/main/controllers/template/rt-template-functions.php:1263
2754
  msgid "Modify Image"
2755
  msgstr ""
2756
 
2757
+ #: app/main/controllers/template/rt-template-functions.php:1325
2758
  msgid "Type Comment..."
2759
  msgstr ""
2760
 
2761
+ #: app/main/controllers/template/rt-template-functions.php:1328
2762
  #: templates/media/media-single.php:98 templates/media/media-single.php:141
2763
  msgid "Comment"
2764
  msgstr ""
2765
 
2766
+ #: app/main/controllers/template/rt-template-functions.php:1364
2767
+ #: app/main/controllers/template/rt-template-functions.php:1371
2768
  msgid "Delete Media"
2769
  msgstr ""
2770
 
2771
+ #: app/main/controllers/template/rt-template-functions.php:1525
2772
  msgid "Profile Albums"
2773
  msgstr ""
2774
 
2775
+ #: app/main/controllers/template/rt-template-functions.php:1528
2776
+ #: app/main/controllers/template/rt-template-functions.php:1560
2777
  msgid "Group Albums"
2778
  msgstr ""
2779
 
2780
+ #: app/main/controllers/template/rt-template-functions.php:1646
2781
  msgid "Create New Album"
2782
  msgstr ""
2783
 
2784
+ #: app/main/controllers/template/rt-template-functions.php:1646
2785
  msgid "Add Album"
2786
  msgstr ""
2787
 
2788
+ #: app/main/controllers/template/rt-template-functions.php:1662
2789
  msgid "Create an Album"
2790
  msgstr ""
2791
 
2792
+ #: app/main/controllers/template/rt-template-functions.php:1665
2793
  msgid "Album Title : "
2794
  msgstr ""
2795
 
2796
+ #: app/main/controllers/template/rt-template-functions.php:1707
2797
+ #: app/main/controllers/template/rt-template-functions.php:1715
2798
+ #: app/main/controllers/template/rt-template-functions.php:1766
2799
  msgid "Merge Album"
2800
  msgstr ""
2801
 
2802
+ #: app/main/controllers/template/rt-template-functions.php:1710
2803
  msgid "Select Album to merge with : "
2804
  msgstr ""
2805
 
2806
+ #: app/main/controllers/template/rt-template-functions.php:1757
2807
  msgid "Delete Album"
2808
  msgstr ""
2809
 
2810
+ #: app/main/controllers/template/rt-template-functions.php:1794
2811
  msgid "Merge"
2812
  msgstr ""
2813
 
2814
+ #: app/main/controllers/template/rt-template-functions.php:1853
2815
  msgid "Privacy : "
2816
  msgstr ""
2817
 
2818
+ #: app/main/controllers/template/rt-template-functions.php:2033
2819
  msgid "people like this"
2820
  msgstr ""
2821
 
2822
+ #: app/main/controllers/template/rt-template-functions.php:2128
2823
  msgid "Empowering your community with "
2824
  msgstr ""
2825
 
2826
+ #: app/main/controllers/template/rt-template-functions.php:2130
2827
  msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2828
  msgstr ""
2829
 
2830
+ #: app/main/controllers/template/rt-template-functions.php:2146
2831
  msgid "Close (Esc)"
2832
  msgstr ""
2833
 
2834
+ #: app/main/controllers/template/rt-template-functions.php:2160
2835
  msgid "Public"
2836
  msgstr ""
2837
 
2838
+ #: app/main/controllers/template/rt-template-functions.php:2164
2839
  msgid "All members"
2840
  msgstr ""
2841
 
2842
+ #: app/main/controllers/template/rt-template-functions.php:2168
2843
  msgid "Your friends"
2844
  msgstr ""
2845
 
2846
+ #: app/main/controllers/template/rt-template-functions.php:2172
2847
  msgid "Only you"
2848
  msgstr ""
2849
 
2850
+ #: app/main/controllers/template/rt-template-functions.php:2176
2851
  msgid "Blocked temporarily"
2852
  msgstr ""
2853
 
2854
+ #: app/main/controllers/template/rt-template-functions.php:2212
2855
  msgid "%s ago "
2856
  msgstr ""
2857
 
2858
+ #: app/main/controllers/template/rt-template-functions.php:2225
2859
  msgid "1 second"
2860
  msgid_plural "%s seconds"
2861
  msgstr[0] ""
2862
  msgstr[1] ""
2863
 
2864
+ #: app/main/controllers/template/rt-template-functions.php:2228
2865
  msgid "1 minute"
2866
  msgid_plural "%s minutes"
2867
  msgstr[0] ""
2868
  msgstr[1] ""
2869
 
2870
+ #: app/main/controllers/template/rt-template-functions.php:2231
2871
  msgid "1 hour"
2872
  msgid_plural "%s hours"
2873
  msgstr[0] ""
2874
  msgstr[1] ""
2875
 
2876
+ #: app/main/controllers/template/rt-template-functions.php:2616
2877
  #. translators: date format, see http:php.net/date
2878
  msgid "You can consider rtMedia Team for following :"
2879
  msgstr ""
2880
 
2881
+ #: app/main/controllers/template/rt-template-functions.php:2619
2882
  msgid "rtMedia Customization ( in Upgrade Safe manner )"
2883
  msgstr ""
2884
 
2885
+ #: app/main/controllers/template/rt-template-functions.php:2620
2886
  msgid "WordPress/BuddyPress Theme Design and Development"
2887
  msgstr ""
2888
 
2889
+ #: app/main/controllers/template/rt-template-functions.php:2621
2890
  msgid "WordPress/BuddyPress Plugin Development"
2891
  msgstr ""
2892
 
2893
+ #: app/main/controllers/template/rt-template-functions.php:2626
2894
  msgid "Contact Us"
2895
  msgstr ""
2896
 
2972
  msgid "Deprecated %s. Please use %s."
2973
  msgstr ""
2974
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2975
  #: templates/media/album-gallery.php:14
2976
  msgid "Album List"
2977
  msgstr ""
readme.txt CHANGED
@@ -6,9 +6,9 @@ License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: 4.6
9
- Stable tag: 4.0.7
10
 
11
- Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
12
 
13
  == Description ==
14
 
@@ -30,28 +30,25 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
30
 
31
  = rtMedia Features =
32
 
33
- 1. **[Free Audio/Video conversion](https://rtmedia.io/audio-video-encoding-service/?utm_source####readme&utm_medium####plugin&utm_campaign####buddypress-media "Free Audio/Video Encoding Service")** - rtCamp (company behind rtMedia) has setup dedicated servers to provide free audio/video encoding services for all sites running rtMedia.
34
- 2. **WordPress Integration** - Display media on WordPress author pages ( eg: http://demo.rtmedia.io/author/admin/media/ )
35
- 3. **BuddyPress Integration** - Find a new media tab under BuddyPress Profiles & Groups.
36
- 4. **BuddyPress Activity Stream** - Attach media to activity status updates just like Facebook.
37
- 5. **Albums** - Organise media into manageable collections. BuddyPress Group albums support collaboration.
38
- 6. **Responsive** - Album Slideshow (Lightbox), video player, uploads work on mobiles & tablets. Support for swipe guestures.
39
- 7. **Privacy** - Control who can see media files, albums and BuddyPress activities.
40
- 8. **Templating system** - Completely customise rtMedia by modifying the template files. Just copy over the template folder to your theme.
41
- 9. **[Featured Media](https://rtmedia.io/docs/developers/featured-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Featured Media documentation")** - This can be used for facebook-style cover photo on profiles.
42
- 10. **[rtMedia Uploader](https://rtmedia.io/docs/features/upload/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Uploader")** - Use `[rtmedia_uploader]` shortcode or `<?php rtmedia_uploader() ?>` template tag, to show drag-n-drop uploader in any WordPress area (post, page, custom-post, etc).
43
- 11. **[rtMedia Gallery](https://rtmedia.io/docs/features/gallery/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Gallery")** - Display media gallery anywhere on your site using `[rtmedia_gallery]` shortcode or `<?php rtmedia_gallery ?>` template tag.
44
 
45
  = Audio/Video Conversion =
46
 
47
  rtMedia has 3 premium solutions to take care of audio/video conversion.
48
 
49
- 1. **[Audio/Video Encoding Service](https://rtmedia.io/audio-video-encoding-service/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Audio/Video Encoding Service")** - If free plan is not enough for you, there is monthly subscription service also. Easiest to setup.
50
  2. **[FFMPEG-Addon](https://rtmedia.io/products/rtmedia-ffmpeg-addon/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia FFMPEG Addon")** - Requires FFMPEG & Media-Node installed on a VPS/Dedicated server.
51
  3. **[Kaltura-Addon](https://rtmedia.io/products/rtmedia-kaltura-add-on/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version")** - Requires a Kaltura.com account or Kaltura-CE or Kaltura-on-Prem server.
52
 
53
- [Comparison of audio/video encoding solutions can be found here.](https://rtmedia.io/audio-video-encoding-service/compare-encoding-solutions/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Comparison of audio/video encoding solutions")
54
-
55
  = rtMedia Premium Addons =
56
 
57
  1. **[Instagram-Effects](https://rtmedia.io/products/rtmedia-photo-filters/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Instagram Addon")** - Users can apply Instagram like filters to photos.
@@ -138,6 +135,12 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
138
 
139
  == Changelog ==
140
 
 
 
 
 
 
 
141
  = 4.0.7 [Aug 17, 2016] =
142
  * Fix Media upload using json api
143
  * Fix media upload not working on Windows Servers
@@ -1201,8 +1204,8 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
1201
 
1202
  == Upgrade Notice ==
1203
 
1204
- = 4.0.7 =
1205
- Requires BuddyPress 1.7 or higher, if using BuddyPress. Bug fixes.
1206
 
1207
  == Sponsors ==
1208
 
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: 4.6
9
+ Stable tag: 4.1
10
 
11
+ Add albums, photo, audio/video upload, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
12
 
13
  == Description ==
14
 
30
 
31
  = rtMedia Features =
32
 
33
+ 1. **WordPress Integration** - Display media on WordPress author pages ( eg: http://demo.rtmedia.io/author/admin/media/ )
34
+ 2. **BuddyPress Integration** - Find a new media tab under BuddyPress Profiles & Groups.
35
+ 3. **BuddyPress Activity Stream** - Attach media to activity status updates just like Facebook.
36
+ 4. **Albums** - Organise media into manageable collections. BuddyPress Group albums support collaboration.
37
+ 5. **Responsive** - Album Slideshow (Lightbox), video player, uploads work on mobiles & tablets. Support for swipe guestures.
38
+ 6. **Privacy** - Control who can see media files, albums and BuddyPress activities.
39
+ 7. **Templating system** - Completely customise rtMedia by modifying the template files. Just copy over the template folder to your theme.
40
+ 8. **[Featured Media](https://rtmedia.io/docs/developers/featured-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Featured Media documentation")** - This can be used for facebook-style cover photo on profiles.
41
+ 9. **[rtMedia Uploader](https://rtmedia.io/docs/features/upload/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Uploader")** - Use `[rtmedia_uploader]` shortcode or `<?php rtmedia_uploader() ?>` template tag, to show drag-n-drop uploader in any WordPress area (post, page, custom-post, etc).
42
+ 10. **[rtMedia Gallery](https://rtmedia.io/docs/features/gallery/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Gallery")** - Display media gallery anywhere on your site using `[rtmedia_gallery]` shortcode or `<?php rtmedia_gallery ?>` template tag.
 
43
 
44
  = Audio/Video Conversion =
45
 
46
  rtMedia has 3 premium solutions to take care of audio/video conversion.
47
 
48
+ 1. **[Audio/Video Transcoding Service](https://wordpress.org/plugins/transcoder/ "Audio/Video Transcoding Service")** - If free plan is not enough for you, there is monthly subscription service also. Easiest to setup.
49
  2. **[FFMPEG-Addon](https://rtmedia.io/products/rtmedia-ffmpeg-addon/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia FFMPEG Addon")** - Requires FFMPEG & Media-Node installed on a VPS/Dedicated server.
50
  3. **[Kaltura-Addon](https://rtmedia.io/products/rtmedia-kaltura-add-on/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version")** - Requires a Kaltura.com account or Kaltura-CE or Kaltura-on-Prem server.
51
 
 
 
52
  = rtMedia Premium Addons =
53
 
54
  1. **[Instagram-Effects](https://rtmedia.io/products/rtmedia-photo-filters/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Instagram Addon")** - Users can apply Instagram like filters to photos.
135
 
136
  == Changelog ==
137
 
138
+ = 4.1 [Aug 24, 2016] =
139
+ * Remove encoding service
140
+ * Introduced new [Transcoder](https://wordpress.org/plugins/transcoder/) plugin
141
+ * Add span tag to remove duplicity of activity content on thumbnail update
142
+ * Fix notice undefined index
143
+
144
  = 4.0.7 [Aug 17, 2016] =
145
  * Fix Media upload using json api
146
  * Fix media upload not working on Windows Servers
1204
 
1205
  == Upgrade Notice ==
1206
 
1207
+ = 4.1 =
1208
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Removed encoding service and bug fixes.
1209
 
1210
  == Sponsors ==
1211