rtMedia for WordPress, BuddyPress and bbPress - Version 3.8.12

Version Description

  • Updated media gallery actions for BuddyPress groups
  • Updated action messages for single media
  • Updated view count process
  • Added SCRIPT_DEBUG support
  • Fixed bugs in admin settings
  • Bug fixes
Download this release

Release Info

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

Code changes from version 3.8.11 to 3.8.12

Files changed (51) hide show
  1. Gruntfile.js +138 -52
  2. app/admin/RTMediaAdmin.php +13 -6
  3. app/admin/RTMediaFormHandler.php +2 -2
  4. app/assets/admin/css/admin.css +1085 -1
  5. app/assets/admin/css/admin.min.css +1 -0
  6. app/assets/admin/css/sass/_layout.scss +1 -1
  7. app/assets/admin/css/sass/_rtmedia-pro.scss +1 -1
  8. app/assets/admin/css/sass/_switch.scss +6 -6
  9. app/assets/admin/css/sass/_tooltip.scss +1 -2
  10. app/assets/admin/css/sass/admin.scss +1 -5
  11. app/assets/admin/css/widget.css +57 -1
  12. app/assets/admin/css/widget.min.css +1 -0
  13. app/assets/admin/img/rtmedia-photo-filters.png +0 -0
  14. app/assets/admin/js/admin.min.js +5 -0
  15. app/assets/admin/js/settings.js +788 -0
  16. app/assets/css/rtmedia.css +2507 -0
  17. app/assets/css/rtmedia.min.css +1 -0
  18. app/assets/css/sass/_magnific.scss +1 -1
  19. app/assets/css/sass/_media-tab.scss +11 -13
  20. app/assets/css/sass/_popup.scss +14 -1
  21. app/assets/css/sass/_rtm.scss +403 -0
  22. app/assets/css/sass/_utility.scss +15 -5
  23. app/assets/css/sass/rtmedia.scss +41 -0
  24. app/assets/js/rtMedia.backbone.js +7 -0
  25. app/assets/js/rtMedia.js +55 -29
  26. app/assets/js/rtmedia.min.js +6 -0
  27. app/helper/RTMediaAddon.php +6 -6
  28. app/helper/RTMediaInteractionModel.php +12 -7
  29. app/helper/RTMediaLicense.php +1 -1
  30. app/helper/RTMediaModel.php +32 -32
  31. app/helper/RTMediaThemes.php +20 -20
  32. app/helper/db/RTDBModel.php +20 -20
  33. app/importers/BPMediaAlbumimporter.php +1 -1
  34. app/importers/RTMediaMediaSizeImporter.php +1 -1
  35. app/main/RTMedia.php +61 -3
  36. app/main/controllers/api/RTMediaJsonApi.php +4 -4
  37. app/main/controllers/media/RTMediaFeatured.php +2 -0
  38. app/main/controllers/media/RTMediaGalleryItemAction.php +12 -2
  39. app/main/controllers/media/RTMediaLoginPopup.php +2 -2
  40. app/main/controllers/media/RTMediaViewCount.php +7 -29
  41. app/main/controllers/privacy/RTMediaPrivacy.php +1 -1
  42. app/main/controllers/template/RTMediaNav.php +2 -2
  43. app/main/controllers/template/RTMediaTemplate.php +1 -1
  44. app/main/controllers/template/rt-template-functions.php +11 -3
  45. app/services/RTMediaEncoding.php +4 -4
  46. index.php +1 -1
  47. languages/rtmedia.po +1658 -1661
  48. package.json +15 -12
  49. readme.txt +12 -4
  50. templates/media/album-single-edit.php +3 -2
  51. templates/media/media-single-edit.php +67 -67
Gruntfile.js CHANGED
@@ -1,65 +1,151 @@
1
  'use strict';
2
  module.exports = function ( grunt ) {
3
 
4
- // load all grunt tasks matching the `grunt-*` pattern
5
- // Ref. https://npmjs.org/package/load-grunt-tasks
6
- require( 'load-grunt-tasks' )( grunt );
7
 
8
- grunt.initConfig( {
9
- // SCSS and Compass
10
- // Ref. https://npmjs.org/package/grunt-contrib-compass
11
- compass: {
12
- frontend: {
13
- options: {
14
- config: 'config.rb',
15
- force: true
16
- }
17
- },
18
- // Admin Panel CSS
19
- backend: {
20
- options: {
21
- sassDir: 'app/assets/admin/css/sass/',
22
- cssDir: 'app/assets/admin/css/'
23
- }
24
- }
25
- },
26
- // Uglify
27
- // Compress and Minify JS files
28
- // Ref. https://npmjs.org/package/grunt-contrib-uglify
29
- uglify: {
30
- options: {
31
- banner: '/*! \n * rtMedia JavaScript Library \n * @package rtMedia \n */'
32
- },
33
- frontend: {
34
- src: [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  'app/assets/js/vendors/magnific-popup.js',
36
  'app/assets/admin/js/vendors/tabs.js',
37
  'app/assets/js/rtMedia.js'
38
- ],
39
- dest: 'app/assets/js/main.js'
40
- },
41
- backend: {
42
  src: [
43
  'app/assets/admin/js/vendors/tabs.js',
44
  'app/assets/admin/js/scripts.js',
45
- 'app/assets/admin/js/admin.js'
46
  ],
47
- dest: 'app/assets/admin/js/admin-min.js'
48
- }
49
- },
50
- // Watch for hanges and trigger compass and uglify
51
- // Ref. https://npmjs.org/package/grunt-contrib-watch
52
- watch: {
53
- compass: { files: [ '**/*.{scss,sass}' ],
54
- tasks: [ 'compass' ]
55
- },
56
- uglify: {
57
- files: [ '<%= uglify.frontend.src %>', '<%= uglify.backend.src %>' ],
58
- tasks: [ 'uglify' ]
59
  }
60
- }
61
- } );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
- // Register Task
64
- grunt.registerTask( 'default', [ 'watch' ] );
65
- };
 
1
  'use strict';
2
  module.exports = function ( grunt ) {
3
 
4
+ // load all grunt tasks matching the `grunt-*` pattern
5
+ // Ref. https://npmjs.org/package/load-grunt-tasks
6
+ require( 'load-grunt-tasks' )( grunt );
7
 
8
+ grunt.initConfig( {
9
+ // watch for changes and trigger sass, jshint, uglify and livereload
10
+ watch: {
11
+ sass: {
12
+ files: [ 'app/assets/admin/css/sass/**/*.{scss,sass}', 'app/assets/css/sass/**/*.{scss,sass}' ],
13
+ tasks: [ 'sass' ]
14
+ },
15
+ autoprefixer: {
16
+ files: [ 'app/assets/admin/css/*.css', 'app/assets/css/*css' ],
17
+ tasks: [ 'autoprefixer' ]
18
+ },
19
+ js: {
20
+ files: [ '<%= uglify.frontend.src %>', '<%= uglify.backend.src %>' ],
21
+ tasks: [ 'uglify' ]
22
+ },
23
+ livereload: {
24
+ // Here we watch the files the sass task will compile to
25
+ // These files are sent to the live reload server after sass compiles to them
26
+ options: { livereload: true },
27
+ files: [ '*.php', '*.css' ]
28
+ }
29
+ },
30
+ // sass
31
+ sass: {
32
+ dist: {
33
+ options: {
34
+ style: 'expanded',
35
+ sourcemap: 'none'
36
+ },
37
+ files: {
38
+ 'app/assets/admin/css/admin.css': 'app/assets/admin/css/sass/admin.scss',
39
+ 'app/assets/admin/css/widget.css': 'app/assets/admin/css/sass/widget.scss',
40
+ 'app/assets/css/rtmedia.css': 'app/assets/css/sass/rtmedia.scss',
41
+ }
42
+ },
43
+ minify: {
44
+ options: {
45
+ style: 'compressed',
46
+ sourcemap: 'none'
47
+ },
48
+ files: {
49
+ 'app/assets/admin/css/admin.min.css': 'app/assets/admin/css/sass/admin.scss',
50
+ 'app/assets/admin/css/widget.min.css': 'app/assets/admin/css/sass/widget.scss',
51
+ 'app/assets/css/rtmedia.min.css': 'app/assets/css/sass/rtmedia.scss'
52
+ }
53
+ }
54
+ },
55
+ // autoprefixer
56
+ autoprefixer: {
57
+ dist: {
58
+ options: {
59
+ browsers: [ 'last 2 versions', 'ie 9', 'ios 6', 'android 4' ],
60
+ expand: true,
61
+ flatten: true
62
+ },
63
+ files: {
64
+ 'app/assets/admin/css/admin.css': 'app/assets/admin/css/admin.css',
65
+ 'app/assets/admin/css/admin.min.css': 'app/assets/admin/css/admin.min.css',
66
+ 'app/assets/admin/css/widget.css': 'app/assets/admin/css/widget.css',
67
+ 'app/assets/admin/css/widget.min.css': 'app/assets/admin/css/widget.min.css',
68
+ 'app/assets/css/rtmedia.css': 'app/assets/css/rtmedia.css',
69
+ 'app/assets/css/rtmedia.min.css': 'app/assets/css/rtmedia.min.css'
70
+ }
71
+ }
72
+ },
73
+ // Uglify Ref. https://npmjs.org/package/grunt-contrib-uglify
74
+ uglify: {
75
+ options: {
76
+ banner: '/*! \n * rtMedia JavaScript Library \n * @package rtMedia \n */\n',
77
+ },
78
+ frontend: {
79
+ src: [
80
  'app/assets/js/vendors/magnific-popup.js',
81
  'app/assets/admin/js/vendors/tabs.js',
82
  'app/assets/js/rtMedia.js'
83
+ ],
84
+ dest: 'app/assets/js/rtmedia.min.js'
85
+ },
86
+ backend: {
87
  src: [
88
  'app/assets/admin/js/vendors/tabs.js',
89
  'app/assets/admin/js/scripts.js',
90
+ 'app/assets/admin/js/settings.js'
91
  ],
92
+ dest: 'app/assets/admin/js/admin.min.js'
 
 
 
 
 
 
 
 
 
 
 
93
  }
94
+ },
95
+ checktextdomain: {
96
+ options: {
97
+ text_domain: 'rtmedia', //Specify allowed domain(s)
98
+ keywords: [ //List keyword specifications
99
+ '__:1,2d',
100
+ '_e:1,2d',
101
+ '_x:1,2c,3d',
102
+ 'esc_html__:1,2d',
103
+ 'esc_html_e:1,2d',
104
+ 'esc_html_x:1,2c,3d',
105
+ 'esc_attr__:1,2d',
106
+ 'esc_attr_e:1,2d',
107
+ 'esc_attr_x:1,2c,3d',
108
+ '_ex:1,2c,3d',
109
+ '_n:1,2,4d',
110
+ '_nx:1,2,4c,5d',
111
+ '_n_noop:1,2,3d',
112
+ '_nx_noop:1,2,3c,4d'
113
+ ]
114
+ },
115
+ target: {
116
+ files: [ {
117
+ src: [
118
+ '*.php',
119
+ '**/*.php',
120
+ '!node_modules/**',
121
+ '!tests/**'
122
+ ], //all php
123
+ expand: true
124
+ } ]
125
+ }
126
+ },
127
+ makepot: {
128
+ target: {
129
+ options: {
130
+ cwd: '.', // Directory of files to internationalize.
131
+ domainPath: 'languages/', // Where to save the POT file.
132
+ exclude: [ 'node_modules/*' ], // List of files or directories to ignore.
133
+ mainFile: 'index.php', // Main project file.
134
+ potFilename: 'rtmedia.po', // Name of the POT file.
135
+ potHeaders: { // Headers to add to the generated POT file.
136
+ poedit: true, // Includes common Poedit headers.
137
+ 'Last-Translator': 'rtMedia <rtmedia@rtcamp.com>',
138
+ 'Language-Team': 'rtMedia <rtmedia@rtcamp.com>',
139
+ 'report-msgid-bugs-to': 'http://community.rtcamp.com/c/rtmedia/',
140
+ 'x-poedit-keywordslist': true // Include a list of all possible gettext functions.
141
+ },
142
+ type: 'wp-plugin', // Type of project (wp-plugin or wp-theme).
143
+ updateTimestamp: true // Whether the POT-Creation-Date should be updated without other changes.
144
+ }
145
+ }
146
+ }
147
 
148
+ } );
149
+ // register task
150
+ grunt.registerTask( 'default', [ 'sass', 'autoprefixer', 'uglify', 'checktextdomain', 'makepot', 'watch' ] );
151
+ };
app/admin/RTMediaAdmin.php CHANGED
@@ -122,7 +122,7 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
122
  if ( $rtm_id ) {
123
  $link = get_rtmedia_permalink( $rtm_id );
124
  $title =_draft_or_post_title( $post->post_parent );
125
- $action[ 'view' ] = '<a href="' . $link . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
126
  }
127
 
128
  return $action;
@@ -364,7 +364,7 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
364
  */
365
  public function rtmedia_permalink_notice() {
366
  echo '<div class="error rtmedia-permalink-change-notice">
367
- <p> <b>' . __( 'rtMedia:' ) . '</b> ' . __( ' You must ' ) . '<a href="' . admin_url( 'options-permalink.php' ) . '">' . __( 'update permalink structure' ) . '</a>' . __( ' to something other than the default for it to work.', 'rtmedia' ) . ' </p>
368
  </div>';
369
  }
370
 
@@ -811,13 +811,20 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
811
  }
812
 
813
  $admin_pages = apply_filters( 'rtmedia_filter_admin_pages_array', $admin_pages );
 
814
 
815
  if ( in_array( $hook, $admin_pages ) || strpos( $hook, 'rtmedia-migration' ) ) {
816
 
817
  $admin_ajax = admin_url( 'admin-ajax.php' );
818
 
819
  /* Only one JS file should enqueue */
820
- wp_enqueue_script( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/admin/js/admin-min.js', array( 'backbone' ), RTMEDIA_VERSION );
 
 
 
 
 
 
821
 
822
  wp_localize_script( 'rtmedia-admin', 'rtmedia_on_label', __( 'ON', 'rtmedia' ) );
823
  wp_localize_script( 'rtmedia-admin', 'rtmedia_off_label', __( 'OFF', 'rtmedia' ) );
@@ -838,11 +845,11 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
838
  wp_localize_script( 'rtmedia-admin', 'settings_rt_album_import_url', esc_url( add_query_arg( array( 'page' => 'rtmedia-settings' ), ( is_multisite() ? network_admin_url( 'admin.php' ) : admin_url( 'admin.php' ) ) ) ) );
839
 
840
  /* Only one CSS file should enqueue */
841
- wp_enqueue_style( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/admin/css/admin.css', '', RTMEDIA_VERSION );
842
  } else {
843
 
844
  /* This CSS is using for "Right Now in rtMedia" Widget section on Dashboard */
845
- wp_enqueue_style( 'rtmedia-widget', RTMEDIA_URL . 'app/assets/admin/css/widget.css', '', RTMEDIA_VERSION );
846
  }
847
  }
848
 
@@ -1932,7 +1939,7 @@ if ( ! class_exists( 'RTMediaAdmin' ) ) {
1932
  if ( ! $site_option || 'hide' != $site_option ) {
1933
  rtmedia_update_site_option( 'rtmedia-update-template-notice-v3_8', 'show' );
1934
  if ( is_dir( get_template_directory() . '/rtmedia' ) ) {
1935
- echo '<div class="error rtmedia-update-template-notice"><p>' . __( 'Please update rtMedia template files if you have overridden the default rtMedia templates in your theme. If not, you can ignore and hide this notice.' ) . '<a href="#" onclick="rtmedia_hide_template_override_notice()" style="float:right">' . __( 'Hide', 'rtmedia' ) . '</a>' . ' </p></div>';
1936
  ?>
1937
  <script type="text/javascript">
1938
  function rtmedia_hide_template_override_notice() {
122
  if ( $rtm_id ) {
123
  $link = get_rtmedia_permalink( $rtm_id );
124
  $title =_draft_or_post_title( $post->post_parent );
125
+ $action[ 'view' ] = '<a href="' . $link . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;', 'rtmedia' ), $title ) ) . '" rel="permalink">' . __( 'View', 'rtmedia' ) . '</a>';
126
  }
127
 
128
  return $action;
364
  */
365
  public function rtmedia_permalink_notice() {
366
  echo '<div class="error rtmedia-permalink-change-notice">
367
+ <p> <b>rtMedia:</b> ' . __( ' You must', 'rtmedia' ) . ' <a href="' . admin_url( 'options-permalink.php' ) . '">' . __( 'update permalink structure', 'rtmedia' ) . '</a> ' . __( 'to something other than the default for it to work.', 'rtmedia' ) . ' </p>
368
  </div>';
369
  }
370
 
811
  }
812
 
813
  $admin_pages = apply_filters( 'rtmedia_filter_admin_pages_array', $admin_pages );
814
+ $suffix = ( function_exists( 'rtm_get_script_style_suffix' ) ) ? rtm_get_script_style_suffix() : '.min';
815
 
816
  if ( in_array( $hook, $admin_pages ) || strpos( $hook, 'rtmedia-migration' ) ) {
817
 
818
  $admin_ajax = admin_url( 'admin-ajax.php' );
819
 
820
  /* Only one JS file should enqueue */
821
+ if( $suffix === '' ) {
822
+ wp_enqueue_script( 'rtmedia-admin-tabs', RTMEDIA_URL . 'app/assets/admin/js/vendors/tabs.js', array( 'backbone' ), RTMEDIA_VERSION );
823
+ wp_enqueue_script( 'rtmedia-admin-scripts', RTMEDIA_URL . 'app/assets/admin/js/scripts.js', array( 'backbone' ), RTMEDIA_VERSION );
824
+ wp_enqueue_script( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/admin/js/settings.js', array( 'backbone' ), RTMEDIA_VERSION );
825
+ } else {
826
+ wp_enqueue_script( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/admin/js/admin.min.js', array( 'backbone' ), RTMEDIA_VERSION );
827
+ }
828
 
829
  wp_localize_script( 'rtmedia-admin', 'rtmedia_on_label', __( 'ON', 'rtmedia' ) );
830
  wp_localize_script( 'rtmedia-admin', 'rtmedia_off_label', __( 'OFF', 'rtmedia' ) );
845
  wp_localize_script( 'rtmedia-admin', 'settings_rt_album_import_url', esc_url( add_query_arg( array( 'page' => 'rtmedia-settings' ), ( is_multisite() ? network_admin_url( 'admin.php' ) : admin_url( 'admin.php' ) ) ) ) );
846
 
847
  /* Only one CSS file should enqueue */
848
+ wp_enqueue_style( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/admin/css/admin' . $suffix . '.css', '', RTMEDIA_VERSION );
849
  } else {
850
 
851
  /* This CSS is using for "Right Now in rtMedia" Widget section on Dashboard */
852
+ wp_enqueue_style( 'rtmedia-widget', RTMEDIA_URL . 'app/assets/admin/css/widget' . $suffix . '.css', '', RTMEDIA_VERSION );
853
  }
854
  }
855
 
1939
  if ( ! $site_option || 'hide' != $site_option ) {
1940
  rtmedia_update_site_option( 'rtmedia-update-template-notice-v3_8', 'show' );
1941
  if ( is_dir( get_template_directory() . '/rtmedia' ) ) {
1942
+ echo '<div class="error rtmedia-update-template-notice"><p>' . __( 'Please update rtMedia template files if you have overridden the default rtMedia templates in your theme. If not, you can ignore and hide this notice.', 'rtmedia' ) . '<a href="#" onclick="rtmedia_hide_template_override_notice()" style="float:right">' . __( 'Hide', 'rtmedia' ) . '</a>' . ' </p></div>';
1943
  ?>
1944
  <script type="text/javascript">
1945
  function rtmedia_hide_template_override_notice() {
app/admin/RTMediaFormHandler.php CHANGED
@@ -440,7 +440,7 @@ class RTMediaFormHandler {
440
  ),
441
  'group' => 100,
442
  'depends' => 'rtmedia_add_linkback',
443
- 'after_content' => __( 'Signup for rtMedia affiliate program <a href="https://rtcamp.com/affiliates">here</a>' ),
444
  ), //
445
  'rtmedia_enable_api' => array(
446
  'title' => __( 'Enable JSON API', 'rtmedia' ),
@@ -451,7 +451,7 @@ class RTMediaFormHandler {
451
  'desc' => __( 'This will allow handling API requests for rtMedia sent through any mobile app.', 'rtmedia' ),
452
  ),
453
  'group' => 80,
454
- 'after_content' => __( 'You can refer to the API document from <a href="https://rtcamp.com/rtmedia/docs/developer/json-api/">here</a>' ),
455
  ), //
456
  );
457
 
440
  ),
441
  'group' => 100,
442
  'depends' => 'rtmedia_add_linkback',
443
+ 'after_content' => __( 'Signup for', 'rtmedia' ) . ' rtMedia ' . __( 'affiliate program', 'rtmedia' ) . ' <a href="https://rtcamp.com/affiliates">' . __( 'here', 'rtmedia' ) . '</a>',
444
  ), //
445
  'rtmedia_enable_api' => array(
446
  'title' => __( 'Enable JSON API', 'rtmedia' ),
451
  'desc' => __( 'This will allow handling API requests for rtMedia sent through any mobile app.', 'rtmedia' ),
452
  ),
453
  'group' => 80,
454
+ 'after_content' => __( 'You can refer to the API document from', 'rtmedia' ) . ' <a href="http://docs.rtcamp.com/rtmedia/developers/json-api.html">' . __( 'here', 'rtmedia' ) . '</a>',
455
  ), //
456
  );
457
 
app/assets/admin/css/admin.css CHANGED
@@ -1 +1,1085 @@
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;-moz-box-shadow:0 1px 1px rgba(0,0,0,0.04);-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.04);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;-moz-transition:ease-out 0.15s;-o-transition:ease-out 0.15s;-webkit-transition:ease-out 0.15s;transition:ease-out 0.15s;-moz-transition-property:opacity,background;-o-transition-property:opacity,background;-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;-moz-transition:inherit;-o-transition:inherit;-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:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMGYwZjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, #ffffff),color-stop(100%, #f0f0f0));background-image:-moz-linear-gradient(top, #ffffff 40%,#f0f0f0);background-image:-webkit-linear-gradient(top, #ffffff 40%,#f0f0f0);background-image:linear-gradient(to bottom, #ffffff 40%,#f0f0f0);-moz-transition:left 0.15s ease-out;-o-transition:left 0.15s ease-out;-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:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee),color-stop(100%, #ffffff));background-image:-moz-linear-gradient(top, #eeeeee,#ffffff);background-image:-webkit-linear-gradient(top, #eeeeee,#ffffff);background-image:linear-gradient(to bottom, #eeeeee,#ffffff)}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;-moz-transition:all 0.4s ease-in-out;-o-transition:all 0.4s ease-in-out;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.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;margin:-10px 0 0 -10px;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}.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-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{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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 {
2
+ float: left;
3
+ }
4
+
5
+ .alignright {
6
+ float: right;
7
+ }
8
+
9
+ .aligncenter {
10
+ display: block;
11
+ margin-left: auto;
12
+ margin-right: auto;
13
+ text-align: center;
14
+ }
15
+
16
+ .clear-both {
17
+ clear: both;
18
+ }
19
+
20
+ .clear-none {
21
+ clear: none;
22
+ }
23
+
24
+ .clear-left {
25
+ clear: left;
26
+ }
27
+
28
+ .clear-right {
29
+ clear: right;
30
+ }
31
+
32
+ .rtm-inline-block {
33
+ display: inline-block;
34
+ }
35
+
36
+ .rtm-text-left {
37
+ text-align: left;
38
+ }
39
+
40
+ .rtm-text-right {
41
+ text-align: right;
42
+ }
43
+
44
+ .rtm-text-center {
45
+ text-align: center;
46
+ }
47
+
48
+ .rtm-border-0 {
49
+ border: 0 !important;
50
+ }
51
+
52
+ .hide {
53
+ display: none;
54
+ }
55
+
56
+ /*------------------------------------*\
57
+ #CLEARFIX
58
+ \*------------------------------------*/
59
+ /**
60
+ * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
61
+ * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
62
+ * over and over in your markup.
63
+ */
64
+ .clearfix:after {
65
+ content: "";
66
+ display: table;
67
+ clear: both;
68
+ }
69
+
70
+ .rtm-row-container {
71
+ padding-top: 10px;
72
+ }
73
+
74
+ .rtm-admin-tab-container {
75
+ display: table;
76
+ width: 100%;
77
+ }
78
+ .rtm-admin-tab-container .rtm-tabs-content {
79
+ background: #FFFFFF;
80
+ border-left: 1px solid #e7e7e7;
81
+ display: table-cell;
82
+ min-height: 300px;
83
+ padding: 20px 30px;
84
+ vertical-align: top;
85
+ }
86
+
87
+ .rtm-setting-container {
88
+ background-color: #f5f5f5;
89
+ border: 1px solid #dedede;
90
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
91
+ margin-top: 10px;
92
+ }
93
+
94
+ .rtm-sidebar .postbox .hndle {
95
+ cursor: default;
96
+ }
97
+
98
+ .rtm-tabs {
99
+ display: table-cell;
100
+ list-style: none;
101
+ margin: 0;
102
+ min-height: 300px;
103
+ width: 202px;
104
+ }
105
+
106
+ .rtm-button-container {
107
+ background: #f3f3f3;
108
+ border-bottom: 1px solid #dedede;
109
+ box-shadow: 0 1px 0 #fcfcfc inset;
110
+ overflow: hidden;
111
+ padding: 6px 10px 6px 6px;
112
+ position: relative;
113
+ text-align: right;
114
+ }
115
+ .rtm-button-container.bottom {
116
+ background: #EEEEEE;
117
+ border-top: 1px solid #e7e7e7;
118
+ box-shadow: 0 0 0;
119
+ z-index: 999;
120
+ }
121
+
122
+ #mce-EMAIL {
123
+ width: 100%;
124
+ }
125
+
126
+ #mc-embedded-subscribe {
127
+ display: block;
128
+ margin: 10px auto 0;
129
+ width: 100%;
130
+ }
131
+
132
+ .rtm-social-links a {
133
+ display: inline-block;
134
+ margin: 4px 0 4px 4px;
135
+ text-decoration: none;
136
+ }
137
+
138
+ .nav-tab.rtm-premium {
139
+ background: #e74c3c;
140
+ color: white;
141
+ letter-spacing: 0.5px;
142
+ }
143
+
144
+ .rtm-setting-title {
145
+ border-bottom: 1px solid #EEEEEE;
146
+ font-size: 22px;
147
+ font-weight: 400;
148
+ line-height: 1;
149
+ margin-bottom: 20px;
150
+ margin-top: 0;
151
+ padding-bottom: 14px;
152
+ display: none;
153
+ }
154
+ .rtm-setting-title.rtm-show {
155
+ display: block;
156
+ }
157
+
158
+ .rtm-option-wrapper {
159
+ margin-bottom: 40px;
160
+ }
161
+ .rtm-option-wrapper:last-child {
162
+ margin-bottom: 20px;
163
+ }
164
+ .rtm-setting-title + .rtm-option-wrapper {
165
+ margin-top: 0;
166
+ }
167
+ .rtm-option-wrapper:last-child {
168
+ border-bottom: 0;
169
+ }
170
+ .rtm-option-wrapper .form-table {
171
+ clear: none;
172
+ }
173
+ .rtm-option-wrapper .rtm-field-wrap {
174
+ float: left;
175
+ }
176
+ .rtm-option-wrapper a {
177
+ text-decoration: none;
178
+ }
179
+ .rtm-option-wrapper .form-table th {
180
+ color: #444;
181
+ font-size: 13px;
182
+ font-weight: 400;
183
+ padding: 5px 30px 5px 0;
184
+ vertical-align: top;
185
+ width: 48%;
186
+ }
187
+ .rtm-option-wrapper .form-table td {
188
+ font-size: 13px;
189
+ padding: 0 0 5px;
190
+ vertical-align: top;
191
+ }
192
+ .rtm-option-wrapper .form-table td fieldset label {
193
+ display: block;
194
+ margin: 0 !important;
195
+ }
196
+ .rtm-option-wrapper .form-table .rtm-form-radio label {
197
+ margin-top: 5px !important;
198
+ }
199
+ .rtm-option-wrapper textarea,
200
+ .rtm-option-wrapper select,
201
+ .rtm-option-wrapper input[type=text],
202
+ .rtm-option-wrapper input[type=number] {
203
+ border-radius: 3px;
204
+ }
205
+ .rtm-option-wrapper input[type=number] {
206
+ width: 60px;
207
+ }
208
+ .rtm-option-wrapper .rt-form-radio {
209
+ height: 28px;
210
+ line-height: 24px;
211
+ }
212
+ .rtm-option-wrapper .rt-form-radio label:first-child {
213
+ margin-right: 12px !important;
214
+ }
215
+ .rtm-option-wrapper .dashicons-info {
216
+ color: #aaa;
217
+ font-size: 14px;
218
+ height: 26px;
219
+ line-height: 26px;
220
+ position: relative;
221
+ }
222
+ .rtm-option-wrapper .rtm-debug-info {
223
+ margin-top: 32px;
224
+ }
225
+ .rtm-option-wrapper .rtm-debug-info tr {
226
+ border-bottom: 1px solid #EEEEEE;
227
+ }
228
+ .rtm-option-wrapper .rtm-debug-info tr:first-child {
229
+ border-top: 1px solid #EEEEEE;
230
+ }
231
+ .rtm-option-wrapper .rtm-debug-info tr:nth-child(2n) {
232
+ background-color: #f8f8f8;
233
+ }
234
+ .rtm-option-wrapper .rtm-debug-info th {
235
+ border-right: 1px solid #EEEEEE;
236
+ font-weight: 600;
237
+ width: auto;
238
+ }
239
+ .rtm-option-wrapper .rtm-debug-info th,
240
+ .rtm-option-wrapper .rtm-debug-info td {
241
+ padding: 10px;
242
+ }
243
+
244
+ .rtm-option-title {
245
+ border-bottom: 1px solid #EEEEEE;
246
+ font-size: 14px;
247
+ letter-spacing: 0.02rem;
248
+ margin-bottom: 12px;
249
+ margin-top: 0;
250
+ padding: 0 0 6px;
251
+ text-transform: uppercase;
252
+ }
253
+
254
+ .rtm-sidebar .button {
255
+ display: block;
256
+ opacity: 0.8;
257
+ position: relative;
258
+ text-decoration: none;
259
+ }
260
+
261
+ .rtm-social-share .dashicons {
262
+ font-size: 18px;
263
+ position: absolute;
264
+ right: 10px;
265
+ top: 4px;
266
+ }
267
+ .rtm-social-share .twitter .dashicons {
268
+ color: #45b0e3;
269
+ }
270
+ .rtm-social-share .facebook .dashicons {
271
+ color: #3b5998;
272
+ }
273
+ .rtm-social-share .wordpress .dashicons {
274
+ color: #21759b;
275
+ }
276
+ .rtm-social-share .rss .dashicons {
277
+ color: #FF6600;
278
+ }
279
+ .rtm-social-share p:last-child {
280
+ margin-bottom: 0;
281
+ }
282
+
283
+ .rtm-notice {
284
+ background: rgba(238, 238, 238, 0.8);
285
+ color: #777;
286
+ font-size: 12px;
287
+ line-height: 1.6;
288
+ margin-top: 10px;
289
+ overflow: hidden;
290
+ padding: 0 10px;
291
+ }
292
+ .rtm-notice p {
293
+ font-size: inherit;
294
+ line-height: inherit;
295
+ margin: 10px 0;
296
+ }
297
+
298
+ .rtm-warning {
299
+ background-color: #fcf8e3;
300
+ border-bottom: 1px solid #EEE;
301
+ color: #c09853;
302
+ padding: 10px 15px;
303
+ }
304
+
305
+ .rtmedia-theme-warning {
306
+ margin-bottom: 26px;
307
+ }
308
+
309
+ .rtm-success {
310
+ background-color: #dff0d8;
311
+ border-bottom: 1px solid #e7e7e7;
312
+ color: #468847;
313
+ margin: 0;
314
+ padding: 8px 35px 8px 14px;
315
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
316
+ }
317
+
318
+ .rtm-fly-warning {
319
+ border-bottom: 0;
320
+ left: -10px;
321
+ letter-spacing: 1px;
322
+ line-height: 22px;
323
+ margin-bottom: 0;
324
+ padding: 14px 25px;
325
+ position: absolute;
326
+ top: -5px;
327
+ }
328
+
329
+ #rtmedia-types .form-table th {
330
+ line-height: 26px;
331
+ padding: 5px 0 20px;
332
+ width: 33%;
333
+ }
334
+ #rtmedia-types .form-table td {
335
+ padding: 0 0 12px;
336
+ }
337
+
338
+ #rtmedia-custom-css-settings .form-table th {
339
+ width: 35%;
340
+ }
341
+ #rtmedia-custom-css-settings .form-table:last-child .rtm-field-wrap {
342
+ width: 92%;
343
+ }
344
+ #rtmedia-custom-css-settings textarea {
345
+ height: 300px;
346
+ width: 100%;
347
+ }
348
+
349
+ .rtm-img-size-setting .form-table th {
350
+ border-bottom: 1px solid #EEEEEE;
351
+ padding-bottom: 10px;
352
+ padding-top: 10px;
353
+ width: 20%;
354
+ }
355
+ .rtm-img-size-setting .form-table tr:nth-child(2) td {
356
+ padding-top: 20px;
357
+ }
358
+ .rtm-img-size-setting .form-table tr:nth-child(4) {
359
+ border-bottom: 1px solid #EEEEEE;
360
+ }
361
+ .rtm-img-size-setting .form-table tr:nth-child(4) td {
362
+ padding-bottom: 20px;
363
+ }
364
+ .rtm-img-size-setting .form-table tr:nth-child(5) td {
365
+ padding-top: 20px;
366
+ }
367
+ .rtm-img-size-setting .form-table tr:nth-child(6) td {
368
+ padding-bottom: 20px;
369
+ }
370
+ .rtm-img-size-setting .form-table tr:nth-child(7) {
371
+ border-top: 1px solid #EEEEEE;
372
+ }
373
+ .rtm-img-size-setting .form-table tr:nth-child(7) td {
374
+ padding-top: 20px;
375
+ }
376
+ .rtm-img-size-setting .form-table tr:nth-last-child(2) td {
377
+ padding-bottom: 20px;
378
+ }
379
+ .rtm-img-size-setting .form-table tr:last-child {
380
+ border-top: 1px solid #EEEEEE;
381
+ }
382
+ .rtm-img-size-setting .form-table tr:last-child td {
383
+ padding-top: 20px;
384
+ padding-bottom: 20px;
385
+ }
386
+ .rtm-img-size-setting .form-table .rtm-row-title {
387
+ font-weight: 600;
388
+ }
389
+
390
+ #rtmedia-privacy .rt-form-radio {
391
+ font-size: 12px;
392
+ }
393
+ #rtmedia-privacy .rt-form-radio strong {
394
+ font-size: 13px;
395
+ }
396
+
397
+ #rtmedia-encoding-usage strong {
398
+ display: inline-block;
399
+ min-width: 120px;
400
+ }
401
+ #rtmedia-encoding-usage p {
402
+ overflow: hidden;
403
+ }
404
+
405
+ .encoding-used, .encoding-remaining {
406
+ background: #7AD03A;
407
+ float: right;
408
+ height: 12px;
409
+ margin-top: 3px;
410
+ width: 12px;
411
+ }
412
+
413
+ .encoding-remaining {
414
+ background: #dedede;
415
+ }
416
+
417
+ #rtprogressbar {
418
+ background: #dedede;
419
+ height: 10px;
420
+ position: relative;
421
+ }
422
+ #rtprogressbar div {
423
+ background: #7AD03A;
424
+ height: 10px;
425
+ left: 0;
426
+ position: absolute;
427
+ }
428
+
429
+ .rtm-tabs li {
430
+ margin: 0;
431
+ }
432
+ .rtm-tabs a {
433
+ border-bottom: 1px solid #e7e7e7;
434
+ border-top: 1px solid #f2f2f2;
435
+ color: #222222;
436
+ display: block;
437
+ font-weight: 700;
438
+ outline: none;
439
+ opacity: 0.8;
440
+ padding: 10px 4px 10px 14px;
441
+ position: relative;
442
+ text-decoration: none;
443
+ z-index: 10;
444
+ }
445
+ .rtm-tabs a:hover {
446
+ background: #EEEEEE;
447
+ color: #269ad6;
448
+ margin-right: 0;
449
+ opacity: 1;
450
+ width: auto;
451
+ }
452
+ .rtm-tabs a:focus {
453
+ background: #FFFFFF;
454
+ box-shadow: 0 0 0;
455
+ }
456
+ .rtm-tabs .active {
457
+ background: white;
458
+ position: relative;
459
+ }
460
+ .rtm-tabs .active:after {
461
+ background: #FFFFFF;
462
+ content: ' ';
463
+ height: 100%;
464
+ position: absolute;
465
+ right: -1px;
466
+ top: 0;
467
+ width: 1px;
468
+ }
469
+ .rtm-tabs .active a {
470
+ border-top-color: #FFFFFF;
471
+ color: #222222;
472
+ opacity: 1;
473
+ }
474
+ .rtm-tabs .active a:hover {
475
+ background: #FFFFFF;
476
+ }
477
+ .rtm-tabs span {
478
+ display: block;
479
+ padding: 0 0 0 25px;
480
+ }
481
+ .rtm-tabs .dashicons {
482
+ font-size: 14px;
483
+ height: auto;
484
+ line-height: 1;
485
+ margin-top: 3px;
486
+ position: absolute;
487
+ vertical-align: middle;
488
+ width: auto;
489
+ }
490
+
491
+ /*
492
+ horizontal tab css
493
+ */
494
+ .rtm-horizotanl-tabs .rtm-tabs {
495
+ list-style: none;
496
+ margin: 0;
497
+ display: block;
498
+ width: auto;
499
+ min-height: 0;
500
+ }
501
+ .rtm-horizotanl-tabs .rtm-tabs-content {
502
+ border-left: none;
503
+ background: #FFFFFF;
504
+ min-height: 300px;
505
+ padding: 20px 30px;
506
+ vertical-align: top;
507
+ }
508
+ .rtm-horizotanl-tabs .rtm-tabs a {
509
+ border-bottom: none;
510
+ }
511
+ .rtm-horizotanl-tabs .rtm-tabs li {
512
+ display: inline-block;
513
+ }
514
+
515
+ .rtm-horizotanl-tabs.rtm-admin-tab-container {
516
+ width: 100%;
517
+ display: block;
518
+ }
519
+
520
+ .switch {
521
+ position: relative;
522
+ display: inline-block;
523
+ vertical-align: top;
524
+ width: 58px;
525
+ height: 22px;
526
+ padding: 3px;
527
+ border-radius: 18px;
528
+ }
529
+ .switch input[type=checkbox] {
530
+ position: absolute;
531
+ top: 0;
532
+ left: 0;
533
+ opacity: 0;
534
+ }
535
+
536
+ .switch-label {
537
+ position: relative;
538
+ display: block;
539
+ height: inherit;
540
+ color: #FFFFFF;
541
+ font-size: 12px;
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);
560
+ right: 11px;
561
+ color: #FFFFFF;
562
+ }
563
+ .switch-label:after {
564
+ content: attr(data-on);
565
+ left: 11px;
566
+ opacity: 0;
567
+ }
568
+ input[type=checkbox]:checked ~ .switch-label {
569
+ background: #33a7d1;
570
+ }
571
+ input[type=checkbox]:checked ~ .switch-label:before {
572
+ opacity: 0;
573
+ }
574
+ input[type=checkbox]:checked ~ .switch-label:after {
575
+ opacity: 1;
576
+ }
577
+
578
+ .switch-handle {
579
+ position: absolute;
580
+ top: 5px;
581
+ left: 5px;
582
+ width: 18px;
583
+ height: 18px;
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: '';
594
+ position: absolute;
595
+ top: 50%;
596
+ left: 50%;
597
+ margin: -6px 0 0 -6px;
598
+ width: 12px;
599
+ height: 12px;
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 {
607
+ left: 41px;
608
+ box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
609
+ }
610
+
611
+ .rtm-tooltip {
612
+ display: inline-block;
613
+ margin-left: 3px;
614
+ position: relative;
615
+ }
616
+ .rtm-tooltip:hover .rtm-tip-top,
617
+ .rtm-tooltip:hover .rtm-tip {
618
+ margin-left: 0;
619
+ opacity: 1;
620
+ visibility: visible;
621
+ }
622
+ .rtm-tooltip .rtm-title {
623
+ border-bottom: 1px dotted;
624
+ padding-bottom: 2px;
625
+ }
626
+
627
+ .rtm-tip-top,
628
+ .rtm-tip {
629
+ background: #fffAF0;
630
+ border: 1px solid #f5deaf;
631
+ border-radius: 3px;
632
+ font-size: 12px;
633
+ left: 24px;
634
+ margin-top: -4px;
635
+ margin-left: -10px;
636
+ line-height: 1.5;
637
+ opacity: 0;
638
+ padding: 6px 12px;
639
+ position: absolute;
640
+ top: 0;
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 {
649
+ bottom: 26px;
650
+ left: auto;
651
+ right: -66px;
652
+ top: auto;
653
+ width: 200px;
654
+ }
655
+ .rtm-tip-top:after, .rtm-tip-top:before {
656
+ right: auto;
657
+ top: 100%;
658
+ left: 50%;
659
+ border: solid transparent;
660
+ content: ' ';
661
+ height: 0;
662
+ width: 0;
663
+ position: absolute;
664
+ pointer-events: none;
665
+ }
666
+ .rtm-tip-top:after {
667
+ border-color: rgba(255, 250, 240, 0);
668
+ border-top-color: #fffAF0;
669
+ border-width: 6px;
670
+ margin-left: -6px;
671
+ }
672
+ .rtm-tip-top:before {
673
+ border-color: rgba(245, 222, 175, 0);
674
+ border-top-color: #f5deaf;
675
+ border-width: 8px;
676
+ margin-left: -8px;
677
+ }
678
+
679
+ .rtm-extensions .dashicons {
680
+ font-size: 12px;
681
+ margin-left: -4px;
682
+ position: relative;
683
+ top: -3px;
684
+ }
685
+ .rtm-extensions.rtm-set-top .dashicons {
686
+ top: 1px;
687
+ }
688
+
689
+ .rtm-plugin-card.plugin-card {
690
+ margin: 1%;
691
+ overflow: hidden;
692
+ width: 48%;
693
+ }
694
+ .rtm-plugin-card.plugin-card .rtm-logo {
695
+ float: left;
696
+ margin-right: 10px;
697
+ max-width: 200px;
698
+ width: auto;
699
+ }
700
+ .rtm-plugin-card.plugin-card .rtm-logo img {
701
+ height: auto;
702
+ margin: -10px 0 0 -10px;
703
+ max-width: 120px;
704
+ }
705
+ .rtm-plugin-card.plugin-card .desc, .rtm-plugin-card.plugin-card .name {
706
+ margin-left: 0;
707
+ margin-right: 0;
708
+ overflow: hidden;
709
+ }
710
+ .rtm-plugin-card.plugin-card h4 {
711
+ margin-bottom: 0;
712
+ }
713
+ .rtm-plugin-card.plugin-card a {
714
+ text-decoration: none;
715
+ }
716
+ .rtm-plugin-card.plugin-card .rtm-live-demo {
717
+ margin-right: 10px;
718
+ }
719
+ .rtm-plugin-card.plugin-card .price {
720
+ color: #269ad6;
721
+ font-size: 22px;
722
+ line-height: 1.2;
723
+ }
724
+
725
+ #rtm-plugins .rtm-option-title {
726
+ margin-top: 50px;
727
+ }
728
+ #rtm-plugins .rtm-setting-title + .rtm-option-title {
729
+ margin-top: 0;
730
+ }
731
+
732
+ .rtm-encoding-table {
733
+ border-collapse: collapse;
734
+ clear: none;
735
+ }
736
+ .rtm-encoding-table th, .rtm-encoding-table td {
737
+ border: 1px solid #e7e7e7;
738
+ }
739
+ .rtm-encoding-table th {
740
+ font-size: 13px;
741
+ font-weight: 600;
742
+ }
743
+
744
+ .rtm-theme-browser .rtm-themes {
745
+ clear: none;
746
+ padding: 0;
747
+ }
748
+ .rtm-theme-browser .rtm-themes .rtm-theme {
749
+ width: 48%;
750
+ }
751
+ .rtm-theme-browser .rtm-themes .rtm-theme:nth-child(even) {
752
+ margin-right: 0 !important;
753
+ }
754
+ .rtm-theme-browser .rtm-themes .rtm-theme:nth-child(3n) {
755
+ margin-right: 4%;
756
+ }
757
+
758
+ .admin-bar .theme-overlay .theme-wrap {
759
+ z-index: 99999;
760
+ }
761
+
762
+ .rtm-support-container {
763
+ min-height: 300px;
764
+ }
765
+
766
+ .rtm-support-form .rtm-form-filed {
767
+ clear: both;
768
+ margin: 15px 0;
769
+ }
770
+ .rtm-support-form label {
771
+ float: left;
772
+ width: 15%;
773
+ }
774
+ .rtm-support-form .bp-media-textarea {
775
+ height: 80px;
776
+ }
777
+
778
+ .rtm-button-wrapper {
779
+ padding-left: 15%;
780
+ }
781
+
782
+ .rtm-page-container {
783
+ background: #FFFFFF;
784
+ overflow: hidden;
785
+ padding: 20px;
786
+ }
787
+
788
+ .rtm-pro-feature-list li {
789
+ box-sizing: border-box;
790
+ float: left;
791
+ padding: 0 10px 20px;
792
+ width: 33%;
793
+ }
794
+ .rtm-pro-feature-list .rtm-icon-wrap {
795
+ float: left;
796
+ margin-top: 15px;
797
+ width: 30px;
798
+ }
799
+ .rtm-pro-feature-list .dashicons {
800
+ font-size: 18px;
801
+ }
802
+ .rtm-pro-feature-list .rtm-title {
803
+ font-size: 18px;
804
+ margin-left: 30px;
805
+ margin-top: 0px;
806
+ }
807
+ .rtm-pro-feature-list .rtm-content {
808
+ font-size: 14px;
809
+ line-height: 25px;
810
+ margin-left: 30px;
811
+ color: #8a8a8a;
812
+ width: auto;
813
+ }
814
+
815
+ .rtm-update-to-pro {
816
+ text-align: center;
817
+ }
818
+
819
+ .rtm-button {
820
+ background-color: #269ad6;
821
+ border: 0;
822
+ border-radius: 3px;
823
+ color: #FFFFFF;
824
+ cursor: pointer;
825
+ display: inline-block;
826
+ font-size: 13px;
827
+ letter-spacing: 1px;
828
+ line-height: 1;
829
+ margin-bottom: 10px;
830
+ padding: 12px 26px;
831
+ text-align: center;
832
+ text-decoration: none;
833
+ text-transform: uppercase;
834
+ }
835
+ .rtm-button:hover, .rtm-button:focus {
836
+ background-color: #228ac0;
837
+ color: #FFFFFF;
838
+ }
839
+ .rtm-button.large {
840
+ font-size: 16px;
841
+ margin-bottom: 20px;
842
+ padding: 20px 40px;
843
+ }
844
+ .rtm-button.rtm-button-success {
845
+ background-color: #2ecc71;
846
+ }
847
+ .rtm-button.rtm-button-success:hover, .rtm-button.rtm-button-success:focus {
848
+ background-color: #2fab41;
849
+ }
850
+
851
+ .rtm-hire-points {
852
+ font-size: 14px;
853
+ margin-bottom: 24px;
854
+ }
855
+
856
+ @media only screen and (min-width: 1025px) {
857
+ .rtm-setting-container {
858
+ float: left;
859
+ width: 78.2%;
860
+ }
861
+
862
+ .rtm-sidebar {
863
+ float: right;
864
+ width: 20%;
865
+ }
866
+ .rtm-sidebar .postbox {
867
+ min-width: 0;
868
+ }
869
+
870
+ .rtm-field-wrap {
871
+ max-width: 92%;
872
+ }
873
+
874
+ .rtm-tip:after, .rtm-tip:before {
875
+ right: 100%;
876
+ top: 15px;
877
+ border: solid transparent;
878
+ content: " ";
879
+ height: 0;
880
+ width: 0;
881
+ position: absolute;
882
+ pointer-events: none;
883
+ }
884
+ .rtm-tip:after {
885
+ border-color: rgba(255, 250, 240, 0);
886
+ border-right-color: #fffAF0;
887
+ border-width: 6px;
888
+ margin-top: -6px;
889
+ }
890
+ .rtm-tip:before {
891
+ border-color: rgba(221, 204, 170, 0);
892
+ border-right-color: #f5deaf;
893
+ border-width: 7px;
894
+ margin-top: -7px;
895
+ }
896
+
897
+ .rtm-support-form .bp-media-input, .rtm-support-form .bp-media-textarea {
898
+ float: left;
899
+ width: 40%;
900
+ }
901
+ }
902
+ @media only screen and (min-width: 641px) and (max-width: 1024px) {
903
+ .rtm-sidebar {
904
+ width: 100%;
905
+ }
906
+ .rtm-sidebar .postbox {
907
+ display: inline-block;
908
+ margin-left: 5px;
909
+ vertical-align: top;
910
+ }
911
+ .rtm-sidebar .postbox:first-child {
912
+ margin-left: 0;
913
+ }
914
+ }
915
+ @media screen and (max-width: 1024px) {
916
+ .rtm-tip {
917
+ bottom: 26px;
918
+ left: auto;
919
+ right: -102px;
920
+ top: auto;
921
+ width: 200px;
922
+ }
923
+ .rtm-tip:after, .rtm-tip:before {
924
+ right: auto;
925
+ top: 100%;
926
+ left: 50%;
927
+ border: solid transparent;
928
+ content: ' ';
929
+ height: 0;
930
+ width: 0;
931
+ position: absolute;
932
+ pointer-events: none;
933
+ }
934
+ .rtm-tip:after {
935
+ border-color: rgba(255, 250, 240, 0);
936
+ border-top-color: #fffAF0;
937
+ border-width: 6px;
938
+ margin-left: -6px;
939
+ }
940
+ .rtm-tip:before {
941
+ border-color: rgba(245, 222, 175, 0);
942
+ border-top-color: #f5deaf;
943
+ border-width: 7px;
944
+ margin-left: -7px;
945
+ }
946
+
947
+ #rtmedia-custom-css-settings .form-table:last-child .rtm-field-wrap {
948
+ width: 100%;
949
+ }
950
+
951
+ .rtm-field-wrap input[type=text] {
952
+ max-width: 140px !important;
953
+ }
954
+
955
+ .theme-browser .theme:nth-child(2n+1) {
956
+ margin-right: 4%;
957
+ }
958
+
959
+ .rtmedia-settings-submit {
960
+ margin-bottom: 0 !important;
961
+ }
962
+ }
963
+ @media only screen and (min-width: 641px) {
964
+ .rtm-pro-feature-list li:nth-child(3n+1) {
965
+ clear: left;
966
+ }
967
+ }
968
+ @media screen and (min-width: 421px) and (max-width: 782px) {
969
+ .rtm-option-wrapper .form-table td {
970
+ display: table-cell;
971
+ }
972
+
973
+ .rtm-option-wrapper .form-table th {
974
+ display: table-cell;
975
+ }
976
+ }
977
+ @media only screen and (max-width: 640px) {
978
+ .rtm-pro-feature-list li {
979
+ width: 50%;
980
+ }
981
+ .rtm-pro-feature-list li:nth-child(2n+1) {
982
+ clear: left;
983
+ }
984
+
985
+ .rtm-tabs {
986
+ width: 40px;
987
+ }
988
+ .rtm-tabs li {
989
+ width: 40px;
990
+ }
991
+ .rtm-tabs a {
992
+ height: 18px;
993
+ }
994
+ .rtm-tabs a:hover {
995
+ width: 140px;
996
+ }
997
+ .rtm-tabs a:hover span {
998
+ display: block;
999
+ }
1000
+ .rtm-tabs span {
1001
+ display: none;
1002
+ padding: 0 0 0 28px;
1003
+ position: absolute;
1004
+ }
1005
+
1006
+ .rtm-support-form label {
1007
+ width: 100%;
1008
+ margin-bottom: 5px;
1009
+ }
1010
+ .rtm-support-form .bp-media-input, .rtm-support-form .bp-media-textarea {
1011
+ width: 70%;
1012
+ }
1013
+
1014
+ .rtm-button-wrapper {
1015
+ padding-left: 0;
1016
+ }
1017
+ }
1018
+ @media screen and (max-width: 481px) {
1019
+ .rtm-plugin-card.plugin-card .rtm-logo {
1020
+ display: inline-block;
1021
+ float: none;
1022
+ }
1023
+
1024
+ .rtm-theme-browser .rtm-themes .rtm-theme {
1025
+ margin: 0 0 20px;
1026
+ width: 100%;
1027
+ }
1028
+ }
1029
+ @media screen and (max-width: 420px) {
1030
+ .rtm-option-wrapper .form-table th {
1031
+ padding-bottom: 15px;
1032
+ width: 100%;
1033
+ }
1034
+
1035
+ #rtmedia-types .form-table th,
1036
+ #rtmedia-custom-css-settings .form-table th {
1037
+ width: 100%;
1038
+ }
1039
+
1040
+ .rtm-pro-feature-list li {
1041
+ width: 100%;
1042
+ }
1043
+
1044
+ .rtm-tip-top {
1045
+ right: -115px;
1046
+ }
1047
+ }
1048
+ body.rtl .rtm-tabs a {
1049
+ padding: 10px 32px 10px 4px;
1050
+ }
1051
+ body.rtl .rtm-tabs .dashicons {
1052
+ right: 10px;
1053
+ }
1054
+ body.rtl .rtm-social-share .dashicons {
1055
+ left: 10px;
1056
+ right: auto;
1057
+ }
1058
+ body.rtl .rtm-option-wrapper .rtm-field-wrap {
1059
+ float: right;
1060
+ }
1061
+ body.rtl .rtm-tip-top, body.rtl .rtm-tip {
1062
+ left: auto;
1063
+ right: 24px;
1064
+ }
1065
+ body.rtl .rtm-tip-top:after, body.rtl .rtm-tip-top:before, body.rtl .rtm-tip:after, body.rtl .rtm-tip:before {
1066
+ display: none;
1067
+ }
1068
+ body.rtl .rtm-edit-td, body.rtl .rtm-delete-td {
1069
+ float: right;
1070
+ margin-left: 0;
1071
+ }
1072
+ body.rtl .rtm-edit-td {
1073
+ margin-right: -15px;
1074
+ }
1075
+ body.rtl #rtmedia-membership span.float-right {
1076
+ float: left;
1077
+ }
1078
+ body.rtl .theme-browser .theme {
1079
+ float: left;
1080
+ margin: 0 4% 4% 0;
1081
+ }
1082
+
1083
+ .rtmedia-license .rtm-tabs span {
1084
+ padding: 0;
1085
+ }
app/assets/admin/css/admin.min.css ADDED
@@ -0,0 +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;-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;margin:-10px 0 0 -10px;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}.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-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/admin/css/sass/_layout.scss CHANGED
@@ -22,7 +22,7 @@ $container-min-height: 300px;
22
  .rtm-setting-container {
23
  background-color: #f5f5f5;
24
  border: 1px solid $border-dark;
25
- @include box-shadow( 0 1px 1px rgba( $black, 0.04 ) );
26
  margin-top: 10px;
27
  }
28
 
22
  .rtm-setting-container {
23
  background-color: #f5f5f5;
24
  border: 1px solid $border-dark;
25
+ box-shadow: 0 1px 1px rgba( $black, 0.04 );
26
  margin-top: 10px;
27
  }
28
 
app/assets/admin/css/sass/_rtmedia-pro.scss CHANGED
@@ -7,7 +7,7 @@
7
  .rtm-pro-feature-list {
8
 
9
  li {
10
- @include box-sizing(border-box);
11
  float: left;
12
  padding: 0 10px 20px;
13
  width: 33%;
7
  .rtm-pro-feature-list {
8
 
9
  li {
10
+ box-sizing: border-box;
11
  float: left;
12
  padding: 0 10px 20px;
13
  width: 33%;
app/assets/admin/css/sass/_switch.scss CHANGED
@@ -30,15 +30,15 @@ $switchTransition: .15s ease-out;
30
  text-transform: uppercase;
31
  background: #b4b4b4;
32
  border-radius: inherit;
33
- @include transition($switchTransition);
34
- @include transition-property(opacity background);
35
 
36
  &:before, &:after {
37
  position: absolute;
38
  top: 50%;
39
  margin-top: -.5em;
40
  line-height: 1;
41
- @include transition(inherit);
42
  }
43
 
44
  &:before {
@@ -72,8 +72,8 @@ $switchTransition: .15s ease-out;
72
  background: white;
73
  border-radius: 10px;
74
  box-shadow: 1px 1px 5px rgba(black, .2);
75
- @include background-image(linear-gradient(top, white 40%, #f0f0f0));
76
- @include transition(left #{$switchTransition});
77
 
78
  &:before {
79
  content: '';
@@ -86,7 +86,7 @@ $switchTransition: .15s ease-out;
86
  background: #f9f9f9;
87
  border-radius: 6px;
88
  box-shadow: inset 0 1px rgba(black, .02);
89
- @include background-image(linear-gradient(top, #eee, white));
90
  }
91
 
92
  input[type=checkbox]:checked ~ & {
30
  text-transform: uppercase;
31
  background: #b4b4b4;
32
  border-radius: inherit;
33
+ transition: $switchTransition;
34
+ transition-property: opacity background;
35
 
36
  &:before, &:after {
37
  position: absolute;
38
  top: 50%;
39
  margin-top: -.5em;
40
  line-height: 1;
41
+ transition: inherit;
42
  }
43
 
44
  &:before {
72
  background: white;
73
  border-radius: 10px;
74
  box-shadow: 1px 1px 5px rgba(black, .2);
75
+ background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
76
+ transition: left #{$switchTransition};
77
 
78
  &:before {
79
  content: '';
86
  background: #f9f9f9;
87
  border-radius: 6px;
88
  box-shadow: inset 0 1px rgba(black, .02);
89
+ background-image: linear-gradient(to bottom, #eee, white);
90
  }
91
 
92
  input[type=checkbox]:checked ~ & {
app/assets/admin/css/sass/_tooltip.scss CHANGED
@@ -36,8 +36,7 @@
36
  visibility: hidden;
37
  width: 210px;
38
  z-index: 9999;
39
-
40
- @include transition(all ease-in-out 0.4s);
41
  }
42
 
43
  .rtm-tip-top {
36
  visibility: hidden;
37
  width: 210px;
38
  z-index: 9999;
39
+ transition: all ease-in-out 0.4s;
 
40
  }
41
 
42
  .rtm-tip-top {
app/assets/admin/css/sass/admin.scss CHANGED
@@ -1,7 +1,3 @@
1
-
2
- // *** This line Import Compass. *** //
3
- @import "compass";
4
-
5
  // *** CSS Variables *** //
6
  @import 'variables';
7
 
@@ -45,4 +41,4 @@
45
  @import "rtl";
46
 
47
  // *** License *** //
48
- @import "license";
 
 
 
 
1
  // *** CSS Variables *** //
2
  @import 'variables';
3
 
41
  @import "rtl";
42
 
43
  // *** License *** //
44
+ @import "license";
app/assets/admin/css/widget.css CHANGED
@@ -1 +1,57 @@
1
- #rtmedia_dashboard_widget .rtm-column{width:46%}#rtmedia_dashboard_widget table{border-top:1px solid #ECECEC;margin-top:6px;padding-top:6px}#rtmedia_dashboard_widget td{padding:3px 0}#rtmedia_dashboard_widget .b{padding-right:5px;text-align:right;width:1%}#rtmedia_dashboard_widget .rtm-meta-container{border-top:1px solid #eee;clear:both;margin:12px -12px -12px;padding:0 12px}#rtmedia_dashboard_widget .rtm-meta-links{list-style:none;margin:0;padding:0}#rtmedia_dashboard_widget .rtm-meta-links li{display:inline-block;margin:0;position:relative}#rtmedia_dashboard_widget .rtm-meta-links li:after{background:#ddd;content:' ';height:14px;position:absolute;right:-1px;top:13px;width:1px}#rtmedia_dashboard_widget .rtm-meta-links li:first-child:after,#rtmedia_dashboard_widget .rtm-meta-links li:last-child:after{display:none}#rtmedia_dashboard_widget .rtm-meta-links a{display:block;padding:10px 8px}.clearfix:after{content:"";display:table;clear:both}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #rtmedia_dashboard_widget .rtm-column {
2
+ width: 46%;
3
+ }
4
+ #rtmedia_dashboard_widget table {
5
+ border-top: 1px solid #ECECEC;
6
+ margin-top: 6px;
7
+ padding-top: 6px;
8
+ }
9
+ #rtmedia_dashboard_widget td {
10
+ padding: 3px 0;
11
+ }
12
+ #rtmedia_dashboard_widget .b {
13
+ padding-right: 5px;
14
+ text-align: right;
15
+ width: 1%;
16
+ }
17
+ #rtmedia_dashboard_widget .rtm-meta-container {
18
+ border-top: 1px solid #eee;
19
+ clear: both;
20
+ margin: 12px -12px -12px;
21
+ padding: 0 12px;
22
+ }
23
+ #rtmedia_dashboard_widget .rtm-meta-links {
24
+ list-style: none;
25
+ margin: 0;
26
+ padding: 0;
27
+ }
28
+ #rtmedia_dashboard_widget .rtm-meta-links li {
29
+ display: inline-block;
30
+ margin: 0;
31
+ position: relative;
32
+ }
33
+ #rtmedia_dashboard_widget .rtm-meta-links li:after {
34
+ background: #ddd;
35
+ content: ' ';
36
+ height: 14px;
37
+ position: absolute;
38
+ right: -1px;
39
+ top: 13px;
40
+ width: 1px;
41
+ }
42
+ #rtmedia_dashboard_widget .rtm-meta-links li:first-child:after, #rtmedia_dashboard_widget .rtm-meta-links li:last-child:after {
43
+ display: none;
44
+ }
45
+ #rtmedia_dashboard_widget .rtm-meta-links a {
46
+ display: block;
47
+ padding: 10px 8px;
48
+ }
49
+
50
+ /*------------------------------------*\
51
+ #CLEARFIX
52
+ \*------------------------------------*/
53
+ .clearfix:after {
54
+ content: "";
55
+ display: table;
56
+ clear: both;
57
+ }
app/assets/admin/css/widget.min.css ADDED
@@ -0,0 +1 @@
 
1
+ #rtmedia_dashboard_widget .rtm-column{width:46%}#rtmedia_dashboard_widget table{border-top:1px solid #ECECEC;margin-top:6px;padding-top:6px}#rtmedia_dashboard_widget td{padding:3px 0}#rtmedia_dashboard_widget .b{padding-right:5px;text-align:right;width:1%}#rtmedia_dashboard_widget .rtm-meta-container{border-top:1px solid #eee;clear:both;margin:12px -12px -12px;padding:0 12px}#rtmedia_dashboard_widget .rtm-meta-links{list-style:none;margin:0;padding:0}#rtmedia_dashboard_widget .rtm-meta-links li{display:inline-block;margin:0;position:relative}#rtmedia_dashboard_widget .rtm-meta-links li:after{background:#ddd;content:' ';height:14px;position:absolute;right:-1px;top:13px;width:1px}#rtmedia_dashboard_widget .rtm-meta-links li:first-child:after,#rtmedia_dashboard_widget .rtm-meta-links li:last-child:after{display:none}#rtmedia_dashboard_widget .rtm-meta-links a{display:block;padding:10px 8px}.clearfix:after{content:"";display:table;clear:both}
app/assets/admin/img/rtmedia-photo-filters.png ADDED
Binary file
app/assets/admin/js/admin.min.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * rtMedia JavaScript Library
3
+ * @package rtMedia
4
+ */
5
+ function rtmedia_addon_do_not_show(){var a={action:"rtmedia_addon_popup_not_show_again"};jQuery.post(rtmedia_admin_ajax,a,function(a){jQuery("#TB_window").remove(),jQuery("#TB_overlay").remove()})}"function"!=typeof Object.create&&(Object.create=function(a){function b(){}return b.prototype=a,new b}),function(a,b,c,d){var e={init:function(b,c){var d=this;d.elem=c,d.$elem=a(c),d.options=a.extend({},a.fn.rtTab.options,b),d.rtTabs()},rtTabs:function(){var c=this,d=c.options.activeTab;c.$elem.find("li:nth-child("+d+")").addClass("active"),c.rtTabContent(activeTabContent="yes"),c.rtClick();var e="false"===c.$elem.attr("data-hash")?!1:!0;if(e===!0){var f=b.location.hash;f&&c.$elem.find("li").find("a[href="+f+"]").trigger("click"),a(b).on("hashchange",function(){var a=b.location.hash;c.$elem.find("li").find("a[href="+a+"]").trigger("click")})}},rtClick:function(){var c=this,d=c.$elem.find("li"),e=d.find("a");e.on("click",function(e){e.preventDefault(),d.removeClass("active"),c.rtTabContent(),a(this).parent().addClass("active");var f=a(this).attr("href");a(f).removeClass("hide");var g="false"===c.$elem.attr("data-hash")?!1:!0;if(g===!0){var h=a(b).scrollTop();location.hash=a(this).attr("href"),a(b).scrollTop(h)}"function"==typeof c.options.onComplete&&c.options.onComplete.apply(c.elem,arguments)})},rtTabContent:function(b){var c=this,d=c.$elem.find("li"),e=d.find("a");e.each(function(){var c=a(this),d=c.attr("href");"yes"===b?c.parent().hasClass("active")||a(d).addClass("hide"):a(d).addClass("hide")})}};a.fn.rtTab=function(b){return this.each(function(){var c=Object.create(e);c.init(b,this),a.data(this,"rtTab",c)})},a.fn.rtTab.options={activeTab:1,onComplete:null}}(jQuery,window,document),jQuery(document).ready(function(a){a(".rtm-tabs").rtTab(),a('input[name^="rtmedia-options"]').on("change",function(){a(".rtm-save-settings-msg").remove(),0===a(".rtm-fly-warning").length&&(a(".rtm-button-container.top").prepend('<div class="rtm-warning rtm-fly-warning hide">Settings have changed, you should save them!</div>'),a(".rtm-fly-warning").slideDown())}),a(".rtm-img-size-setting .form-table tr:nth-child(7) td:last-child").attr("colspan","3"),a(".rtm-field-wrap .switch input[type=checkbox]").each(function(){var b=a(this);b.parents("table").attr("data-depends")||(b.is(":checked")?(b.parents("table").next(".rtm-notice").slideDown(),b.parents("table").siblings("table").each(function(){a(this).attr("data-depends")&&a(this).slideDown()})):(b.parents("table").next(".rtm-notice").slideUp(),b.parents("table").siblings("table").each(function(){a(this).attr("data-depends")&&a(this).slideUp()}))),b.parents("tr").next("tr").attr("data-depends")&&(b.is(":checked")?b.parents("tr").next("tr").slideDown():b.parents("tr").next("tr").slideUp())}),a(".rtm-field-wrap .switch input[type=checkbox]").on("change",function(){var b=a(this);b.parents("table").attr("data-depends")||(b.parents("table").next(".rtm-notice").slideToggle(),b.parents("table").siblings("table").each(function(){a(this).attr("data-depends")&&a(this).slideToggle()})),b.parents("tr").next("tr").attr("data-depends")&&b.parents("tr").next("tr").slideToggle()});var b=Backbone.View.extend({el:a(".bp-media-admin"),events:{"click .rtm-theme":"render","click .rtm-close":"close","click .rtm-previous":"previousTheme","click .rtm-next":"nextTheme",keyup:"keyEvent"},initialize:function(){_.bindAll(this,"render","close","nextTheme","previousTheme","keyEvent"),this.keyEvent()},render:function(b){a(".rtm-theme").removeClass("rtm-modal-open");var c=a(b.currentTarget).addClass("rtm-modal-open").find(".rtm-theme-content").html();a(".rtm-theme-overlay")[0]?(a(".rtm-theme-overlay").show(),a(this.el).find(".rtm-theme-content-wrap").empty().append(c)):a(this.el).append('<div class="theme-overlay rtm-theme-overlay"><div class="theme-backdrop rtm-close"></div><div class="rtm-theme-content-wrap">'+c+"</div></div>"),a(b.currentTarget).is(":first-child")?a(".rtm-previous").addClass("disabled"):a(b.currentTarget).is(":last-child")?a(".rtm-next").addClass("disabled"):a(".rtm-next, .rtm-previous").removeClass("disabled")},close:function(){a(".rtm-theme").removeClass("rtm-modal-open"),a(".rtm-theme-overlay").hide(),a(".rtm-next, .rtm-previous").removeClass("disabled")},nextTheme:function(b){return a(".rtm-next, .rtm-previous").removeClass("disabled"),a(".rtm-theme:last-child").hasClass("rtm-modal-open")&&a(b.currentTarget).addClass("disabled"),a(".rtm-modal-open").next().trigger("click"),!1},previousTheme:function(b){return a(".rtm-next, .rtm-previous").removeClass("disabled"),a(".rtm-theme:first-child").hasClass("rtm-modal-open")&&a(b.currentTarget).addClass("disabled"),a(".rtm-modal-open").prev().trigger("click"),!1},keyEvent:function(){a("body").on("keyup",function(b){return 39===b.keyCode?(a(".rtm-next, .rtm-previous").removeClass("disabled"),a(".rtm-theme:last-child").hasClass("rtm-modal-open")&&a(b.currentTarget).addClass("disabled"),a(".rtm-modal-open").next().trigger("click"),!1):37===b.keyCode?(a(".rtm-next, .rtm-previous").removeClass("disabled"),a(".rtm-theme:first-child").hasClass("rtm-modal-open")&&a(b.currentTarget).addClass("disabled"),a(".rtm-modal-open").prev().trigger("click"),!1):void(27===b.keyCode&&a(".rtm-close").trigger("click"))})}});new b}),jQuery(document).ready(function(a){function b(a){return jQuery.post(ajaxurl,a,function(b){if(0!=b){var c=!1,d=Math.ceil((20*parseInt(b)+parseInt(a.values.finished))/parseInt(a.values.total)*100);d>100&&(d=100,c=!0),jQuery("#rtprogressbar>div").css("width",d+"%"),finished=jQuery("#rtprivacyinstaller span.finished").html(),jQuery("#rtprivacyinstaller span.finished").html(parseInt(finished)+a.count),c&&jQuery.post(ajaxurl,{action:"rtmedia_privacy_redirect"},function(a){window.location=settings_url})}else jQuery("#map_progress_msgs").html('<div class="map_mapping_failure">Row '+b+" failed.</div>")})}function c(a){return jQuery.getJSON(ajaxurl,a,function(b){if(favorites=!1,b){var c=Math.ceil((5*parseInt(b.page)+parseInt(a.values.finished))/parseInt(a.values.total)*100);comments_total=jQuery("#bpmedia-bpalbumimporter .bp-album-comments span.total").html(),users_total=jQuery("#bpmedia-bpalbumimporter .bp-album-users span.total").html(),media_total=jQuery("#bpmedia-bpalbumimporter .bp-album-media span.total").html(),comments_finished=jQuery("#bpmedia-bpalbumimporter .bp-album-comments span.finished").html(),users_finished=jQuery("#bpmedia-bpalbumimporter .bp-album-users span.finished").html();var f=Math.ceil((parseInt(b.comments)+parseInt(comments_finished))/parseInt(comments_total)*100),g=Math.ceil(parseInt(b.users)/parseInt(users_total)*100);(c>100||100==c)&&(c=100,favorites=!0),jQuery(".bp-album-media #rtprogressbar>div").css("width",c+"%"),jQuery(".bp-album-comments #rtprogressbar>div").css("width",f+"%"),jQuery(".bp-album-users #rtprogressbar>div").css("width",g+"%"),media_finished=jQuery("#bpmedia-bpalbumimporter .bp-album-media span.finished").html(),parseInt(media_finished)<parseInt(media_total)&&jQuery("#bpmedia-bpalbumimporter .bp-album-media span.finished").html(parseInt(media_finished)+a.count),jQuery("#bpmedia-bpalbumimporter .bp-album-comments span.finished").html(parseInt(b.comments)+parseInt(comments_finished)),jQuery("#bpmedia-bpalbumimporter .bp-album-users span.finished").html(parseInt(b.users)),favorites&&(favorite_data={action:"rtmedia_rt_album_import_favorites"},jQuery.post(ajaxurl,favorite_data,function(a){if(0!==a.favorites||"0"!==a.favorites){jQuery(".bp-album-favorites").length||jQuery(".bp-album-comments").after('<br /><div class="bp-album-favorites"><strong>User\'s Favorites: <span class="finished">0</span> / <span class="total">'+a.users+'</span></strong><div id="rtprogressbar"><div style="width:0%"></div></div></div>'),$favorites={},0!=a.offset||"0"!=a.offset?start=1*a.offset+1:start=1;for(var b=start;b<=a.users;b++)$count=1,b==a.users&&($count=parseInt(a.users%$count),0==$count&&($count=1)),newvals={action:"rtmedia_rt_album_import_step_favorites",offset:1*(b-1),redirect:b==a.users},$favorites[b]=newvals;var c=jQuery.Deferred();c.resolve(),jQuery.each($favorites,function(a,b){c=c.pipe(function(){return d(b)})})}else window.setTimeout(e,2e3)},"json"))}else jQuery("#map_progress_msgs").html('<div class="map_mapping_failure">Row '+b.page+" failed.</div>")})}function d(a){return jQuery.post(ajaxurl,a,function(a){redirect=!1,favorites_total=jQuery("#bpmedia-bpalbumimporter .bp-album-favorites span.total").html(),favorites_finished=jQuery("#bpmedia-bpalbumimporter .bp-album-favorites span.finished").html(),jQuery("#bpmedia-bpalbumimporter .bp-album-favorites span.finished").html(parseInt(favorites_finished)+1);var b=Math.ceil(parseInt(favorites_finished+1)/parseInt(favorites_total)*100);(b>100||100==b)&&(b=100,redirect=!0),jQuery(".bp-album-favorites #rtprogressbar>div").css("width",b+"%"),redirect&&window.setTimeout(e,2e3)})}function e(){window.location=document.URL}a(".rtm-save-settings-msg").length>0&&setTimeout(function(){a(".rtm-save-settings-msg").remove()},1e4),jQuery("#spread-the-word").on("click","#bp-media-add-linkback",function(){var a={action:"rtmedia_linkback",linkback:jQuery("#bp-media-add-linkback:checked").length};jQuery.post(rtmedia_admin_ajax,a,function(a){})}),jQuery("#bp-media-settings-boxes").on("change","#select-request",function(){if(jQuery(this).val()){jQuery("#bp_media_settings_form .bp-media-metabox-holder").html(),jQuery("#bp_media_settings_form .bp-media-metabox-holder").html('<div class="support_form_loader"></div>');var a={action:"rtmedia_select_request",form:jQuery(this).val()};jQuery.post(ajaxurl,a,function(a){jQuery("#bp_media_settings_form .bp-media-metabox-holder").html(),jQuery("#bp_media_settings_form .bp-media-metabox-holder").html(a).fadeIn("slow")})}}),jQuery("#bp-media-settings-boxes").on("click","#cancel-request",function(){if(jQuery(this).val()){jQuery("#bp_media_settings_form .bp-media-metabox-holder").html(),jQuery("#bp_media_settings_form .bp-media-metabox-holder").html('<div class="support_form_loader"></div>');var a={action:"rtmedia_cancel_request"};jQuery.post(ajaxurl,a,function(a){jQuery("#bp_media_settings_form .bp-media-metabox-holder").html(),jQuery("#bp_media_settings_form .bp-media-metabox-holder").html(a).fadeIn("slow")})}}),jQuery("#bp-media-settings-boxes").on("submit","#bp_media_settings_form, .rtmedia-settings-submit",function(a){var b=!0,c=new RegExp("^[0-9]+$");jQuery("input[name*='defaultSizes']").each(function(a){return c.test(jQuery(this).val())?void 0:(alert("Invalid value for "+jQuery(this).attr("name").replace("rtmedia-options[defaultSizes_","").replace("]","").replace(/_/g," ").replace(/(\b)([a-zA-Z] )/g,function(a){return a.toUpperCase()})),b=!1,!1)});var d=jQuery('input[name^="rtmedia-options[general_videothumbs]"]');if(b&&d.length>0&&"undefined"!=typeof d){var e="",f=0;if(d.val()<=0?(e+="Number of video thumbnails to be generated should be greater than 0 in media sizes settings. Setting it to default value 2.",f=2):c.test(d.val())||(e+="Invalid value for Number of video thumbnails in media sizes settings. Setting it to round value "+Math.round(d.val())+".",f=Math.round(d.val())),""!=e)return alert(e),d.val(f),b=!1,!1}var g=jQuery('input[name^="rtmedia-options[general_jpeg_image_quality]"]');if(b&&g.length>0&&"undefined"!=typeof g){var e="",h=0;if(g.val()<=0?(e+="Number of percentage in JPEG image quality should be greater than 0 in media sizes settings. Setting it to default value 90.",h=90):g.val()>100?(e+="Number of percentage in JPEG image quality should be less than 100 in media sizes settings. Setting it to 100.",h=100):c.test(g.val())||(e+="Invalid value for percentage in JPEG image quality in media sizes settings. Setting it to round value "+Math.round(g.val())+".",h=Math.round(g.val())),""!=e)return alert(e),g.val(h),b=!1,!1}var i=jQuery('input[name^="rtmedia-options[general_perPageMedia]"]');if(b&&i.length>0&&"undefined"!=typeof i){var e="",j=0;if(i.val()<1?(e+="Please enter positive integer value only. Setting number of media per page value to default value 10.",j=10):jQuery.isNumeric(i.val())&&Math.floor(i.val())!=i.val()&&(e+="Please enter positive integer value only. Setting number of media per page value to round value "+Math.round(i.val())+".",j=Math.round(i.val())),""!=e)return alert(e),i.val(j),b=!1,!1}b||a.preventDefault()}),jQuery(document).on("click","#bpm-services .encoding-try-now,#rtm-services .encoding-try-now",function(a){if(a.preventDefault(),confirm(rtmedia_admin_strings.are_you_sure)){jQuery(this).after('<img style="margin: 0 0 0 10px" src="'+rtmedia_admin_url+'images/wpspin_light.gif" />');var b={action:"rtmedia_free_encoding_subscribe"};jQuery.getJSON(ajaxurl,b,function(a){if(void 0===a.error&&a.apikey){var b=window.location.href,c=window.location.hash;b=b.replace(c,""),document.location.href=b+"&apikey="+a.apikey+c}else jQuery(".encoding-try-now").next().remove(),jQuery("#settings-error-encoding-error").remove(),jQuery("#bp-media-settings-boxes").before('<div class="error" id="settings-error-encoding-error"><p>'+a.error+"</p></div>")})}}),jQuery(document).on("click","#api-key-submit",function(a){a.preventDefault(),0==jQuery(this).next("img").length&&jQuery(this).after('<img style="margin: 0 0 0 10px" src="'+rtmedia_admin_url+'images/wpspin_light.gif" />');var b={action:"rtmedia_enter_api_key",apikey:jQuery("#new-api-key").val()};jQuery.getJSON(ajaxurl,b,function(a){if(void 0===a.error&&a.apikey){var b=window.location.href,c=window.location.hash;b=b.replace(c,""),-1==b.toString().indexOf("&apikey="+a.apikey)&&(b+="&apikey="+a.apikey),-1==b.toString().indexOf("&update=true")&&(b+="&update=true"),document.location.href=b+c}else jQuery("#settings-error-api-key-error").remove(),jQuery("h2:first").after('<div class="error" id="settings-error-api-key-error"><p>'+a.error+"</p></div>");jQuery("#api-key-submit").next("img").remove()})}),jQuery(document).on("click","#disable-encoding",function(a){if(a.preventDefault(),confirm(rtmedia_admin_strings.disable_encoding)){jQuery(this).after('<img style="margin: 0 0 0 10px" src="'+rtmedia_admin_url+'images/wpspin_light.gif" />');var b={action:"rtmedia_disable_encoding"};jQuery.post(ajaxurl,b,function(a){a?(jQuery(".settings-error-encoding-disabled").remove(),jQuery("#settings-encoding-successfully-updated").length>0?jQuery("#settings-encoding-successfully-updated p").html(a):jQuery("h2:first").after('<div class="updated" id="settings-encoding-successfully-updated"><p>'+a+"</p></div>"),jQuery("#rtmedia-encoding-usage").hide(),jQuery("#disable-encoding").next("img").remove(),jQuery("#disable-encoding").hide(),jQuery("#enable-encoding").show()):(jQuery("#settings-error-encoding-disabled").remove(),jQuery("h2:first").after('<div class="error" id="settings-error-encoding-disabled"><p>'+rtmedia_admin_strings.something_went_wrong+"</p></div>"))})}}),jQuery(document).on("click","#enable-encoding",function(a){if(a.preventDefault(),confirm(rtmedia_admin_strings.enable_encoding)){jQuery(this).after('<img style="margin: 0 0 0 10px" src="'+rtmedia_admin_url+'images/wpspin_light.gif" />');var b={action:"rtmedia_enable_encoding"};jQuery.post(ajaxurl,b,function(a){a?(jQuery(".settings-error-encoding-enabled").remove(),jQuery("#settings-encoding-successfully-updated").length>0?jQuery("#settings-encoding-successfully-updated p").html(a):jQuery("h2:first").after('<div class="updated" id="settings-encoding-successfully-updated"><p>'+a+"</p></div>"),jQuery("#enable-encoding").next("img").remove(),jQuery("#enable-encoding").hide(),jQuery("#disable-encoding").show()):(jQuery("#settings-error-encoding-disabled").remove(),jQuery("h2:first").after('<div class="error" id="settings-error-encoding-enabled"><p>'+rtmedia_admin_strings.something_went_wrong+"</p></div>"))})}}),jQuery(".bp-media-encoding-table").on("click",".bpm-unsubscribe",function(a){a.preventDefault(),jQuery("#bpm-unsubscribe-dialog").dialog({dialogClass:"wp-dialog",modal:!0,buttons:{Unsubscribe:function(){jQuery(this).dialog("close"),jQuery(".bpm-unsubscribe").after('<img style="margin: 0 0 0 10px" src="'+rtmedia_admin_url+'images/wpspin_light.gif" />');var a={action:"rtmedia_unsubscribe_encoding_service",note:jQuery("#bpm-unsubscribe-note").val(),plan:jQuery(".bpm-unsubscribe").attr("data-plan"),price:jQuery(".bpm-unsubscribe").attr("data-price")};jQuery.getJSON(ajaxurl,a,function(a){void 0===a.error&&a.updated?(jQuery(".bpm-unsubscribe").next().remove(),jQuery(".bpm-unsubscribe").after(a.form),jQuery(".bpm-unsubscribe").remove(),jQuery("#settings-unsubscribed-successfully").remove(),jQuery("#settings-unsubscribe-error").remove(),jQuery("h2:first").after('<div class="updated" id="settings-unsubscribed-successfully"><p>'+a.updated+"</p></div>"),window.location.hash="#settings-unsubscribed-successfully"):(jQuery(".bpm-unsubscribe").next().remove(),jQuery("#settings-unsubscribed-successfully").remove(),jQuery("#settings-unsubscribe-error").remove(),jQuery("h2:first").after('<div class="error" id="settings-unsubscribe-error"><p>'+a.error+"</p></div>"),window.location.hash="#settings-unsubscribe-error")})}}})}),jQuery("#bpmedia-bpalbumimporter").on("change","#bp-album-import-accept",function(){jQuery(".bp-album-import-accept").toggleClass("i-accept"),jQuery(".bp-album-importer-wizard").slideToggle()}),jQuery("#rtprivacyinstall").click(function(a){a.preventDefault(),$progress_parent=jQuery("#rtprivacyinstaller"),$progress_parent.find(".rtprivacytype").each(function(){if($type=jQuery(this).attr("id"),"total"==$type){$values=[],jQuery(this).find("input").each(function(){$values[jQuery(this).attr("name")]=[jQuery(this).val()]}),$data={};for(var a=1;a<=$values.steps[0];a++)$count=20,a==$values.steps[0]&&($count=parseInt($values.laststep[0]),0==$count&&($count=20)),newvals={page:a,action:"rtmedia_privacy_install",count:$count,values:$values},$data[a]=newvals;var c=jQuery.Deferred();c.resolve(),jQuery.each($data,function(a,d){c=c.pipe(function(){return b(d)})})}})}),jQuery("#bpmedia-bpalbumimport-cleanup").click(function(a){a.preventDefault(),jQuery.post(ajaxurl,{action:"rtmedia_rt_album_cleanup"},function(a){window.location=settings_rt_album_import_url})}),jQuery("#bpmedia-bpalbumimporter").on("click","#bpmedia-bpalbumimport",function(a){if(a.preventDefault(),!jQuery("#bp-album-import-accept").prop("checked")){jQuery("html, body").animate({scrollTop:jQuery("#bp-album-import-accept").offset().top},500);var b=jQuery(".bp-album-import-accept"),d=500,e="#FFEBE8",f=3;return void function h(){b.css("background-color","#EE0000"),setTimeout(function(){b.css("background-color",e),--f&&setTimeout(h,d)},d)}()}jQuery(this).prop("disabled",!0),wp_admin_url=ajaxurl.replace("admin-ajax.php",""),jQuery(".bpm-ajax-loader").length||jQuery(this).after(' <img class="bpm-ajax-loader" src="'+wp_admin_url+'images/wpspin_light.gif" /> <strong>'+rtmedia_admin_strings.no_refresh+"</strong>"),$progress_parent=jQuery("#bpmedia-bpalbumimport"),$values=[],jQuery(this).parent().find("input").each(function(){$values[jQuery(this).attr("name")]=[jQuery(this).val()]}),0==$values.steps[0]&&($values.steps[0]=1),$data={};for(var f=1;f<=$values.steps[0];f++)$count=5,f==$values.steps[0]&&($count=parseInt($values.laststep[0]),0==$count&&($count=5)),newvals={page:f,action:"rtmedia_rt_album_import",count:$count,values:$values},$data[f]=newvals;var g=jQuery.Deferred();g.resolve(),jQuery.each($data,function(a,b){g=g.pipe(function(){return c(b)})})}),jQuery("#bp-media-settings-boxes").on("click",".interested",function(){jQuery(".interested-container").removeClass("hidden"),jQuery(".choice-free").attr("required","required")}),jQuery("#bp-media-settings-boxes").on("click",".not-interested",function(){jQuery(".interested-container").addClass("hidden"),jQuery(".choice-free").removeAttr("required")}),jQuery("#video-transcoding-main-container").on("click",".video-transcoding-survey",function(a){a.preventDefault();var b={action:"rtmedia_convert_videos_form",email:jQuery(".email").val(),url:jQuery(".url").val(),choice:jQuery('input[name="choice"]:checked').val(),interested:jQuery('input[name="interested"]:checked').val()};return jQuery.post(ajaxurl,b,function(a){jQuery("#video-transcoding-main-container").html("<p><strong>"+a+"</strong></p>")}),!1}),jQuery("#bpmedia-bpalbumimporter").on("click",".deactivate-bp-album",function(a){a.preventDefault(),$bpalbum=jQuery(this);var b={action:"rtmedia_rt_album_deactivate"};jQuery.get(ajaxurl,b,function(a){a?location.reload():$bpalbum.parent().after("<p>"+rtmedia_admin_strings.something_went_wrong+"</p>")})}),jQuery(".updated").on("click",".bpm-hide-encoding-notice",function(){jQuery(this).after('<img style="margin: 0 0 0 10px" src="'+rtmedia_admin_url+'images/wpspin_light.gif" />');var a={action:"rtmedia_hide_encoding_notice"};jQuery.post(ajaxurl,a,function(a){a&&jQuery(".bpm-hide-encoding-notice").closest(".updated").remove()})}),jQuery("#rtmedia-bp-enable-activity").is(":checked")?jQuery(".rtmedia-bp-activity-setting").prop("readonly",!1):jQuery(".rtmedia-bp-activity-setting").prop("readonly",!0),jQuery("#rtmedia-bp-enable-activity").on("click",function(a){jQuery(this).is(":checked")?jQuery(".rtmedia-bp-activity-setting").prop("readonly",!1):jQuery(".rtmedia-bp-activity-setting").prop("readonly",!0)});var f="",g="";void 0!==rtmedia_on_label&&(f='data-on-label="'+rtmedia_on_label+'"'),void 0!==rtmedia_off_label&&(g='data-off-label="'+rtmedia_off_label+'"'),jQuery("#rtmedia-submit-request").click(function(){var b=jQuery("#name").val(),c=jQuery("#email").val(),d=jQuery("#website").val(),e=jQuery("#phone").val(),f=jQuery("#subject").val(),g=jQuery("#details").val(),h=jQuery('input[name="request_type"]').val(),i=jQuery('input[name="request_id"]').val(),j=jQuery('input[name="server_address"]').val(),k=jQuery('input[name="ip_address"]').val(),l=jQuery('input[name="server_type"]').val(),m=jQuery('input[name="user_agent"]').val(),n={name:b,email:c,website:d,phone:e,subject:f,details:g,request_id:i,request_type:"premium_support",server_address:j,ip_address:k,server_type:l,user_agent:m};if("bug_report"==h){var o=jQuery("#wp_admin_username").val();if(""==o)return alert("Please enter WP Admin Login."),!1;var p=jQuery("#wp_admin_pwd").val();if(""==p)return alert("Please enter WP Admin password."),!1;var q=jQuery("#ssh_ftp_host").val();if(""==q)return alert("Please enter SSH / FTP host."),!1;var r=jQuery("#ssh_ftp_username").val();if(""==r)return alert("Please enter SSH / FTP login."),!1;var s=jQuery("#ssh_ftp_pwd").val();if(""==s)return alert("Please enter SSH / FTP password."),!1;n={name:b,email:c,website:d,phone:e,subject:f,details:g,request_id:i,request_type:"premium_support",server_address:j,ip_address:k,server_type:l,user_agent:m,wp_admin_username:o,wp_admin_pwd:p,ssh_ftp_host:q,ssh_ftp_username:r,ssh_ftp_pwd:s}}for(formdata in n)if(""==n[formdata]&&"phone"!=formdata)return alert("Please enter "+formdata.replace("_"," ")+" field."),!1;return data={action:"rtmedia_submit_request",form_data:n},jQuery.post(ajaxurl,data,function(b){return b=b.trim(),"false"==b?(alert("Please fill all the fields."),!1):(a("#rtmedia_service_contact_container").empty(),void a("#rtmedia_service_contact_container").append(b))}),!1}),jQuery("#cancel-request").click(function(){return!1}),jQuery(".rtm_enable_masonry_view input[type=checkbox]").is(":checked")?jQuery(".rtm_enable_masonry_view").parents(".metabox-holder").find(".rtmedia-info").show():jQuery(".rtm_enable_masonry_view").parents(".metabox-holder").find(".rtmedia-info").hide(),jQuery(".rtm_enable_masonry_view input[type=checkbox]").on("click",function(a){jQuery(this).is(":checked")?jQuery(".rtm_enable_masonry_view").parents(".metabox-holder").find(".rtmedia-info").show():jQuery(".rtm_enable_masonry_view").parents(".metabox-holder").find(".rtmedia-info").hide()}),jQuery("#rtm-masonry-change-thumbnail-info").click(function(a){jQuery("html, body").animate({scrollTop:0},"500","swing")})}),jQuery(window).load(function(){jQuery(".rtmedia-addon-thickbox").trigger("click")});
app/assets/admin/js/settings.js ADDED
@@ -0,0 +1,788 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery( document ).ready( function ( $ ) {
2
+
3
+ // Hide settings saved message
4
+ if ( $( '.rtm-save-settings-msg' ).length > 0 ) {
5
+ setTimeout( function () {
6
+ $( '.rtm-save-settings-msg' ).remove();
7
+ }, 10000 );
8
+ }
9
+
10
+ /* Linkback */
11
+ jQuery( '#spread-the-word' ).on( 'click', '#bp-media-add-linkback', function () {
12
+ var data = {
13
+ action: 'rtmedia_linkback',
14
+ linkback: jQuery( '#bp-media-add-linkback:checked' ).length
15
+ };
16
+ jQuery.post( rtmedia_admin_ajax, data, function ( response ) {
17
+ } );
18
+ } );
19
+
20
+ /* Select Request */
21
+ jQuery( '#bp-media-settings-boxes' ).on( 'change', '#select-request', function () {
22
+ if ( jQuery( this ).val() ) {
23
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html();
24
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html( '<div class="support_form_loader"></div>' );
25
+ var data = {
26
+ action: 'rtmedia_select_request',
27
+ form: jQuery( this ).val()
28
+ };
29
+
30
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
31
+ jQuery.post( ajaxurl, data, function ( response ) {
32
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html();
33
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html( response ).fadeIn( 'slow' );
34
+ } );
35
+ }
36
+ } );
37
+
38
+ /* Cancel Request */
39
+ jQuery( '#bp-media-settings-boxes' ).on( 'click', '#cancel-request', function () {
40
+ if ( jQuery( this ).val() ) {
41
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html();
42
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html( '<div class="support_form_loader"></div>' );
43
+ var data = {
44
+ action: 'rtmedia_cancel_request'
45
+ };
46
+
47
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
48
+ jQuery.post( ajaxurl, data, function ( response ) {
49
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html();
50
+ jQuery( '#bp_media_settings_form .bp-media-metabox-holder' ).html( response ).fadeIn( 'slow' );
51
+ } );
52
+ }
53
+ } );
54
+
55
+ /* Submit Request */
56
+
57
+ jQuery( '#bp-media-settings-boxes' ).on( 'submit', '#bp_media_settings_form, .rtmedia-settings-submit', function ( e ) {
58
+ var return_code = true;
59
+ var reg = new RegExp( '^[0-9]+$' );
60
+
61
+ jQuery( "input[name*='defaultSizes']" ).each( function ( el ) {
62
+ if ( !reg.test( jQuery( this ).val() ) ) {
63
+ alert( "Invalid value for " + jQuery( this ).attr( 'name' ).replace( 'rtmedia-options[defaultSizes_', '' ).replace( ']', '' ).replace( /_/g, ' ' ).replace( /(\b)([a-zA-Z] )/g, function ( firstLetter ) {
64
+ return firstLetter.toUpperCase();
65
+ } ) );
66
+ return_code = false;
67
+ return false;
68
+ }
69
+ } );
70
+
71
+ var general_videothumb = jQuery( 'input[name^="rtmedia-options[general_videothumbs]"]' );
72
+ if ( return_code && general_videothumb.length > 0 && typeof general_videothumb != "undefined" ) {
73
+ var error_msg = "";
74
+ var general_videothumb_val = 0;
75
+ if ( general_videothumb.val() <= 0 ) {
76
+ error_msg += "Number of video thumbnails to be generated should be greater than 0 in media sizes settings. Setting it to default value 2.";
77
+ general_videothumb_val = 2;
78
+ } else if ( !reg.test( general_videothumb.val() ) ) {
79
+ error_msg += 'Invalid value for Number of video thumbnails in media sizes settings. Setting it to round value ' + Math.round( general_videothumb.val() ) + ".";
80
+ general_videothumb_val = Math.round( general_videothumb.val() );
81
+ }
82
+ if ( error_msg != "" ) {
83
+ alert( error_msg );
84
+ general_videothumb.val( general_videothumb_val );
85
+ return_code = false;
86
+ return false;
87
+ }
88
+ }
89
+
90
+ var general_jpeg_image_quality = jQuery( 'input[name^="rtmedia-options[general_jpeg_image_quality]"]' );
91
+ if ( return_code && general_jpeg_image_quality.length > 0 && typeof general_jpeg_image_quality != "undefined" ) {
92
+ var error_msg = "";
93
+ var general_jpeg_image_quality_val = 0;
94
+ if ( general_jpeg_image_quality.val() <= 0 ) {
95
+ error_msg += "Number of percentage in JPEG image quality should be greater than 0 in media sizes settings. Setting it to default value 90.";
96
+ general_jpeg_image_quality_val = 90;
97
+ } else if ( general_jpeg_image_quality.val() > 100 ) {
98
+ error_msg += "Number of percentage in JPEG image quality should be less than 100 in media sizes settings. Setting it to 100.";
99
+ general_jpeg_image_quality_val = 100;
100
+ } else if ( !reg.test( general_jpeg_image_quality.val() ) ) {
101
+ error_msg += 'Invalid value for percentage in JPEG image quality in media sizes settings. Setting it to round value ' + Math.round( general_jpeg_image_quality.val() ) + ".";
102
+ general_jpeg_image_quality_val = Math.round( general_jpeg_image_quality.val() );
103
+ }
104
+ if ( error_msg != "" ) {
105
+ alert( error_msg );
106
+ general_jpeg_image_quality.val( general_jpeg_image_quality_val );
107
+ return_code = false;
108
+ return false;
109
+ }
110
+ }
111
+
112
+ var general_perPageMedia = jQuery( 'input[name^="rtmedia-options[general_perPageMedia]"]' );
113
+ if ( return_code && general_perPageMedia.length > 0 && typeof general_perPageMedia != "undefined" ) {
114
+ var error_msg = "";
115
+ var general_perPageMedia_val = 0;
116
+ if ( general_perPageMedia.val() < 1 ) {
117
+ error_msg += "Please enter positive integer value only. Setting number of media per page value to default value 10.";
118
+ general_perPageMedia_val = 10;
119
+ } else if ( jQuery.isNumeric( general_perPageMedia.val() ) && ( Math.floor( general_perPageMedia.val() ) != general_perPageMedia.val() ) ) {
120
+ error_msg += "Please enter positive integer value only. Setting number of media per page value to round value " + Math.round( general_perPageMedia.val() ) + ".";
121
+ general_perPageMedia_val = Math.round( general_perPageMedia.val() );
122
+ }
123
+ if ( error_msg != "" ) {
124
+ alert( error_msg );
125
+ general_perPageMedia.val( general_perPageMedia_val );
126
+ return_code = false;
127
+ return false;
128
+ }
129
+ }
130
+
131
+ if ( !return_code ) {
132
+ e.preventDefault();
133
+ }
134
+ } );
135
+
136
+ jQuery( document ).on( 'click', "#bpm-services .encoding-try-now,#rtm-services .encoding-try-now", function ( e ) {
137
+ e.preventDefault();
138
+ if ( confirm( rtmedia_admin_strings.are_you_sure ) ) {
139
+ jQuery( this ).after( '<img style="margin: 0 0 0 10px" src="' + rtmedia_admin_url + 'images/wpspin_light.gif" />' )
140
+ var data = {
141
+ action: 'rtmedia_free_encoding_subscribe'
142
+ };
143
+
144
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
145
+ jQuery.getJSON( ajaxurl, data, function ( response ) {
146
+ if ( response.error === undefined && response.apikey ) {
147
+ var tempUrl = window.location.href;
148
+ var hash = window.location.hash;
149
+ tempUrl = tempUrl.replace( hash, '' );
150
+ document.location.href = tempUrl + '&apikey=' + response.apikey + hash;
151
+ } else {
152
+ jQuery( '.encoding-try-now' ).next().remove();
153
+ jQuery( '#settings-error-encoding-error' ).remove();
154
+ jQuery( '#bp-media-settings-boxes' ).before( '<div class="error" id="settings-error-encoding-error"><p>' + response.error + '</p></div>' );
155
+ }
156
+ } );
157
+ }
158
+ } );
159
+
160
+ jQuery( document ).on( 'click', '#api-key-submit', function ( e ) {
161
+ e.preventDefault();
162
+
163
+ if ( jQuery( this ).next( 'img' ).length == 0 ) {
164
+ jQuery( this ).after( '<img style="margin: 0 0 0 10px" src="' + rtmedia_admin_url + 'images/wpspin_light.gif" />' );
165
+ }
166
+
167
+ var data = {
168
+ action: 'rtmedia_enter_api_key',
169
+ apikey: jQuery( '#new-api-key' ).val()
170
+ };
171
+
172
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
173
+ jQuery.getJSON( ajaxurl, data, function ( response ) {
174
+ if ( response.error === undefined && response.apikey ) {
175
+ var tempUrl = window.location.href;
176
+ var hash = window.location.hash;
177
+ tempUrl = tempUrl.replace( hash, '' );
178
+
179
+ if ( tempUrl.toString().indexOf( '&apikey=' + response.apikey ) == -1 ) {
180
+ tempUrl += '&apikey=' + response.apikey;
181
+ }
182
+ if ( tempUrl.toString().indexOf( '&update=true' ) == -1 ) {
183
+ tempUrl += '&update=true';
184
+ }
185
+
186
+ document.location.href = tempUrl + hash;
187
+ } else {
188
+ jQuery( '#settings-error-api-key-error' ).remove();
189
+ jQuery( 'h2:first' ).after( '<div class="error" id="settings-error-api-key-error"><p>' + response.error + '</p></div>' );
190
+ }
191
+
192
+ jQuery( '#api-key-submit' ).next( 'img' ).remove();
193
+ } );
194
+ } );
195
+
196
+ jQuery( document ).on( 'click', '#disable-encoding', function ( e ) {
197
+ e.preventDefault();
198
+ if ( confirm( rtmedia_admin_strings.disable_encoding ) ) {
199
+ jQuery( this ).after( '<img style="margin: 0 0 0 10px" src="' + rtmedia_admin_url + 'images/wpspin_light.gif" />' )
200
+ var data = {
201
+ action: 'rtmedia_disable_encoding'
202
+ };
203
+
204
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
205
+ jQuery.post( ajaxurl, data, function ( response ) {
206
+ if ( response ) {
207
+ jQuery( '.settings-error-encoding-disabled' ).remove();
208
+
209
+ if ( jQuery( '#settings-encoding-successfully-updated' ).length > 0 ) {
210
+ jQuery( '#settings-encoding-successfully-updated p' ).html( response );
211
+ } else {
212
+ jQuery( 'h2:first' ).after( '<div class="updated" id="settings-encoding-successfully-updated"><p>' + response + '</p></div>' );
213
+ }
214
+
215
+ jQuery( '#rtmedia-encoding-usage' ).hide();
216
+ jQuery( '#disable-encoding' ).next( 'img' ).remove();
217
+ jQuery( '#disable-encoding' ).hide();
218
+ jQuery( '#enable-encoding' ).show();
219
+ } else {
220
+ jQuery( '#settings-error-encoding-disabled' ).remove();
221
+ jQuery( 'h2:first' ).after( '<div class="error" id="settings-error-encoding-disabled"><p>' + rtmedia_admin_strings.something_went_wrong + '</p></div>' );
222
+ }
223
+ } );
224
+ }
225
+ } );
226
+
227
+ jQuery( document ).on( 'click', '#enable-encoding', function ( e ) {
228
+ e.preventDefault();
229
+ if ( confirm( rtmedia_admin_strings.enable_encoding ) ) {
230
+ jQuery( this ).after( '<img style="margin: 0 0 0 10px" src="' + rtmedia_admin_url + 'images/wpspin_light.gif" />' )
231
+ var data = {
232
+ action: 'rtmedia_enable_encoding'
233
+ };
234
+ jQuery.post( ajaxurl, data, function ( response ) {
235
+ if ( response ) {
236
+ jQuery( '.settings-error-encoding-enabled' ).remove();
237
+
238
+ if ( jQuery( '#settings-encoding-successfully-updated' ).length > 0 ) {
239
+ jQuery( '#settings-encoding-successfully-updated p' ).html( response );
240
+ } else {
241
+ jQuery( 'h2:first' ).after( '<div class="updated" id="settings-encoding-successfully-updated"><p>' + response + '</p></div>' );
242
+ }
243
+
244
+ jQuery( '#enable-encoding' ).next( 'img' ).remove();
245
+ jQuery( '#enable-encoding' ).hide();
246
+ jQuery( '#disable-encoding' ).show();
247
+ } else {
248
+ jQuery( '#settings-error-encoding-disabled' ).remove();
249
+ jQuery( 'h2:first' ).after( '<div class="error" id="settings-error-encoding-enabled"><p>' + rtmedia_admin_strings.something_went_wrong + '</p></div>' );
250
+ }
251
+ } );
252
+ }
253
+ } );
254
+
255
+ jQuery( '.bp-media-encoding-table' ).on( 'click', '.bpm-unsubscribe', function ( e ) {
256
+ e.preventDefault();
257
+ // var note=prompt(bp_media_admin_strings.reason_for_unsubscribe);
258
+ jQuery( "#bpm-unsubscribe-dialog" ).dialog( {
259
+ dialogClass: "wp-dialog",
260
+ modal: true,
261
+ buttons: {
262
+ Unsubscribe: function () {
263
+ jQuery( this ).dialog( "close" );
264
+ jQuery( '.bpm-unsubscribe' ).after( '<img style="margin: 0 0 0 10px" src="' + rtmedia_admin_url + 'images/wpspin_light.gif" />' )
265
+ var data = {
266
+ action: 'rtmedia_unsubscribe_encoding_service',
267
+ note: jQuery( '#bpm-unsubscribe-note' ).val(),
268
+ plan: jQuery( '.bpm-unsubscribe' ).attr( 'data-plan' ),
269
+ price: jQuery( '.bpm-unsubscribe' ).attr( 'data-price' )
270
+ };
271
+
272
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
273
+ jQuery.getJSON( ajaxurl, data, function ( response ) {
274
+ if ( response.error === undefined && response.updated ) {
275
+ jQuery( '.bpm-unsubscribe' ).next().remove();
276
+ jQuery( '.bpm-unsubscribe' ).after( response.form );
277
+ jQuery( '.bpm-unsubscribe' ).remove();
278
+ jQuery( '#settings-unsubscribed-successfully' ).remove();
279
+ jQuery( '#settings-unsubscribe-error' ).remove();
280
+ jQuery( 'h2:first' ).after( '<div class="updated" id="settings-unsubscribed-successfully"><p>' + response.updated + '</p></div>' );
281
+ window.location.hash = '#settings-unsubscribed-successfully';
282
+ } else {
283
+ jQuery( '.bpm-unsubscribe' ).next().remove();
284
+ jQuery( '#settings-unsubscribed-successfully' ).remove();
285
+ jQuery( '#settings-unsubscribe-error' ).remove();
286
+ jQuery( 'h2:first' ).after( '<div class="error" id="settings-unsubscribe-error"><p>' + response.error + '</p></div>' );
287
+ window.location.hash = '#settings-unsubscribe-error';
288
+ }
289
+ } );
290
+ }
291
+ }
292
+ } );
293
+
294
+ } );
295
+
296
+ function fireRequest( data ) {
297
+ return jQuery.post( ajaxurl, data, function ( response ) {
298
+ if ( response != 0 ) {
299
+ var redirect = false;
300
+ var progw = Math.ceil( ( ( ( parseInt( response ) * 20 ) + parseInt( data.values[ 'finished' ] ) ) / parseInt( data.values[ 'total' ] ) ) * 100 );
301
+ if ( progw > 100 ) {
302
+ progw = 100;
303
+ redirect = true
304
+ }
305
+ ;
306
+ jQuery( '#rtprogressbar>div' ).css( 'width', progw + '%' );
307
+ finished = jQuery( '#rtprivacyinstaller span.finished' ).html();
308
+ jQuery( '#rtprivacyinstaller span.finished' ).html( parseInt( finished ) + data.count );
309
+ if ( redirect ) {
310
+ jQuery.post( ajaxurl, {
311
+ action: 'rtmedia_privacy_redirect'
312
+ }, function ( response ) {
313
+ window.location = settings_url;
314
+ } );
315
+ }
316
+ } else {
317
+ jQuery( '#map_progress_msgs' ).html( '<div class="map_mapping_failure">Row ' + response + ' failed.</div>' );
318
+ }
319
+ } );
320
+ }
321
+
322
+ jQuery( '#bpmedia-bpalbumimporter' ).on( 'change', '#bp-album-import-accept', function () {
323
+ jQuery( '.bp-album-import-accept' ).toggleClass( 'i-accept' );
324
+ jQuery( '.bp-album-importer-wizard' ).slideToggle();
325
+ } );
326
+
327
+ jQuery( '#rtprivacyinstall' ).click( function ( e ) {
328
+ e.preventDefault();
329
+ $progress_parent = jQuery( '#rtprivacyinstaller' );
330
+ $progress_parent.find( '.rtprivacytype' ).each( function () {
331
+ $type = jQuery( this ).attr( 'id' );
332
+ if ( $type == 'total' ) {
333
+ $values = [];
334
+ jQuery( this ).find( 'input' ).each( function () {
335
+
336
+ $values [ jQuery( this ).attr( 'name' ) ] = [ jQuery( this ).val() ];
337
+
338
+ } );
339
+ $data = {};
340
+ for ( var i = 1; i <= $values[ 'steps' ][ 0 ]; i++ ) {
341
+ $count = 20;
342
+ if ( i == $values[ 'steps' ][ 0 ] ) {
343
+ $count = parseInt( $values[ 'laststep' ][ 0 ] );
344
+ if ( $count == 0 ) {
345
+ $count = 20
346
+ }
347
+ ;
348
+ }
349
+ newvals = {
350
+ 'page': i,
351
+ 'action': 'rtmedia_privacy_install',
352
+ 'count': $count,
353
+ 'values': $values
354
+ }
355
+ $data[ i ] = newvals;
356
+ }
357
+ var $startingpoint = jQuery.Deferred();
358
+ $startingpoint.resolve();
359
+ jQuery.each( $data, function ( i, v ) {
360
+ $startingpoint = $startingpoint.pipe( function () {
361
+ return fireRequest( v );
362
+ } );
363
+ } );
364
+
365
+
366
+ }
367
+ } );
368
+ } );
369
+
370
+ function fireimportRequest( data ) {
371
+ return jQuery.getJSON( ajaxurl, data, function ( response ) {
372
+ favorites = false;
373
+ if ( response ) {
374
+ var redirect = false;
375
+ var media_progw = Math.ceil( ( ( ( parseInt( response.page ) * 5 ) + parseInt( data.values[ 'finished' ] ) ) / parseInt( data.values[ 'total' ] ) ) * 100 );
376
+ comments_total = jQuery( '#bpmedia-bpalbumimporter .bp-album-comments span.total' ).html();
377
+ users_total = jQuery( '#bpmedia-bpalbumimporter .bp-album-users span.total' ).html();
378
+ media_total = jQuery( '#bpmedia-bpalbumimporter .bp-album-media span.total' ).html();
379
+ comments_finished = jQuery( '#bpmedia-bpalbumimporter .bp-album-comments span.finished' ).html();
380
+ users_finished = jQuery( '#bpmedia-bpalbumimporter .bp-album-users span.finished' ).html();
381
+ var comments_progw = Math.ceil( ( ( ( parseInt( response.comments ) ) + parseInt( comments_finished ) ) / parseInt( comments_total ) ) * 100 );
382
+ var users_progw = Math.ceil( ( parseInt( response.users ) / parseInt( users_total ) ) * 100 );
383
+ if ( media_progw > 100 || media_progw == 100 ) {
384
+ media_progw = 100;
385
+ favorites = true
386
+ }
387
+ ;
388
+ jQuery( '.bp-album-media #rtprogressbar>div' ).css( 'width', media_progw + '%' );
389
+ jQuery( '.bp-album-comments #rtprogressbar>div' ).css( 'width', comments_progw + '%' );
390
+ jQuery( '.bp-album-users #rtprogressbar>div' ).css( 'width', users_progw + '%' );
391
+ media_finished = jQuery( '#bpmedia-bpalbumimporter .bp-album-media span.finished' ).html();
392
+ if ( parseInt( media_finished ) < parseInt( media_total ) )
393
+ jQuery( '#bpmedia-bpalbumimporter .bp-album-media span.finished' ).html( parseInt( media_finished ) + data.count );
394
+ jQuery( '#bpmedia-bpalbumimporter .bp-album-comments span.finished' ).html( parseInt( response.comments ) + parseInt( comments_finished ) );
395
+ jQuery( '#bpmedia-bpalbumimporter .bp-album-users span.finished' ).html( parseInt( response.users ) );
396
+ if ( favorites ) {
397
+ favorite_data = {
398
+ 'action': 'rtmedia_rt_album_import_favorites'
399
+ }
400
+ jQuery.post( ajaxurl, favorite_data, function ( response ) {
401
+ if ( response.favorites !== 0 || response.favorites !== '0' ) {
402
+ if ( !jQuery( '.bp-album-favorites' ).length )
403
+ jQuery( '.bp-album-comments' ).after( '<br /><div class="bp-album-favorites"><strong>User\'s Favorites: <span class="finished">0</span> / <span class="total">' + response.users + '</span></strong><div id="rtprogressbar"><div style="width:0%"></div></div></div>' );
404
+ $favorites = {};
405
+ if ( response.offset != 0 || response.offset != '0' )
406
+ start = response.offset * 1 + 1;
407
+ else
408
+ start = 1
409
+ for ( var i = start; i <= response.users; i++ ) {
410
+ $count = 1;
411
+ if ( i == response.users ) {
412
+ $count = parseInt( response.users % $count );
413
+ if ( $count == 0 ) {
414
+ $count = 1;
415
+ }
416
+ }
417
+
418
+ newvals = {
419
+ 'action': 'rtmedia_rt_album_import_step_favorites',
420
+ 'offset': ( i - 1 ) * 1,
421
+ 'redirect': i == response.users
422
+ }
423
+ $favorites[ i ] = newvals;
424
+ }
425
+ var $startingpoint = jQuery.Deferred();
426
+ $startingpoint.resolve();
427
+ jQuery.each( $favorites, function ( i, v ) {
428
+ $startingpoint = $startingpoint.pipe( function () {
429
+ return fireimportfavoriteRequest( v );
430
+ } );
431
+ } );
432
+
433
+ } else {
434
+ window.setTimeout( reload_url, 2000 );
435
+ }
436
+ }, 'json' );
437
+ }
438
+ } else {
439
+ jQuery( '#map_progress_msgs' ).html( '<div class="map_mapping_failure">Row ' + response.page + ' failed.</div>' );
440
+ }
441
+ } );
442
+ }
443
+
444
+ function fireimportfavoriteRequest( data ) {
445
+ return jQuery.post( ajaxurl, data, function ( response ) {
446
+ redirect = false;
447
+ favorites_total = jQuery( '#bpmedia-bpalbumimporter .bp-album-favorites span.total' ).html();
448
+ favorites_finished = jQuery( '#bpmedia-bpalbumimporter .bp-album-favorites span.finished' ).html();
449
+ jQuery( '#bpmedia-bpalbumimporter .bp-album-favorites span.finished' ).html( parseInt( favorites_finished ) + 1 );
450
+ var favorites_progw = Math.ceil( ( parseInt( favorites_finished + 1 ) / parseInt( favorites_total ) ) * 100 );
451
+ if ( favorites_progw > 100 || favorites_progw == 100 ) {
452
+ favorites_progw = 100;
453
+ redirect = true;
454
+ }
455
+ jQuery( '.bp-album-favorites #rtprogressbar>div' ).css( 'width', favorites_progw + '%' );
456
+ if ( redirect ) {
457
+ window.setTimeout( reload_url, 2000 );
458
+ }
459
+ } );
460
+ }
461
+
462
+ function reload_url() {
463
+ window.location = document.URL;
464
+ }
465
+
466
+ jQuery( '#bpmedia-bpalbumimport-cleanup' ).click( function ( e ) {
467
+ e.preventDefault();
468
+ jQuery.post( ajaxurl, {
469
+ action: 'rtmedia_rt_album_cleanup'
470
+ }, function ( response ) {
471
+ window.location = settings_rt_album_import_url;
472
+ } );
473
+
474
+ } );
475
+
476
+ jQuery( '#bpmedia-bpalbumimporter' ).on( 'click', '#bpmedia-bpalbumimport', function ( e ) {
477
+ e.preventDefault();
478
+ if ( !jQuery( '#bp-album-import-accept' ).prop( 'checked' ) ) {
479
+ jQuery( 'html, body' ).animate( {
480
+ scrollTop: jQuery( '#bp-album-import-accept' ).offset().top
481
+ }, 500 );
482
+ var $el = jQuery( '.bp-album-import-accept' ),
483
+ x = 500,
484
+ originalColor = '#FFEBE8',
485
+ i = 3; //counter
486
+
487
+ ( function loop() { //recurisve IIFE
488
+ $el.css( "background-color", "#EE0000" );
489
+ setTimeout( function () {
490
+ $el.css( "background-color", originalColor );
491
+ if ( --i )
492
+ setTimeout( loop, x ); //restart loop
493
+ }, x );
494
+ }() );
495
+ return;
496
+ } else {
497
+ jQuery( this ).prop( 'disabled', true );
498
+ }
499
+ wp_admin_url = ajaxurl.replace( 'admin-ajax.php', '' );
500
+ if ( !jQuery( '.bpm-ajax-loader' ).length )
501
+ jQuery( this ).after( ' <img class="bpm-ajax-loader" src="' + wp_admin_url + 'images/wpspin_light.gif" /> <strong>' + rtmedia_admin_strings.no_refresh + '</strong>' );
502
+
503
+
504
+ $progress_parent = jQuery( '#bpmedia-bpalbumimport' );
505
+ $values = [];
506
+ jQuery( this ).parent().find( 'input' ).each( function () {
507
+ $values [ jQuery( this ).attr( 'name' ) ] = [ jQuery( this ).val() ];
508
+
509
+ } );
510
+
511
+ if ( $values[ 'steps' ][ 0 ] == 0 )
512
+ $values[ 'steps' ][ 0 ] = 1;
513
+
514
+ $data = {};
515
+ for ( var i = 1; i <= $values[ 'steps' ][ 0 ]; i++ ) {
516
+ $count = 5;
517
+ if ( i == $values[ 'steps' ][ 0 ] ) {
518
+ $count = parseInt( $values[ 'laststep' ][ 0 ] );
519
+ if ( $count == 0 ) {
520
+ $count = 5
521
+ }
522
+ ;
523
+ }
524
+ newvals = {
525
+ 'page': i,
526
+ 'action': 'rtmedia_rt_album_import',
527
+ 'count': $count,
528
+ 'values': $values
529
+ }
530
+ $data[ i ] = newvals;
531
+ }
532
+ var $startingpoint = jQuery.Deferred();
533
+ $startingpoint.resolve();
534
+ jQuery.each( $data, function ( i, v ) {
535
+ $startingpoint = $startingpoint.pipe( function () {
536
+ return fireimportRequest( v );
537
+ } );
538
+ } );
539
+
540
+
541
+ } );
542
+
543
+ jQuery( '#bp-media-settings-boxes' ).on( 'click', '.interested', function () {
544
+ jQuery( '.interested-container' ).removeClass( 'hidden' );
545
+ jQuery( '.choice-free' ).attr( 'required', 'required' );
546
+ } );
547
+ jQuery( '#bp-media-settings-boxes' ).on( 'click', '.not-interested', function () {
548
+ jQuery( '.interested-container' ).addClass( 'hidden' );
549
+ jQuery( '.choice-free' ).removeAttr( 'required' );
550
+ } );
551
+
552
+ jQuery( '#video-transcoding-main-container' ).on( 'click', '.video-transcoding-survey', function ( e ) {
553
+ e.preventDefault();
554
+ var data = {
555
+ action: 'rtmedia_convert_videos_form',
556
+ email: jQuery( '.email' ).val(),
557
+ url: jQuery( '.url' ).val(),
558
+ choice: jQuery( 'input[name="choice"]:checked' ).val(),
559
+ interested: jQuery( 'input[name="interested"]:checked' ).val()
560
+ }
561
+ jQuery.post( ajaxurl, data, function ( response ) {
562
+ jQuery( '#video-transcoding-main-container' ).html( '<p><strong>' + response + '</strong></p>' );
563
+ } );
564
+ return false;
565
+ } );
566
+
567
+ jQuery( '#bpmedia-bpalbumimporter' ).on( 'click', '.deactivate-bp-album', function ( e ) {
568
+ e.preventDefault();
569
+ $bpalbum = jQuery( this );
570
+ var data = {
571
+ action: 'rtmedia_rt_album_deactivate'
572
+ }
573
+ jQuery.get( ajaxurl, data, function ( response ) {
574
+ if ( response )
575
+ location.reload();
576
+ else
577
+ $bpalbum.parent().after( '<p>' + rtmedia_admin_strings.something_went_wrong + '</p>' );
578
+ } );
579
+ } );
580
+
581
+ jQuery( '.updated' ).on( 'click', '.bpm-hide-encoding-notice', function () {
582
+ jQuery( this ).after( '<img style="margin: 0 0 0 10px" src="' + rtmedia_admin_url + 'images/wpspin_light.gif" />' );
583
+ var data = {
584
+ action: 'rtmedia_hide_encoding_notice'
585
+ }
586
+ jQuery.post( ajaxurl, data, function ( response ) {
587
+ if ( response ) {
588
+ jQuery( '.bpm-hide-encoding-notice' ).closest( '.updated' ).remove();
589
+ }
590
+ } );
591
+ } );
592
+
593
+
594
+ // if ( jQuery( '#rtmedia-privacy-enable' ).is( ":checked" ) ) {
595
+ // jQuery( ".privacy-driven-disable label input" ).prop( "disabled", false );
596
+ // jQuery( ".privacy-driven-disable label .rt-switch" ).bootstrapSwitch( "setActive", true );
597
+ // } else {
598
+ // jQuery( ".privacy-driven-disable label input" ).prop( "disabled", true );
599
+ // jQuery( ".privacy-driven-disable label .rt-switch" ).bootstrapSwitch( "setActive", false );
600
+ // jQuery( ".privacy-driven-disable" ).parent().parent().css( "display", "none" );
601
+ // }
602
+ //
603
+ // if ( jQuery( '#rtmedia-bp-enable-activity' ).is( ":checked" ) ) {
604
+ // jQuery( ".rtmedia-bp-activity-setting" ).prop( "disabled", false );
605
+ // jQuery( ".privacy-driven-disable label .rt-switch" ).bootstrapSwitch( "setActive", true );
606
+ // } else {
607
+ // jQuery( ".rtmedia-bp-activity-setting" ).prop( "disabled", true );
608
+ // jQuery( ".privacy-driven-disable label .rt-switch" ).bootstrapSwitch( "setActive", false );
609
+ // }
610
+ //
611
+ // jQuery( '#rtmedia-privacy-enable' ).on( "click", function ( e ) {
612
+ // if ( jQuery( this ).is( ":checked" ) ) {
613
+ // jQuery( ".privacy-driven-disable label input" ).prop( "disabled", false );
614
+ // jQuery( ".privacy-driven-disable label .rt-switch" ).bootstrapSwitch( "setActive", true );
615
+ // jQuery( ".privacy-driven-disable" ).parent().parent().css( "display", "block" );
616
+ // } else {
617
+ // jQuery( ".privacy-driven-disable label input" ).prop( "disabled", true );
618
+ // jQuery( ".privacy-driven-disable label .rt-switch" ).bootstrapSwitch( "setActive", false );
619
+ // jQuery( ".privacy-driven-disable" ).parent().parent().css( "display", "none" );
620
+ // }
621
+ // } );
622
+
623
+ if ( jQuery( '#rtmedia-bp-enable-activity' ).is( ":checked" ) ) {
624
+ jQuery( ".rtmedia-bp-activity-setting" ).prop( "readonly", false );
625
+ } else {
626
+ jQuery( ".rtmedia-bp-activity-setting" ).prop( "readonly", true );
627
+ }
628
+
629
+ jQuery( '#rtmedia-bp-enable-activity' ).on( "click", function ( e ) {
630
+ if ( jQuery( this ).is( ":checked" ) ) {
631
+ jQuery( ".rtmedia-bp-activity-setting" ).prop( "readonly", false );
632
+ } else {
633
+ jQuery( ".rtmedia-bp-activity-setting" ).prop( "readonly", true );
634
+ }
635
+ } );
636
+
637
+ var onData = '';
638
+ var offData = '';
639
+ if ( rtmedia_on_label !== undefined )
640
+ onData = 'data-on-label="' + rtmedia_on_label + '"';
641
+ if ( rtmedia_off_label !== undefined )
642
+ offData = 'data-off-label="' + rtmedia_off_label + '"';
643
+ //jQuery( "[data-toggle='switch']" ).wrap( '<div class="rt-switch" ' + onData + ' ' + offData + ' />' ).parent().bootstrapSwitch();
644
+
645
+ // $( ".rtmedia-tab-title" ).click( function () {
646
+ // hash = $( this ).attr( 'href' );
647
+ // window.location.hash = hash.substring( 1, hash.length );
648
+ // } );
649
+ //
650
+ // function manageHash() {
651
+ //
652
+ // hash = window.location.hash;
653
+ // $( '#tab-' + hash.substr( 1, hash.length ) ).click();
654
+ // if ( $( '#tab-' + hash.substr( 1, hash.length ) ).length < 1 )
655
+ // return 1;
656
+ // return $( '#tab-' + hash.substr( 1, hash.length ) ).parent().index() + 1;
657
+ // }
658
+
659
+ jQuery( '#rtmedia-submit-request' ).click( function () {
660
+ var flag = true;
661
+ var name = jQuery( '#name' ).val();
662
+ var email = jQuery( '#email' ).val();
663
+ var website = jQuery( '#website' ).val();
664
+ var phone = jQuery( '#phone' ).val();
665
+ var subject = jQuery( '#subject' ).val();
666
+ var details = jQuery( '#details' ).val();
667
+ var request_type = jQuery( 'input[name="request_type"]' ).val();
668
+ var request_id = jQuery( 'input[name="request_id"]' ).val();
669
+ var server_address = jQuery( 'input[name="server_address"]' ).val();
670
+ var ip_address = jQuery( 'input[name="ip_address"]' ).val();
671
+ var server_type = jQuery( 'input[name="server_type"]' ).val();
672
+ var user_agent = jQuery( 'input[name="user_agent"]' ).val();
673
+ var form_data = {
674
+ name: name,
675
+ email: email,
676
+ website: website,
677
+ phone: phone,
678
+ subject: subject,
679
+ details: details,
680
+ request_id: request_id,
681
+ request_type: 'premium_support',
682
+ server_address: server_address,
683
+ ip_address: ip_address,
684
+ server_type: server_type,
685
+ user_agent: user_agent
686
+ };
687
+ if ( request_type == "bug_report" ) {
688
+ var wp_admin_username = jQuery( '#wp_admin_username' ).val();
689
+ if ( wp_admin_username == "" ) {
690
+ alert( "Please enter WP Admin Login." );
691
+ return false;
692
+ }
693
+ var wp_admin_pwd = jQuery( '#wp_admin_pwd' ).val();
694
+ if ( wp_admin_pwd == "" ) {
695
+ alert( "Please enter WP Admin password." );
696
+ return false;
697
+ }
698
+ var ssh_ftp_host = jQuery( '#ssh_ftp_host' ).val();
699
+ if ( ssh_ftp_host == "" ) {
700
+ alert( "Please enter SSH / FTP host." );
701
+ return false;
702
+ }
703
+ var ssh_ftp_username = jQuery( '#ssh_ftp_username' ).val();
704
+ if ( ssh_ftp_username == "" ) {
705
+ alert( "Please enter SSH / FTP login." );
706
+ return false;
707
+ }
708
+ var ssh_ftp_pwd = jQuery( '#ssh_ftp_pwd' ).val();
709
+ if ( ssh_ftp_pwd == "" ) {
710
+ alert( "Please enter SSH / FTP password." );
711
+ return false;
712
+ }
713
+ form_data = {
714
+ name: name,
715
+ email: email,
716
+ website: website,
717
+ phone: phone,
718
+ subject: subject,
719
+ details: details,
720
+ request_id: request_id,
721
+ request_type: 'premium_support',
722
+ server_address: server_address,
723
+ ip_address: ip_address,
724
+ server_type: server_type,
725
+ user_agent: user_agent,
726
+ wp_admin_username: wp_admin_username,
727
+ wp_admin_pwd: wp_admin_pwd,
728
+ ssh_ftp_host: ssh_ftp_host,
729
+ ssh_ftp_username: ssh_ftp_username,
730
+ ssh_ftp_pwd: ssh_ftp_pwd
731
+ };
732
+ }
733
+ for ( formdata in form_data ) {
734
+ if ( form_data[ formdata ] == "" && formdata != 'phone' ) {
735
+ alert( "Please enter " + formdata.replace( "_", " " ) + " field." );
736
+ return false;
737
+ }
738
+ }
739
+ data = {
740
+ action: "rtmedia_submit_request",
741
+ form_data: form_data
742
+ };
743
+ jQuery.post( ajaxurl, data, function ( data ) {
744
+ data = data.trim();
745
+ if ( data == "false" ) {
746
+ alert( "Please fill all the fields." );
747
+ return false;
748
+ }
749
+ $( '#rtmedia_service_contact_container' ).empty();
750
+ $( '#rtmedia_service_contact_container' ).append( data );
751
+ } );
752
+ return false;
753
+ } );
754
+
755
+ jQuery( '#cancel-request' ).click( function () {
756
+ return false;
757
+ } );
758
+
759
+ if ( jQuery( '.rtm_enable_masonry_view input[type=checkbox]' ).is( ":checked" ) ) {
760
+ jQuery( '.rtm_enable_masonry_view' ).parents( '.metabox-holder' ).find( '.rtmedia-info' ).show();
761
+ } else {
762
+ jQuery( '.rtm_enable_masonry_view' ).parents( '.metabox-holder' ).find( '.rtmedia-info' ).hide();
763
+ }
764
+ jQuery( '.rtm_enable_masonry_view input[type=checkbox]' ).on( "click", function ( e ) {
765
+ if ( jQuery( this ).is( ":checked" ) ) {
766
+ jQuery( '.rtm_enable_masonry_view' ).parents( '.metabox-holder' ).find( '.rtmedia-info' ).show();
767
+ } else {
768
+ jQuery( '.rtm_enable_masonry_view' ).parents( '.metabox-holder' ).find( '.rtmedia-info' ).hide();
769
+ }
770
+ } );
771
+ jQuery( "#rtm-masonry-change-thumbnail-info" ).click( function ( e ) {
772
+ jQuery( "html, body" ).animate( { scrollTop: 0 }, '500', 'swing' );
773
+ } );
774
+ } );
775
+
776
+ function rtmedia_addon_do_not_show() {
777
+ var data = {
778
+ action: 'rtmedia_addon_popup_not_show_again'
779
+ };
780
+ jQuery.post( rtmedia_admin_ajax, data, function ( response ) {
781
+ jQuery( '#TB_window' ).remove();
782
+ jQuery( '#TB_overlay' ).remove();
783
+ } );
784
+ }
785
+
786
+ jQuery( window ).load( function () {
787
+ jQuery( '.rtmedia-addon-thickbox' ).trigger( 'click' );
788
+ } );
app/assets/css/rtmedia.css ADDED
@@ -0,0 +1,2507 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+ .alignleft {
3
+ float: left;
4
+ }
5
+
6
+ .alignright {
7
+ float: right;
8
+ }
9
+
10
+ .aligncenter {
11
+ display: block;
12
+ margin-left: auto;
13
+ margin-right: auto;
14
+ text-align: center;
15
+ }
16
+
17
+ .clear-both {
18
+ clear: both;
19
+ }
20
+
21
+ .clear-none {
22
+ clear: none;
23
+ }
24
+
25
+ .clear-left {
26
+ clear: left;
27
+ }
28
+
29
+ .clear-right {
30
+ clear: right;
31
+ }
32
+
33
+ .rtm-inline-block {
34
+ display: inline-block;
35
+ }
36
+
37
+ .rtm-text-left {
38
+ text-align: left;
39
+ }
40
+
41
+ .rtm-text-right {
42
+ text-align: right;
43
+ }
44
+
45
+ .rtm-text-center {
46
+ text-align: center;
47
+ }
48
+
49
+ .rtm-border-0 {
50
+ border: 0 !important;
51
+ }
52
+
53
+ .hide {
54
+ display: none;
55
+ }
56
+
57
+ .rtmedia-success,
58
+ .rtmedia-warning {
59
+ margin: 10px 0;
60
+ padding: 8px 14px 8px 14px;
61
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
62
+ border-bottom: 1px solid #e7e7e7;
63
+ cursor: pointer;
64
+ }
65
+
66
+ .rtmedia-success {
67
+ background-color: #dff0d8;
68
+ color: #468847;
69
+ }
70
+
71
+ .rtmedia-warning {
72
+ background-color: #F0D8DD;
73
+ color: #884646;
74
+ }
75
+
76
+ /*------------------------------------*\
77
+ #CLEARFIX
78
+ \*------------------------------------*/
79
+ /**
80
+ * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
81
+ * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
82
+ * over and over in your markup.
83
+ */
84
+ .clearfix:after {
85
+ content: "";
86
+ display: table;
87
+ clear: both;
88
+ }
89
+
90
+ #buddypress form#whats-new-form textarea {
91
+ box-sizing: border-box;
92
+ min-height: 70px;
93
+ width: 100%;
94
+ }
95
+
96
+ #buddypress #whats-new-options {
97
+ height: auto !important;
98
+ overflow: hidden;
99
+ }
100
+
101
+ #buddypress form#whats-new-form p.activity-greeting {
102
+ line-height: 1;
103
+ }
104
+
105
+ #buddypress form#whats-new-form #whats-new-options select {
106
+ border: 1px solid #ccc;
107
+ font-size: 13px;
108
+ margin-top: 0;
109
+ padding: 3px 2px;
110
+ }
111
+
112
+ #whats-new-submit #aw-whats-new-submit {
113
+ font-size: 12px;
114
+ line-height: 18px;
115
+ padding: 4px 6px;
116
+ }
117
+
118
+ #whats-new-post-in-box {
119
+ float: left;
120
+ font-size: 13px;
121
+ }
122
+
123
+ #buddypress form#whats-new-form #whats-new-submit {
124
+ margin-top: 0;
125
+ }
126
+
127
+ #whats-new-textarea {
128
+ margin-bottom: 10px;
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
+
138
+ .rtmedia-list.rtmedia-list {
139
+ list-style: none;
140
+ margin: 0;
141
+ padding: 0;
142
+ }
143
+
144
+ .rtmedia-list-item > a {
145
+ border: 0;
146
+ display: inline-block;
147
+ text-decoration: none;
148
+ }
149
+ .rtmedia-list-item > a:focus {
150
+ outline: 0;
151
+ }
152
+ .rtmedia-list-item > a + p {
153
+ display: none;
154
+ }
155
+ .rtmedia-list-item > a .rtmedia-item-thumbnail img {
156
+ display: inline-block;
157
+ }
158
+
159
+ #rtmedia-uploader-form .rtm-plupload-list, #rtmedia_uploader_filelist {
160
+ list-style: none;
161
+ margin-left: -4px;
162
+ margin-right: -4px;
163
+ padding-left: 0;
164
+ padding-top: 10px;
165
+ }
166
+ #rtmedia-uploader-form .rtm-plupload-list li, #rtmedia_uploader_filelist li {
167
+ background: #EEEEEE;
168
+ float: left;
169
+ margin: 4px;
170
+ max-width: 110px;
171
+ padding: 5px;
172
+ position: relative;
173
+ }
174
+ #rtmedia-uploader-form .rtm-plupload-list li.upload-error, #rtmedia_uploader_filelist li.upload-error {
175
+ border: 1px solid red;
176
+ }
177
+ #rtmedia-uploader-form .rtm-plupload-list img, #rtmedia_uploader_filelist img {
178
+ max-width: 100%;
179
+ }
180
+ #rtmedia-uploader-form .rtm-plupload-list canvas, #rtmedia_uploader_filelist canvas {
181
+ display: block;
182
+ max-width: 100%;
183
+ }
184
+
185
+ .rtm-plupload-list:empty {
186
+ display: none;
187
+ }
188
+
189
+ .rtmedia-uploader-div,
190
+ .rtmedia-uploader {
191
+ clear: both;
192
+ }
193
+
194
+ button#rtmedia-add-media-button-post-update {
195
+ padding: 3px 6px;
196
+ }
197
+ button#rtmedia-add-media-button-post-update .dashicons {
198
+ font-size: 18px;
199
+ line-height: 20px;
200
+ }
201
+
202
+ .plupload_file_name {
203
+ font-size: 11px;
204
+ font-weight: bold;
205
+ line-height: 1.2;
206
+ overflow: hidden;
207
+ text-overflow: ellipsis;
208
+ white-space: nowrap;
209
+ }
210
+
211
+ .plupload_file_size {
212
+ color: #666;
213
+ font-size: 10px;
214
+ }
215
+
216
+ .plupload_file_action {
217
+ background: #EEEEEE;
218
+ position: absolute;
219
+ height: 18px;
220
+ right: 0;
221
+ top: 0;
222
+ width: 18px;
223
+ z-index: 10;
224
+ }
225
+ .plupload_file_action .dashicons {
226
+ color: #DD3D36;
227
+ cursor: pointer;
228
+ font-size: 16px;
229
+ height: 18px;
230
+ padding: 2px 1px;
231
+ width: 18px;
232
+ }
233
+
234
+ .plupload_file_status {
235
+ height: 8px;
236
+ overflow: hidden;
237
+ position: relative;
238
+ }
239
+
240
+ .plupload_file_progress {
241
+ background: #7AD03A;
242
+ height: 4px;
243
+ position: absolute;
244
+ top: 0;
245
+ }
246
+
247
+ .rtm-form .rtm-field-wrap {
248
+ margin-bottom: 20px;
249
+ }
250
+
251
+ .rtmedia_next_prev {
252
+ padding: 0 10px;
253
+ }
254
+
255
+ .rtm-page-number {
256
+ float: left;
257
+ }
258
+ .rtm-page-number .rtm-label {
259
+ line-height: 30px;
260
+ }
261
+ .rtm-page-number .rtm-label,
262
+ .rtm-page-number .rtm-go-to-num,
263
+ .rtm-page-number .rtmedia-page-link {
264
+ float: left;
265
+ }
266
+
267
+ .rtm-pagination {
268
+ background: transparent;
269
+ border: none;
270
+ color: #888;
271
+ font-size: small;
272
+ margin: 0;
273
+ position: relative;
274
+ display: block;
275
+ float: left;
276
+ width: 100%;
277
+ padding: 10px 0;
278
+ }
279
+ .rtm-pagination .rtm-paginate {
280
+ float: right;
281
+ font-size: 15px;
282
+ }
283
+ .rtm-pagination .rtm-paginate a, .rtm-pagination .rtm-paginate span {
284
+ display: inline-block;
285
+ line-height: 1;
286
+ margin: 0 2px;
287
+ padding: 8px;
288
+ text-decoration: none;
289
+ }
290
+ .rtm-pagination .rtm-paginate a.rtmedia-page-link {
291
+ padding: 8px;
292
+ }
293
+ .rtm-pagination .dashicons {
294
+ font-size: 14px;
295
+ height: auto;
296
+ line-height: 1.2;
297
+ margin: 0;
298
+ padding: 0;
299
+ width: auto;
300
+ }
301
+
302
+ #rtmedia_go_to_num {
303
+ font-size: 16px;
304
+ margin: 0 5px;
305
+ padding: 4px 5px;
306
+ width: 80px;
307
+ }
308
+
309
+ .rtmedia-upload-not-allowed {
310
+ background-color: #fcf8e3;
311
+ border-bottom: 1px solid #EEE;
312
+ color: #c09853;
313
+ margin-bottom: 20px;
314
+ padding: 10px 15px;
315
+ }
316
+
317
+ .plupload_file_name {
318
+ position: relative;
319
+ }
320
+ .plupload_file_name .dashicons {
321
+ background: #EEEEEE;
322
+ color: #DD3D36;
323
+ cursor: pointer;
324
+ font-size: 14px;
325
+ height: auto;
326
+ padding: 0 2px 0 5px;
327
+ position: absolute;
328
+ right: 0;
329
+ top: 0;
330
+ width: auto;
331
+ }
332
+ .plupload_file_name .dashicons-yes {
333
+ color: #7AD03A;
334
+ }
335
+
336
+ .rtmedia-gallery-item-actions {
337
+ background-color: rgba(0, 0, 0, 0.6);
338
+ opacity: 0;
339
+ position: absolute;
340
+ text-align: center;
341
+ -webkit-transition: all ease-in-out 0.4s;
342
+ transition: all ease-in-out 0.4s;
343
+ width: 100%;
344
+ z-index: 9;
345
+ }
346
+ .rtmedia-gallery-item-actions a {
347
+ border: 0;
348
+ box-shadow: 0 0 0;
349
+ color: #fff;
350
+ display: inline-block;
351
+ font-size: 12px;
352
+ outline: none;
353
+ padding: 4px;
354
+ text-align: left;
355
+ text-decoration: none;
356
+ text-transform: uppercase;
357
+ }
358
+ .rtmedia-gallery-item-actions .dashicons {
359
+ font-size: 17px;
360
+ margin-right: 2px;
361
+ position: relative;
362
+ top: 1px;
363
+ }
364
+ .rtmedia-gallery-item-actions .dashicons-trash {
365
+ font-size: 15px;
366
+ }
367
+
368
+ .rtm-pro-allow-action .rtmedia-list-item:hover .rtmedia-gallery-item-actions {
369
+ opacity: 1;
370
+ }
371
+ .rtm-pro-allow-action .rtmedia-list-item:hover .rtmedia-bulk-edit-item-wrap + .rtmedia-gallery-item-actions {
372
+ opacity: 0;
373
+ }
374
+
375
+ .rtmedia-footer-link {
376
+ clear: both;
377
+ overflow: hidden;
378
+ padding: 16px 0;
379
+ position: relative;
380
+ text-align: center;
381
+ }
382
+
383
+ .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,
384
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete a,
385
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span,
386
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a,
387
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title span {
388
+ text-decoration: none;
389
+ }
390
+ .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,
391
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete a:hover,
392
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span:hover,
393
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a:hover,
394
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title span:hover {
395
+ text-decoration: underline;
396
+ }
397
+
398
+ .rtmedia-container .rtmedia-edit-list-media-table {
399
+ max-height: 300px;
400
+ overflow-y: auto;
401
+ }
402
+ .rtmedia-container .rtmedia-edit-list-media-table thead tr {
403
+ background-color: #50A1D7;
404
+ }
405
+ .rtmedia-container .rtmedia-edit-list-media-table thead th {
406
+ text-align: center;
407
+ color: #FFF;
408
+ }
409
+ .rtmedia-container .rtmedia-edit-list-media-table tbody tr:nth-child(odd) {
410
+ background: #FFF;
411
+ }
412
+ .rtmedia-container .rtmedia-edit-list-media-table tbody tr:nth-child(even) {
413
+ background: #DCDCDC;
414
+ }
415
+
416
+ table.rtmedia-edit-media-list tr {
417
+ line-height: 30px;
418
+ }
419
+ table.rtmedia-edit-media-list tr th {
420
+ color: #333;
421
+ padding: 4px 10px;
422
+ line-height: 20px;
423
+ }
424
+ table.rtmedia-edit-media-list tr .rtm-edit-media-list-heading {
425
+ width: 44%;
426
+ }
427
+ table.rtmedia-edit-media-list tr .rtm-edit-media-list-title-heading {
428
+ width: 56%;
429
+ }
430
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit,
431
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete,
432
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title {
433
+ padding: 4px;
434
+ font-size: 14px;
435
+ line-height: 24px;
436
+ }
437
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-title a {
438
+ text-decoration: none;
439
+ color: #333;
440
+ }
441
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit {
442
+ text-align: center;
443
+ }
444
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-edit a {
445
+ color: #333;
446
+ font-size: 13px;
447
+ }
448
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete {
449
+ text-align: center;
450
+ }
451
+ table.rtmedia-edit-media-list tr td.rtm-edit-media-list-delete span {
452
+ color: #FF0000;
453
+ cursor: pointer;
454
+ font-size: 13px;
455
+ }
456
+
457
+ .rtm-tabs.rtm-tabs {
458
+ border-bottom: 1px solid #EEEEEE;
459
+ list-style: none;
460
+ margin: 0 0 20px;
461
+ padding: 0;
462
+ }
463
+ .rtm-tabs li {
464
+ border: 1px solid #EEEEEE;
465
+ border-bottom: 0;
466
+ float: left;
467
+ margin: 0 5px;
468
+ padding: 0;
469
+ }
470
+ .rtm-tabs a {
471
+ border: 0;
472
+ display: block;
473
+ padding: 5px 15px;
474
+ text-decoration: none;
475
+ }
476
+ .rtm-tabs a:focus {
477
+ background: transparent;
478
+ box-shadow: 0 0 0;
479
+ }
480
+ .rtm-tabs .active {
481
+ position: relative;
482
+ }
483
+ .rtm-tabs .active:after {
484
+ background: #FFFFFF;
485
+ bottom: -1px;
486
+ content: ' ';
487
+ height: 1px;
488
+ left: 0;
489
+ position: absolute;
490
+ width: 100%;
491
+ }
492
+ .rtm-tabs .dashicons {
493
+ font-size: 16px;
494
+ height: auto;
495
+ line-height: 2;
496
+ margin-right: 8px;
497
+ width: auto;
498
+ }
499
+
500
+ .rtmedia-edit-media-tabs .rtm-tabs a {
501
+ border-bottom: 0 none;
502
+ }
503
+
504
+ /* Magnific Popup CSS */
505
+ .mfp-bg {
506
+ top: 0;
507
+ left: 0;
508
+ width: 100%;
509
+ height: 100%;
510
+ z-index: 104211;
511
+ overflow: hidden;
512
+ position: fixed;
513
+ background: rgba(0, 0, 0, 0.9);
514
+ }
515
+
516
+ .mfp-wrap {
517
+ top: 0;
518
+ left: 0;
519
+ width: 100%;
520
+ height: 100%;
521
+ z-index: 104311;
522
+ position: fixed;
523
+ outline: none !important;
524
+ -webkit-backface-visibility: hidden;
525
+ }
526
+
527
+ .mfp-container {
528
+ text-align: center;
529
+ position: absolute;
530
+ width: 100%;
531
+ max-width: 84%;
532
+ margin: 0 auto;
533
+ right: 0;
534
+ height: 100%;
535
+ left: 0;
536
+ top: 0;
537
+ padding: 0 8px;
538
+ box-sizing: border-box;
539
+ }
540
+ .mfp-container:before {
541
+ content: ' ';
542
+ display: inline-block;
543
+ height: 100%;
544
+ vertical-align: middle;
545
+ }
546
+
547
+ .mfp-align-top .mfp-container:before {
548
+ display: none;
549
+ }
550
+
551
+ .mfp-content {
552
+ position: relative;
553
+ display: inline-block;
554
+ vertical-align: middle;
555
+ margin: 0 auto;
556
+ text-align: left;
557
+ z-index: 1045;
558
+ }
559
+
560
+ .mfp-inline-holder .mfp-content,
561
+ .mfp-ajax-holder .mfp-content {
562
+ width: 100%;
563
+ cursor: auto;
564
+ }
565
+
566
+ .mfp-ajax-cur {
567
+ cursor: progress;
568
+ }
569
+
570
+ .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
571
+ cursor: -webkit-zoom-out;
572
+ cursor: zoom-out;
573
+ }
574
+
575
+ .mfp-zoom {
576
+ cursor: pointer;
577
+ cursor: -webkit-zoom-in;
578
+ cursor: zoom-in;
579
+ }
580
+
581
+ .mfp-auto-cursor .mfp-content {
582
+ cursor: auto;
583
+ }
584
+
585
+ .mfp-close,
586
+ .mfp-arrow,
587
+ .mfp-preloader,
588
+ .mfp-counter {
589
+ -webkit-user-select: none;
590
+ -moz-user-select: none;
591
+ -ms-user-select: none;
592
+ user-select: none;
593
+ }
594
+
595
+ .mfp-loading.mfp-figure {
596
+ display: none;
597
+ }
598
+
599
+ .mfp-hide {
600
+ display: none !important;
601
+ }
602
+
603
+ .mfp-s-ready .mfp-preloader {
604
+ display: none;
605
+ }
606
+
607
+ .mfp-s-error .mfp-content {
608
+ display: none;
609
+ }
610
+
611
+ button.mfp-close, button.mfp-arrow {
612
+ overflow: visible;
613
+ cursor: pointer;
614
+ background: transparent;
615
+ border: 0;
616
+ -webkit-appearance: none;
617
+ display: block;
618
+ outline: none;
619
+ padding: 0;
620
+ z-index: 1046;
621
+ box-shadow: none;
622
+ }
623
+
624
+ button::-moz-focus-inner {
625
+ padding: 0;
626
+ border: 0;
627
+ }
628
+
629
+ .mfp-close {
630
+ background: #FFFFFF;
631
+ color: #999;
632
+ cursor: pointer;
633
+ font-size: 24px;
634
+ font-style: normal;
635
+ height: 30px;
636
+ line-height: 30px;
637
+ padding: 0;
638
+ position: absolute;
639
+ right: 1px;
640
+ text-align: center;
641
+ text-decoration: none;
642
+ text-indent: 2px;
643
+ top: 0;
644
+ width: 32px;
645
+ z-index: 12;
646
+ }
647
+
648
+ .mfp-close:hover,
649
+ .mfp-close:focus {
650
+ opacity: 1;
651
+ filter: alpha(opacity=100);
652
+ }
653
+
654
+ .mfp-close:active {
655
+ top: 1px;
656
+ }
657
+
658
+ .mfp-image-holder .mfp-close,
659
+ .mfp-iframe-holder .mfp-close {
660
+ color: #FFF;
661
+ right: -6px;
662
+ text-align: right;
663
+ padding-right: 6px;
664
+ width: 100%;
665
+ }
666
+
667
+ .mfp-counter {
668
+ position: absolute;
669
+ top: 0;
670
+ right: 0;
671
+ color: #CCC;
672
+ font-size: 12px;
673
+ line-height: 18px;
674
+ white-space: nowrap;
675
+ }
676
+
677
+ .mfp-arrow {
678
+ cursor: pointer;
679
+ position: absolute;
680
+ opacity: 0.65;
681
+ filter: alpha(opacity=65);
682
+ margin: 0;
683
+ top: 50%;
684
+ margin-top: -55px;
685
+ padding: 0;
686
+ width: 90px;
687
+ height: 110px;
688
+ -webkit-tap-highlight-color: transparent;
689
+ opacity: 0;
690
+ z-index: 10;
691
+ -webkit-transition: all 300ms ease-out;
692
+ transition: all 300ms ease-out;
693
+ }
694
+ .rtm-single-media:hover .mfp-arrow {
695
+ opacity: 1;
696
+ }
697
+ @media (max-device-width: 640px) {
698
+ .mfp-arrow {
699
+ display: none;
700
+ }
701
+ .rtm-single-media:hover .mfp-arrow {
702
+ display: none;
703
+ }
704
+ }
705
+
706
+ .mfp-arrow:active {
707
+ margin-top: -54px;
708
+ }
709
+
710
+ .mfp-arrow:hover,
711
+ .mfp-arrow:focus {
712
+ opacity: 1;
713
+ filter: alpha(opacity=100);
714
+ }
715
+
716
+ .mfp-arrow:before,
717
+ .mfp-arrow:after,
718
+ .mfp-arrow .mfp-b,
719
+ .mfp-arrow .mfp-a {
720
+ content: '';
721
+ display: block;
722
+ width: 0;
723
+ height: 0;
724
+ position: absolute;
725
+ left: 0;
726
+ top: 0;
727
+ margin-top: 35px;
728
+ margin-left: 35px;
729
+ border: medium inset transparent;
730
+ }
731
+
732
+ .mfp-arrow:after,
733
+ .mfp-arrow .mfp-a {
734
+ border-top-width: 13px;
735
+ border-bottom-width: 13px;
736
+ top: 8px;
737
+ }
738
+
739
+ .mfp-arrow:before,
740
+ .mfp-arrow .mfp-b {
741
+ border-top-width: 21px;
742
+ border-bottom-width: 21px;
743
+ opacity: 0.7;
744
+ }
745
+
746
+ .mfp-arrow-left {
747
+ left: 0;
748
+ }
749
+
750
+ .mfp-arrow-left:after,
751
+ .mfp-arrow-left .mfp-a {
752
+ border-right: 17px solid #FFF;
753
+ margin-left: 31px;
754
+ }
755
+
756
+ .mfp-arrow-left:before,
757
+ .mfp-arrow-left .mfp-b {
758
+ margin-left: 25px;
759
+ border-right: 27px solid #3F3F3F;
760
+ }
761
+
762
+ .mfp-arrow-right {
763
+ right: 0;
764
+ }
765
+
766
+ .mfp-arrow-right:after,
767
+ .mfp-arrow-right .mfp-a {
768
+ border-left: 17px solid #FFF;
769
+ margin-left: 39px;
770
+ }
771
+
772
+ .mfp-arrow-right:before,
773
+ .mfp-arrow-right .mfp-b {
774
+ border-left: 27px solid #3F3F3F;
775
+ }
776
+
777
+ .mfp-iframe-holder {
778
+ padding-top: 40px;
779
+ padding-bottom: 40px;
780
+ }
781
+
782
+ .mfp-iframe-holder .mfp-content {
783
+ line-height: 0;
784
+ width: 100%;
785
+ max-width: 900px;
786
+ }
787
+
788
+ .mfp-iframe-holder .mfp-close {
789
+ top: -40px;
790
+ }
791
+
792
+ .mfp-iframe-scaler {
793
+ width: 100%;
794
+ height: 0;
795
+ overflow: hidden;
796
+ padding-top: 56.25%;
797
+ }
798
+
799
+ .mfp-iframe-scaler iframe {
800
+ position: absolute;
801
+ display: block;
802
+ top: 0;
803
+ left: 0;
804
+ width: 100%;
805
+ height: 100%;
806
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
807
+ background: #000;
808
+ }
809
+
810
+ /* Main image in popup */
811
+ img.mfp-img {
812
+ width: auto;
813
+ max-width: 100%;
814
+ height: auto;
815
+ display: block;
816
+ line-height: 0;
817
+ box-sizing: border-box;
818
+ padding: 40px 0 40px;
819
+ margin: 0 auto;
820
+ }
821
+
822
+ /* The shadow behind the image */
823
+ .mfp-figure {
824
+ line-height: 0;
825
+ }
826
+
827
+ .mfp-figure:after {
828
+ content: '';
829
+ position: absolute;
830
+ left: 0;
831
+ top: 40px;
832
+ bottom: 40px;
833
+ display: block;
834
+ right: 0;
835
+ width: auto;
836
+ height: auto;
837
+ z-index: -1;
838
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
839
+ background: #444;
840
+ }
841
+
842
+ .mfp-figure small {
843
+ color: #BDBDBD;
844
+ display: block;
845
+ font-size: 12px;
846
+ line-height: 14px;
847
+ }
848
+
849
+ .mfp-figure figure {
850
+ margin: 0;
851
+ }
852
+
853
+ .mfp-bottom-bar {
854
+ margin-top: -36px;
855
+ position: absolute;
856
+ top: 100%;
857
+ left: 0;
858
+ width: 100%;
859
+ cursor: auto;
860
+ }
861
+
862
+ .mfp-title {
863
+ text-align: left;
864
+ line-height: 18px;
865
+ color: #F3F3F3;
866
+ word-wrap: break-word;
867
+ padding-right: 36px;
868
+ }
869
+
870
+ .mfp-image-holder .mfp-content {
871
+ max-width: 100%;
872
+ }
873
+
874
+ .mfp-gallery .mfp-image-holder .mfp-figure {
875
+ cursor: pointer;
876
+ }
877
+
878
+ .mfp-preloader {
879
+ position: absolute;
880
+ top: 50%;
881
+ left: 0;
882
+ right: 0;
883
+ margin-top: -36px;
884
+ z-index: 1044;
885
+ font-size: 0;
886
+ width: 36px;
887
+ height: 36px;
888
+ margin-left: auto;
889
+ margin-right: auto;
890
+ }
891
+ .mfp-preloader:before {
892
+ content: 'Loading…';
893
+ position: absolute;
894
+ width: 30px;
895
+ height: 30px;
896
+ }
897
+ .mfp-preloader:not(:required):before {
898
+ content: '';
899
+ border-radius: 50%;
900
+ border: 3px solid rgba(255, 255, 255, 0.27);
901
+ border-top-color: rgba(255, 255, 255, 0.9);
902
+ animation: spinner .6s linear infinite;
903
+ -webkit-animation: spinner .6s linear infinite;
904
+ }
905
+
906
+ @keyframes spinner {
907
+ to {
908
+ -webkit-transform: rotate(360deg);
909
+ transform: rotate(360deg);
910
+ }
911
+ }
912
+ @-webkit-keyframes spinner {
913
+ to {
914
+ -webkit-transform: rotate(360deg);
915
+ }
916
+ }
917
+ @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
918
+ /**
919
+ * Remove all paddings around the image on small screen
920
+ */
921
+ .mfp-img-mobile .mfp-image-holder {
922
+ padding-left: 0;
923
+ padding-right: 0;
924
+ }
925
+
926
+ .mfp-img-mobile img.mfp-img {
927
+ padding: 0;
928
+ }
929
+
930
+ .mfp-img-mobile .mfp-figure:after {
931
+ top: 0;
932
+ bottom: 0;
933
+ }
934
+
935
+ .mfp-img-mobile .mfp-figure small {
936
+ display: inline;
937
+ margin-left: 5px;
938
+ }
939
+
940
+ .mfp-img-mobile .mfp-bottom-bar {
941
+ background: rgba(0, 0, 0, 0.6);
942
+ bottom: 0;
943
+ margin: 0;
944
+ top: auto;
945
+ padding: 3px 5px;
946
+ position: fixed;
947
+ box-sizing: border-box;
948
+ }
949
+
950
+ .mfp-img-mobile .mfp-bottom-bar:empty {
951
+ padding: 0;
952
+ }
953
+
954
+ .mfp-img-mobile .mfp-counter {
955
+ right: 5px;
956
+ top: 3px;
957
+ }
958
+
959
+ .mfp-img-mobile .mfp-close {
960
+ top: 0;
961
+ right: 0;
962
+ width: 35px;
963
+ height: 35px;
964
+ line-height: 35px;
965
+ background: rgba(0, 0, 0, 0.6);
966
+ position: fixed;
967
+ text-align: center;
968
+ padding: 0;
969
+ }
970
+ }
971
+ @media all and (max-width: 900px) {
972
+ .mfp-arrow {
973
+ -webkit-transform: scale(0.75);
974
+ -ms-transform: scale(0.75);
975
+ transform: scale(0.75);
976
+ }
977
+
978
+ .mfp-arrow-left {
979
+ -webkit-transform-origin: 0;
980
+ -ms-transform-origin: 0;
981
+ transform-origin: 0;
982
+ }
983
+
984
+ .mfp-arrow-right {
985
+ -webkit-transform-origin: 100%;
986
+ -ms-transform-origin: 100%;
987
+ transform-origin: 100%;
988
+ }
989
+
990
+ .mfp-container {
991
+ padding-left: 6px;
992
+ padding-right: 6px;
993
+ }
994
+ }
995
+ .mfp-content .rtm-lightbox-container {
996
+ background: #000000;
997
+ margin: 0 auto;
998
+ position: relative;
999
+ }
1000
+ .mfp-content .rtm-single-meta {
1001
+ background: #FFFFFF;
1002
+ overflow: hidden;
1003
+ padding: 20px 20px 110px;
1004
+ position: relative;
1005
+ vertical-align: top;
1006
+ }
1007
+
1008
+ .rtm-single-media {
1009
+ overflow: hidden;
1010
+ position: relative;
1011
+ text-align: center;
1012
+ vertical-align: middle;
1013
+ }
1014
+ .rtm-single-media .mejs-container {
1015
+ margin: 0 auto;
1016
+ max-width: inherit;
1017
+ }
1018
+ .rtm-single-media .rtmedia-message-container {
1019
+ position: absolute;
1020
+ top: 45%;
1021
+ left: 0;
1022
+ right: 0;
1023
+ margin-left: auto;
1024
+ margin-right: auto;
1025
+ }
1026
+ @media (max-device-width: 640px) {
1027
+ .rtm-single-media .rtmedia-message-container {
1028
+ top: 25%;
1029
+ }
1030
+ }
1031
+
1032
+ .rtm-ltb-action-container {
1033
+ background-color: rgba(0, 0, 0, 0.6);
1034
+ bottom: 0;
1035
+ color: #FFFFFF;
1036
+ line-height: 38px;
1037
+ opacity: 0;
1038
+ padding: 0 10px;
1039
+ position: absolute;
1040
+ width: 100%;
1041
+ -webkit-transition: all 300ms ease-out;
1042
+ transition: all 300ms ease-out;
1043
+ }
1044
+ .rtm-single-media:hover .rtm-ltb-action-container {
1045
+ opacity: 1;
1046
+ }
1047
+ @media (max-device-width: 640px) {
1048
+ .rtm-ltb-action-container {
1049
+ clear: both;
1050
+ position: relative;
1051
+ opacity: 1;
1052
+ }
1053
+ .rtm-single-media:hover .rtm-ltb-action-container {
1054
+ opacity: 1;
1055
+ }
1056
+ }
1057
+
1058
+ #buddypress #rtmedia-single-media-container.rtmedia-single-media .button {
1059
+ background: transparent;
1060
+ border: 0 none;
1061
+ border-radius: 2px;
1062
+ color: rgba(255, 255, 255, 0.5);
1063
+ display: block;
1064
+ font-family: inherit;
1065
+ font-weight: normal;
1066
+ line-height: 24px;
1067
+ margin: 0;
1068
+ padding: 0 6px;
1069
+ text-shadow: 0 0 0;
1070
+ text-transform: none;
1071
+ }
1072
+ #buddypress #rtmedia-single-media-container.rtmedia-single-media .button:hover {
1073
+ background: rgba(255, 255, 255, 0.2);
1074
+ color: rgba(255, 255, 255, 0.8);
1075
+ }
1076
+ #buddypress #rtmedia-single-media-container.rtmedia-single-media .rtm-options .button {
1077
+ color: #333;
1078
+ margin: 0 auto;
1079
+ padding: 0 4px 0 0;
1080
+ }
1081
+
1082
+ #buddypress #rtm-media-options-list .rtm-options .button {
1083
+ background: transparent;
1084
+ border: 0 none;
1085
+ border-radius: 2px;
1086
+ color: rgba(255, 255, 255, 0.5);
1087
+ float: left;
1088
+ font-family: inherit;
1089
+ font-weight: normal;
1090
+ line-height: 24px;
1091
+ padding: 0 6px;
1092
+ text-shadow: 0 0 0;
1093
+ text-transform: none;
1094
+ }
1095
+ #buddypress #rtm-media-options-list .rtm-options .rtmedia-delete-favlist {
1096
+ color: #FFFFFF;
1097
+ padding: 0;
1098
+ }
1099
+
1100
+ .rtm-options.rtm-options {
1101
+ background: #666666;
1102
+ color: #FFFFFF;
1103
+ display: none;
1104
+ font-size: 14px;
1105
+ list-style: none;
1106
+ margin: 0;
1107
+ padding: 8px 10px;
1108
+ position: absolute;
1109
+ left: 0;
1110
+ top: 38px;
1111
+ width: 180px;
1112
+ z-index: 10;
1113
+ }
1114
+ .rtm-options li {
1115
+ margin: 0;
1116
+ overflow: hidden;
1117
+ padding: 2px 0;
1118
+ }
1119
+ .rtm-media-options .rtm-options:after {
1120
+ bottom: 100%;
1121
+ left: 20px;
1122
+ border: solid transparent;
1123
+ content: ' ';
1124
+ height: 0;
1125
+ width: 0;
1126
+ position: absolute;
1127
+ pointer-events: none;
1128
+ border-color: rgba(255, 255, 255, 0);
1129
+ border-bottom-color: #666666;
1130
+ border-width: 6px;
1131
+ margin-left: -6px;
1132
+ }
1133
+ .mfp-content .rtm-options {
1134
+ background: #FFFFFF;
1135
+ color: #333;
1136
+ bottom: 38px;
1137
+ right: 0;
1138
+ left: auto;
1139
+ top: auto;
1140
+ }
1141
+ .mfp-content .rtm-options:after {
1142
+ top: 100%;
1143
+ right: 22px;
1144
+ border: solid transparent;
1145
+ content: ' ';
1146
+ height: 0;
1147
+ width: 0;
1148
+ position: absolute;
1149
+ pointer-events: none;
1150
+ border-color: rgba(255, 255, 255, 0);
1151
+ border-top-color: #FFFFFF;
1152
+ border-width: 6px;
1153
+ margin-left: -6px;
1154
+ }
1155
+ .rtm-options .dashicons {
1156
+ font-size: 14px;
1157
+ line-height: 24px;
1158
+ margin-right: 2px;
1159
+ }
1160
+ .rtm-media-options .rtm-options a {
1161
+ border: 0;
1162
+ color: #fff;
1163
+ display: block;
1164
+ text-decoration: none;
1165
+ }
1166
+
1167
+ .rtm-ltb-title {
1168
+ color: rgba(255, 255, 255, 0.7);
1169
+ float: left;
1170
+ font-size: 13px;
1171
+ }
1172
+ .rtm-ltb-title a {
1173
+ color: inherit;
1174
+ }
1175
+ .rtm-ltb-title a:hover {
1176
+ border-bottom: 1px dotted;
1177
+ color: #FFFFFF;
1178
+ }
1179
+
1180
+ .rtm-item-actions {
1181
+ float: right;
1182
+ }
1183
+ .rtm-item-actions > div, .rtm-item-actions > form {
1184
+ float: left;
1185
+ margin: 0 2px;
1186
+ padding: 7px 0;
1187
+ position: relative;
1188
+ }
1189
+
1190
+ .rtmedia-media img {
1191
+ display: inline-block;
1192
+ max-height: inherit;
1193
+ height: auto;
1194
+ max-width: 100%;
1195
+ width: auto;
1196
+ }
1197
+
1198
+ .rtm-user-meta-details .username {
1199
+ font-size: 16px;
1200
+ line-height: 1;
1201
+ margin-bottom: 6px;
1202
+ }
1203
+
1204
+ .userprofile {
1205
+ float: left;
1206
+ margin: 0 16px 16px 0;
1207
+ max-width: 54px;
1208
+ }
1209
+ .userprofile a {
1210
+ display: block;
1211
+ }
1212
+ .userprofile img {
1213
+ height: auto;
1214
+ max-width: 100%;
1215
+ }
1216
+
1217
+ .rtm-time-privacy {
1218
+ color: #999;
1219
+ font-size: 12px;
1220
+ }
1221
+ .rtm-time-privacy .dashicons {
1222
+ font-size: 14px;
1223
+ line-height: 1.5;
1224
+ }
1225
+
1226
+ .rtmedia-actions-before-comments > span {
1227
+ float: left;
1228
+ margin-right: 10px;
1229
+ }
1230
+ .rtmedia-actions-before-comments .rtmedia-comment-link, #buddypress .rtmedia-actions-before-comments .rtmedia-like {
1231
+ border: 0;
1232
+ font-size: 13px;
1233
+ font-weight: normal;
1234
+ line-height: 2;
1235
+ padding: 0;
1236
+ text-transform: none;
1237
+ }
1238
+ .rtmedia-actions-before-comments .rtmedia-comment-link:hover, #buddypress .rtmedia-actions-before-comments .rtmedia-like:hover {
1239
+ background: transparent;
1240
+ }
1241
+
1242
+ .rtmedia-comment-user-pic {
1243
+ float: left;
1244
+ margin-right: 10px;
1245
+ max-width: 36px;
1246
+ }
1247
+ .rtmedia-comment-user-pic img {
1248
+ height: auto;
1249
+ max-width: 100%;
1250
+ }
1251
+
1252
+ .rtm-like-comments-info {
1253
+ position: relative;
1254
+ }
1255
+ .rtm-like-comments-info:after {
1256
+ bottom: 100%;
1257
+ left: 15px;
1258
+ border: solid transparent;
1259
+ content: " ";
1260
+ height: 0;
1261
+ width: 0;
1262
+ position: absolute;
1263
+ pointer-events: none;
1264
+ border-color: rgba(237, 239, 244, 0);
1265
+ border-bottom-color: #edeff4;
1266
+ border-width: 4px;
1267
+ margin-left: -4px;
1268
+ }
1269
+
1270
+ .rtm-comment-list.rtm-comment-list {
1271
+ list-style: none;
1272
+ margin: 0;
1273
+ padding: 0;
1274
+ }
1275
+ .rtm-comment-list li {
1276
+ background: #edeff4;
1277
+ font-size: 12px;
1278
+ margin-bottom: 1px;
1279
+ padding: 10px;
1280
+ position: relative;
1281
+ }
1282
+ .rtm-comment-list li:hover .rtmedia-delete-comment {
1283
+ opacity: 1;
1284
+ }
1285
+ .rtm-comment-list .rtmedia-no-comments {
1286
+ margin: 0;
1287
+ padding: 5px 10px;
1288
+ }
1289
+
1290
+ .rtmedia-like-info {
1291
+ background: #edeff4;
1292
+ font-size: 12px;
1293
+ margin-bottom: 1px;
1294
+ padding: 5px 10px;
1295
+ position: relative;
1296
+ }
1297
+
1298
+ .rtm-comment-wrap {
1299
+ overflow: hidden;
1300
+ }
1301
+ .rtm-comment-wrap .rtmedia-comment-author {
1302
+ font-weight: 700;
1303
+ }
1304
+ .rtm-comment-wrap .rtmedia-comment-date {
1305
+ color: #999;
1306
+ font-size: 11px;
1307
+ }
1308
+
1309
+ .rtmedia-comment-content {
1310
+ margin-top: 2px;
1311
+ }
1312
+
1313
+ .rtmedia-delete-comment {
1314
+ color: #999;
1315
+ cursor: pointer;
1316
+ font-size: 16px;
1317
+ opacity: 0;
1318
+ position: absolute;
1319
+ right: 5px;
1320
+ top: 5px;
1321
+ }
1322
+
1323
+ .rtmedia-comment-content p {
1324
+ margin: 0;
1325
+ }
1326
+
1327
+ .rtmedia-comment-details {
1328
+ line-height: 1.5;
1329
+ margin-top: -3px;
1330
+ }
1331
+
1332
+ .rtmedia-item-comments textarea {
1333
+ font-size: 14px;
1334
+ padding: 4px;
1335
+ }
1336
+
1337
+ .rtm-media-single-comments {
1338
+ background-color: #edeff4;
1339
+ bottom: 20px;
1340
+ padding: 10px;
1341
+ position: absolute;
1342
+ width: -webkit-calc(100% - 40px);
1343
+ width: calc(100% - 40px);
1344
+ }
1345
+ .rtm-media-single-comments textarea {
1346
+ font-size: 12px;
1347
+ line-height: 14px;
1348
+ max-height: 40px;
1349
+ min-height: 30px;
1350
+ padding: 4px;
1351
+ }
1352
+
1353
+ .rtmedia-popup {
1354
+ background: #FFFFFF;
1355
+ margin: 20px auto;
1356
+ max-width: 600px;
1357
+ padding: 20px;
1358
+ position: relative;
1359
+ width: auto;
1360
+ }
1361
+ .rtmedia-popup .rtm-modal-title {
1362
+ font-size: 24px;
1363
+ margin-bottom: 20px;
1364
+ margin-top: 0;
1365
+ }
1366
+ .rtmedia-popup label {
1367
+ display: block;
1368
+ margin-bottom: 5px;
1369
+ }
1370
+
1371
+ #rtm-modal-container p {
1372
+ margin-bottom: 10px;
1373
+ }
1374
+
1375
+ #rtm-mejs-video-container {
1376
+ margin: 0 auto;
1377
+ }
1378
+
1379
+ .rtmedia-media-name {
1380
+ float: left;
1381
+ max-width: 140px;
1382
+ overflow: hidden;
1383
+ text-align: left;
1384
+ text-overflow: ellipsis;
1385
+ white-space: nowrap;
1386
+ }
1387
+
1388
+ .rtm-single-media.rtm-media-type-video {
1389
+ padding-bottom: 40px;
1390
+ padding-top: 40px;
1391
+ }
1392
+
1393
+ .rtmedia-activity-container {
1394
+ box-sizing: border-box;
1395
+ }
1396
+ .rtmedia-activity-container *, .rtmedia-activity-container *:before, .rtmedia-activity-container *:after {
1397
+ box-sizing: inherit;
1398
+ }
1399
+
1400
+ #buddypress ul.rtmedia-list li {
1401
+ border-bottom: 0;
1402
+ padding-bottom: 0;
1403
+ }
1404
+
1405
+ .rtmedia-activity-container .rtmedia-item-actions {
1406
+ display: none;
1407
+ }
1408
+ .rtmedia-activity-container .rtmedia-item-title, .rtmedia-activity-container .rtmedia-item-title a {
1409
+ border: 0;
1410
+ color: #666666;
1411
+ font-size: 13px;
1412
+ margin: 5px 0 0;
1413
+ overflow: hidden;
1414
+ text-align: center;
1415
+ text-overflow: ellipsis;
1416
+ white-space: nowrap;
1417
+ }
1418
+
1419
+ #rtmedia-whts-new-upload-container div {
1420
+ left: 0 !important;
1421
+ position: absolute;
1422
+ top: 0 !important;
1423
+ }
1424
+
1425
+ #aw-whats-new-submit,
1426
+ .rtmedia-add-media-button {
1427
+ display: block;
1428
+ }
1429
+
1430
+ .rtm-drag-drop-active {
1431
+ border: 4px dashed green !important;
1432
+ display: block;
1433
+ height: 100%;
1434
+ opacity: 0.5;
1435
+ z-index: 9999;
1436
+ }
1437
+
1438
+ #rtm-drop-files-title {
1439
+ background: rgba(0, 0, 0, 0.2);
1440
+ display: none;
1441
+ font-size: 14px;
1442
+ height: 100%;
1443
+ padding: 20px;
1444
+ position: absolute;
1445
+ top: 0;
1446
+ width: 100%;
1447
+ }
1448
+
1449
+ #rtSelectPrivacy {
1450
+ float: right;
1451
+ }
1452
+
1453
+ .rtmedia-plupload-container {
1454
+ position: relative;
1455
+ float: left;
1456
+ }
1457
+
1458
+ .rtm-upload-button-wrapper {
1459
+ float: left;
1460
+ margin-right: 5px;
1461
+ }
1462
+
1463
+ #rtmedia-action-update {
1464
+ margin-right: 10px;
1465
+ }
1466
+
1467
+ .rtmedia-list-item.media-type-document, .rtmedia-list-item.media-type-music, .rtmedia-list-item.media-type-video {
1468
+ display: inline-block;
1469
+ }
1470
+
1471
+ .media-type-music .mejs-container {
1472
+ margin-bottom: 10px;
1473
+ }
1474
+
1475
+ .rtmedia-album-edit .rtm-checkbox-wrap {
1476
+ background: rgba(255, 255, 255, 0.9);
1477
+ height: 30px;
1478
+ line-height: 1;
1479
+ padding: 10px;
1480
+ position: absolute;
1481
+ z-index: 10;
1482
+ }
1483
+ .rtmedia-album-edit .rtmedia-item-selector {
1484
+ position: relative;
1485
+ top: -7px;
1486
+ }
1487
+
1488
+ .rtm-single-actions.rtm-item-actions {
1489
+ float: none;
1490
+ }
1491
+
1492
+ /*------------------------------------------------------------------------------
1493
+ 14.0 - Media Screen
1494
+ ------------------------------------------------------------------------------*/
1495
+ .media-item .describe {
1496
+ border-collapse: collapse;
1497
+ width: 100%;
1498
+ border-top-style: solid;
1499
+ border-top-width: 1px;
1500
+ clear: both;
1501
+ cursor: default;
1502
+ }
1503
+
1504
+ .media-item.media-blank .describe {
1505
+ border: 0;
1506
+ }
1507
+
1508
+ .media-item .describe th {
1509
+ vertical-align: top;
1510
+ text-align: left;
1511
+ padding: 5px 10px 10px;
1512
+ width: 140px;
1513
+ }
1514
+
1515
+ .media-item .describe .align th {
1516
+ padding-top: 0;
1517
+ }
1518
+
1519
+ .media-item .media-item-info tr {
1520
+ background-color: transparent;
1521
+ }
1522
+
1523
+ .media-item .describe td {
1524
+ padding: 0 8px 8px 0;
1525
+ vertical-align: top;
1526
+ }
1527
+
1528
+ .media-item thead.media-item-info td {
1529
+ padding: 4px 10px 0;
1530
+ }
1531
+
1532
+ .media-item .media-item-info .A1B1 {
1533
+ padding: 0 0 0 10px;
1534
+ }
1535
+
1536
+ .media-item td.savesend {
1537
+ padding-bottom: 15px;
1538
+ }
1539
+
1540
+ .media-item .thumbnail {
1541
+ max-height: 128px;
1542
+ max-width: 128px;
1543
+ }
1544
+
1545
+ #wpbody-content #async-upload-wrap a {
1546
+ display: none;
1547
+ }
1548
+
1549
+ .media-upload-form {
1550
+ margin-top: 20px;
1551
+ }
1552
+
1553
+ .media-upload-form td label {
1554
+ margin-right: 6px;
1555
+ margin-left: 2px;
1556
+ }
1557
+
1558
+ .media-upload-form .align .field label {
1559
+ display: inline;
1560
+ padding: 0 0 0 23px;
1561
+ margin: 0 1em 0 3px;
1562
+ font-weight: bold;
1563
+ }
1564
+
1565
+ .media-upload-form tr.image-size label {
1566
+ margin: 0 0 0 5px;
1567
+ font-weight: bold;
1568
+ }
1569
+
1570
+ .media-upload-form th.label label {
1571
+ font-weight: bold;
1572
+ margin: 0.5em;
1573
+ font-size: 13px;
1574
+ }
1575
+
1576
+ .media-upload-form th.label label span {
1577
+ padding: 0 5px;
1578
+ }
1579
+
1580
+ abbr.required {
1581
+ border: medium none;
1582
+ text-decoration: none;
1583
+ }
1584
+
1585
+ .media-item .describe input[type="text"],
1586
+ .media-item .describe textarea {
1587
+ width: 460px;
1588
+ }
1589
+
1590
+ .media-item .describe p.help {
1591
+ margin: 0;
1592
+ padding: 0 0 0 5px;
1593
+ }
1594
+
1595
+ .media-item .edit-attachment,
1596
+ .describe-toggle-on,
1597
+ .describe-toggle-off {
1598
+ display: block;
1599
+ line-height: 36px;
1600
+ float: right;
1601
+ margin-right: 15px;
1602
+ }
1603
+
1604
+ .media-item .describe-toggle-off,
1605
+ .media-item.open .describe-toggle-on {
1606
+ display: none;
1607
+ }
1608
+
1609
+ .media-item.open .describe-toggle-off {
1610
+ display: block;
1611
+ }
1612
+
1613
+ #media-items .media-item {
1614
+ border-style: solid;
1615
+ border-width: 1px;
1616
+ min-height: 36px;
1617
+ position: relative;
1618
+ margin-top: -1px;
1619
+ width: 100%;
1620
+ }
1621
+
1622
+ #media-items {
1623
+ width: 623px;
1624
+ }
1625
+
1626
+ .media-new-php #media-items {
1627
+ margin: 1em 0;
1628
+ }
1629
+
1630
+ #media-items:empty {
1631
+ border: 0 none;
1632
+ }
1633
+
1634
+ .media-item .filename {
1635
+ line-height: 36px;
1636
+ overflow: hidden;
1637
+ padding: 0 10px;
1638
+ }
1639
+
1640
+ .media-item .error-div {
1641
+ padding-left: 10px;
1642
+ }
1643
+
1644
+ .media-item .pinkynail {
1645
+ float: left;
1646
+ margin: 2px 2px 0;
1647
+ max-width: 40px;
1648
+ max-height: 32px;
1649
+ }
1650
+
1651
+ .media-item .startopen,
1652
+ .media-item .startclosed {
1653
+ display: none;
1654
+ }
1655
+
1656
+ .media-item .original {
1657
+ position: relative;
1658
+ height: 34px;
1659
+ }
1660
+
1661
+ .media-item .progress {
1662
+ float: right;
1663
+ height: 22px;
1664
+ margin: 6px 10px 0 0;
1665
+ width: 200px;
1666
+ line-height: 2em;
1667
+ padding: 0;
1668
+ overflow: hidden;
1669
+ margin-bottom: 2px;
1670
+ border: 1px solid #d1d1d1;
1671
+ background: #f7f7f7;
1672
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
1673
+ background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
1674
+ background-image: linear-gradient(to top, #fff, #f7f7f7);
1675
+ border-radius: 3px;
1676
+ box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
1677
+ }
1678
+
1679
+ .media-item .bar {
1680
+ z-index: 9;
1681
+ width: 0;
1682
+ height: 100%;
1683
+ margin-top: -24px;
1684
+ background-color: #8cc1e9;
1685
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
1686
+ background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
1687
+ background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
1688
+ border-radius: 3px;
1689
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
1690
+ }
1691
+
1692
+ .media-item .progress .percent {
1693
+ z-index: 10;
1694
+ position: relative;
1695
+ width: 200px;
1696
+ padding: 0 8px;
1697
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
1698
+ color: rgba(0, 0, 0, 0.6);
1699
+ }
1700
+
1701
+ .upload-php .fixed .column-parent {
1702
+ width: 15%;
1703
+ }
1704
+
1705
+ .js .html-uploader #plupload-upload-ui {
1706
+ display: none;
1707
+ }
1708
+
1709
+ .js .html-uploader #html-upload-ui {
1710
+ display: block;
1711
+ }
1712
+
1713
+ .media-upload-form .media-item.error {
1714
+ margin: 0;
1715
+ padding: 0;
1716
+ }
1717
+
1718
+ .media-upload-form .media-item.error p,
1719
+ .media-item .error-div {
1720
+ line-height: 16px;
1721
+ margin: 5px 10px;
1722
+ padding: 0;
1723
+ }
1724
+
1725
+ .media-item .error-div a.dismiss {
1726
+ display: block;
1727
+ float: right;
1728
+ margin: 5px 4px 0 15px;
1729
+ }
1730
+
1731
+ /*------------------------------------------------------------------------------
1732
+ 14.1 - Media Library
1733
+ ------------------------------------------------------------------------------*/
1734
+ .find-box {
1735
+ width: 600px;
1736
+ height: 300px;
1737
+ overflow: hidden;
1738
+ padding: 33px 0 51px;
1739
+ position: absolute;
1740
+ z-index: 1000;
1741
+ }
1742
+
1743
+ .find-box-head {
1744
+ cursor: move;
1745
+ font-weight: bold;
1746
+ height: 2em;
1747
+ line-height: 2em;
1748
+ padding: 1px 12px;
1749
+ position: absolute;
1750
+ top: 5px;
1751
+ width: 100%;
1752
+ }
1753
+
1754
+ .find-box-inside {
1755
+ overflow: auto;
1756
+ padding: 6px;
1757
+ height: 100%;
1758
+ }
1759
+
1760
+ .find-box-search {
1761
+ overflow: hidden;
1762
+ padding: 9px;
1763
+ position: relative;
1764
+ }
1765
+
1766
+ .find-box-search .spinner {
1767
+ float: none;
1768
+ left: 125px;
1769
+ position: absolute;
1770
+ top: 9px;
1771
+ }
1772
+
1773
+ #find-posts-input {
1774
+ float: left;
1775
+ width: 140px;
1776
+ height: 24px;
1777
+ }
1778
+
1779
+ #find-posts-search {
1780
+ float: left;
1781
+ margin: 1px 4px 0 3px;
1782
+ }
1783
+
1784
+ #find-posts-response {
1785
+ margin: 8px 0;
1786
+ padding: 0 1px 6px;
1787
+ }
1788
+
1789
+ #find-posts-response table {
1790
+ width: 100%;
1791
+ }
1792
+
1793
+ #find-posts-response .found-radio {
1794
+ padding: 3px 0 0 8px;
1795
+ width: 15px;
1796
+ }
1797
+
1798
+ .find-box-buttons {
1799
+ padding: 8px;
1800
+ overflow: hidden;
1801
+ }
1802
+
1803
+ .find-box #resize-se {
1804
+ position: absolute;
1805
+ right: 1px;
1806
+ bottom: 1px;
1807
+ }
1808
+
1809
+ .ui-find-overlay {
1810
+ position: absolute;
1811
+ top: 0;
1812
+ left: 0;
1813
+ background-color: #000;
1814
+ opacity: 0.6;
1815
+ filter: alpha(opacity=60);
1816
+ }
1817
+
1818
+ ul#dismissed-updates {
1819
+ display: none;
1820
+ }
1821
+
1822
+ form.upgrade {
1823
+ margin-top: 8px;
1824
+ }
1825
+
1826
+ form.upgrade .hint {
1827
+ font-style: italic;
1828
+ font-size: 85%;
1829
+ margin: -0.5em 0 2em 0;
1830
+ }
1831
+
1832
+ #poststuff .inside .the-tagcloud {
1833
+ margin: 5px 0 10px;
1834
+ padding: 8px;
1835
+ border-width: 1px;
1836
+ border-style: solid;
1837
+ line-height: 1.8em;
1838
+ word-spacing: 3px;
1839
+ border-radius: 6px;
1840
+ }
1841
+
1842
+ .drag-drop #drag-drop-area {
1843
+ border: 4px dashed #DDDDDD;
1844
+ height: 200px;
1845
+ }
1846
+
1847
+ .drag-drop .drag-drop-inside {
1848
+ margin: 70px auto 0;
1849
+ width: 250px;
1850
+ }
1851
+
1852
+ .drag-drop-inside p {
1853
+ color: #aaa;
1854
+ font-size: 14px;
1855
+ margin: 5px 0;
1856
+ display: none;
1857
+ }
1858
+
1859
+ .drag-drop .drag-drop-inside p {
1860
+ text-align: center;
1861
+ }
1862
+
1863
+ .drag-drop-inside p.drag-drop-info {
1864
+ font-size: 20px;
1865
+ }
1866
+
1867
+ .drag-drop .drag-drop-inside p,
1868
+ .drag-drop-inside p.drag-drop-buttons {
1869
+ display: block;
1870
+ }
1871
+
1872
+ /*
1873
+ #drag-drop-area:-moz-drag-over {
1874
+ border-color: #83b4d8;
1875
+ }
1876
+ borger color while dragging a file over the uploader drop area */
1877
+ .drag-drop.drag-over #drag-drop-area {
1878
+ border-color: #83b4d8;
1879
+ }
1880
+
1881
+ #plupload-upload-ui {
1882
+ position: relative;
1883
+ }
1884
+
1885
+ /*------------------------------------------------------------------------------
1886
+ 14.2 - Image Editor
1887
+ ------------------------------------------------------------------------------*/
1888
+ .describe .image-editor {
1889
+ vertical-align: top;
1890
+ }
1891
+
1892
+ .imgedit-wrap {
1893
+ position: relative;
1894
+ }
1895
+
1896
+ .imgedit-settings p {
1897
+ margin: 8px 0;
1898
+ }
1899
+
1900
+ .post-php .imgedit-wrap table {
1901
+ width: 100%;
1902
+ }
1903
+
1904
+ .describe .imgedit-wrap table td,
1905
+ .wp_attachment_holder .imgedit-wrap table td {
1906
+ vertical-align: top;
1907
+ padding-top: 0;
1908
+ }
1909
+
1910
+ .describe .imgedit-wrap table td.imgedit-settings {
1911
+ padding: 0 5px;
1912
+ }
1913
+
1914
+ .wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
1915
+ width: 250px;
1916
+ }
1917
+
1918
+ td.imgedit-settings input {
1919
+ margin-top: 0;
1920
+ vertical-align: middle;
1921
+ }
1922
+
1923
+ .imgedit-wait {
1924
+ position: absolute;
1925
+ top: 0;
1926
+ background: #fff url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat scroll 22px 10px;
1927
+ background-size: 16px 16px;
1928
+ opacity: 0.7;
1929
+ filter: alpha(opacity=70);
1930
+ width: 100%;
1931
+ height: 500px;
1932
+ display: none;
1933
+ }
1934
+
1935
+ .spinner {
1936
+ background: url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat;
1937
+ background-size: 16px 16px;
1938
+ display: none;
1939
+ float: right;
1940
+ opacity: 0.7;
1941
+ filter: alpha(opacity=70);
1942
+ width: 16px;
1943
+ height: 16px;
1944
+ margin: 5px 5px 0;
1945
+ }
1946
+
1947
+ .no-float {
1948
+ float: none;
1949
+ }
1950
+
1951
+ .media-disabled,
1952
+ .imgedit-settings .disabled {
1953
+ color: grey;
1954
+ }
1955
+
1956
+ .wp_attachment_image,
1957
+ .A1B1 {
1958
+ overflow: hidden;
1959
+ }
1960
+
1961
+ .wp_attachment_image .button,
1962
+ .A1B1 .button {
1963
+ float: left;
1964
+ }
1965
+
1966
+ .no-js .wp_attachment_image .button {
1967
+ display: none;
1968
+ }
1969
+
1970
+ .wp_attachment_image .spinner,
1971
+ .A1B1 .spinner {
1972
+ float: left;
1973
+ padding: 0 4px 4px;
1974
+ vertical-align: bottom;
1975
+ }
1976
+
1977
+ .imgedit-menu {
1978
+ margin: 0 0 12px;
1979
+ min-width: 300px;
1980
+ }
1981
+
1982
+ .imgedit-menu div {
1983
+ float: left;
1984
+ width: 32px;
1985
+ height: 32px;
1986
+ }
1987
+
1988
+ .imgedit-crop-wrap {
1989
+ position: relative;
1990
+ }
1991
+
1992
+ .imgedit-crop {
1993
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -9px -31px;
1994
+ margin: 0 8px 0 0;
1995
+ }
1996
+
1997
+ .imgedit-crop.disabled:hover {
1998
+ background-position: -9px -31px;
1999
+ }
2000
+
2001
+ .imgedit-crop:hover {
2002
+ background-position: -9px -1px;
2003
+ }
2004
+
2005
+ .imgedit-rleft {
2006
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -46px -31px;
2007
+ margin: 0 3px;
2008
+ }
2009
+
2010
+ .imgedit-rleft.disabled:hover {
2011
+ background-position: -46px -31px;
2012
+ }
2013
+
2014
+ .imgedit-rleft:hover {
2015
+ background-position: -46px -1px;
2016
+ }
2017
+
2018
+ .imgedit-rright {
2019
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -77px -31px;
2020
+ margin: 0 8px 0 3px;
2021
+ }
2022
+
2023
+ .imgedit-rright.disabled:hover {
2024
+ background-position: -77px -31px;
2025
+ }
2026
+
2027
+ .imgedit-rright:hover {
2028
+ background-position: -77px -1px;
2029
+ }
2030
+
2031
+ .imgedit-flipv {
2032
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -115px -31px;
2033
+ margin: 0 3px;
2034
+ }
2035
+
2036
+ .imgedit-flipv.disabled:hover {
2037
+ background-position: -115px -31px;
2038
+ }
2039
+
2040
+ .imgedit-flipv:hover {
2041
+ background-position: -115px -1px;
2042
+ }
2043
+
2044
+ .imgedit-fliph {
2045
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -147px -31px;
2046
+ margin: 0 8px 0 3px;
2047
+ }
2048
+
2049
+ .imgedit-fliph.disabled:hover {
2050
+ background-position: -147px -31px;
2051
+ }
2052
+
2053
+ .imgedit-fliph:hover {
2054
+ background-position: -147px -1px;
2055
+ }
2056
+
2057
+ .imgedit-undo {
2058
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -184px -31px;
2059
+ margin: 0 3px;
2060
+ }
2061
+
2062
+ .imgedit-undo.disabled:hover {
2063
+ background-position: -184px -31px;
2064
+ }
2065
+
2066
+ .imgedit-undo:hover {
2067
+ background-position: -184px -1px;
2068
+ }
2069
+
2070
+ .imgedit-redo {
2071
+ background: transparent url("../../../../../../wp-admin/images/imgedit-icons.png") no-repeat scroll -215px -31px;
2072
+ margin: 0 8px 0 3px;
2073
+ }
2074
+
2075
+ .imgedit-redo.disabled:hover {
2076
+ background-position: -215px -31px;
2077
+ }
2078
+
2079
+ .imgedit-redo:hover {
2080
+ background-position: -215px -1px;
2081
+ }
2082
+
2083
+ .imgedit-applyto img {
2084
+ margin: 0 8px 0 0;
2085
+ }
2086
+
2087
+ .imgedit-group h3 {
2088
+ font-size: 18px;
2089
+ }
2090
+ .imgedit-group .dashicons {
2091
+ border: 0;
2092
+ line-height: 1.2;
2093
+ }
2094
+
2095
+ .imgedit-group-top {
2096
+ margin: 5px 0;
2097
+ }
2098
+
2099
+ .imgedit-applyto .imgedit-label {
2100
+ padding: 2px 0 0;
2101
+ display: block;
2102
+ }
2103
+
2104
+ .imgedit-help {
2105
+ display: none;
2106
+ font-style: italic;
2107
+ margin-bottom: 8px;
2108
+ }
2109
+
2110
+ a.imgedit-help-toggle {
2111
+ text-decoration: none;
2112
+ }
2113
+
2114
+ .form-table td.imgedit-response {
2115
+ padding: 0;
2116
+ }
2117
+
2118
+ .imgedit-submit {
2119
+ margin: 8px 0;
2120
+ }
2121
+
2122
+ .imgedit-submit-btn {
2123
+ margin-left: 20px;
2124
+ }
2125
+
2126
+ .imgedit-wrap .nowrap {
2127
+ white-space: nowrap;
2128
+ }
2129
+
2130
+ span.imgedit-scale-warn {
2131
+ color: red;
2132
+ font-size: 20px;
2133
+ font-style: normal;
2134
+ visibility: hidden;
2135
+ vertical-align: middle;
2136
+ }
2137
+
2138
+ .wp_attachment_details {
2139
+ margin-bottom: 20px;
2140
+ }
2141
+
2142
+ .imgedit-menu div {
2143
+ border-color: #d5d5d5;
2144
+ background-color: #f1f1f1;
2145
+ }
2146
+
2147
+ .imgedit-menu div:hover {
2148
+ border-color: #c1c1c1;
2149
+ background-color: #eaeaea;
2150
+ }
2151
+
2152
+ .imgedit-menu div.disabled {
2153
+ border-color: #ccc;
2154
+ background-color: #ddd;
2155
+ filter: alpha(opacity=50);
2156
+ opacity: 0.5;
2157
+ }
2158
+
2159
+ /*------------------------------------------------------------------------------
2160
+ Custom Styles
2161
+ ------------------------------------------------------------------------------*/
2162
+ .bp-media-image-editor-cotnainer {
2163
+ margin-top: 35px;
2164
+ }
2165
+
2166
+ .wp_attachment_image .bp-media-image-edit {
2167
+ float: left;
2168
+ }
2169
+
2170
+ .wp_attachment_image .spinner {
2171
+ display: none;
2172
+ }
2173
+
2174
+ .bp-media-image-editor-cotnainer .hidden {
2175
+ display: none;
2176
+ }
2177
+
2178
+ .bp-media-image-editor-cotnainer div.updated {
2179
+ margin: 5px 0 15px;
2180
+ background-color: #ffffe0;
2181
+ border-color: #e6db55;
2182
+ padding: 0 .6em;
2183
+ border-radius: 3px;
2184
+ border-width: 1px;
2185
+ border-style: solid;
2186
+ }
2187
+
2188
+ .bp-media-image-editor-cotnainer div.updated p {
2189
+ margin: .5em 0;
2190
+ padding: 2px;
2191
+ }
2192
+
2193
+ .rtm-media-gallery-uploader {
2194
+ display: none;
2195
+ }
2196
+
2197
+ .rtmedia-uploader .drag-drop {
2198
+ border: 4px dashed #DDD;
2199
+ text-align: center;
2200
+ background: #fafafa;
2201
+ overflow: hidden;
2202
+ color: #AAAAAA;
2203
+ margin-top: 20px;
2204
+ padding: 25px 0;
2205
+ }
2206
+ .rtmedia-uploader .drag-drop.dragover {
2207
+ border-color: #83b4d8;
2208
+ }
2209
+ .rtmedia-uploader .drag-drop .drag-drop-info {
2210
+ font-size: 20px;
2211
+ line-height: 24px;
2212
+ }
2213
+ .rtmedia-uploader .drag-drop .rtm-select-files span {
2214
+ vertical-align: middle;
2215
+ }
2216
+ .rtmedia-uploader .drag-drop .rtm-seperator {
2217
+ margin: 0px 20px;
2218
+ }
2219
+ .rtmedia-uploader .drag-drop .start-media-upload {
2220
+ display: none;
2221
+ margin-top: 20px;
2222
+ }
2223
+ .rtmedia-uploader .drag-drop .rtm-file-size-limit {
2224
+ vertical-align: middle;
2225
+ font-size: 16px;
2226
+ line-height: 24px;
2227
+ }
2228
+
2229
+ .rtm-uploader-main-wrapper .rtm-uploader-tabs {
2230
+ margin-bottom: 10px;
2231
+ text-align: left;
2232
+ }
2233
+ .rtm-uploader-main-wrapper ul {
2234
+ border-bottom: 1px solid #CCC;
2235
+ }
2236
+ .rtm-uploader-main-wrapper li {
2237
+ margin: 0 0 -1px 10px;
2238
+ display: inline-block;
2239
+ padding: 5px 10px;
2240
+ line-height: 25px;
2241
+ background-color: #e4e4e4;
2242
+ border: 1px solid #CCC;
2243
+ }
2244
+ .rtm-uploader-main-wrapper li.active {
2245
+ background: transparent;
2246
+ border-left: 1px solid #CCC;
2247
+ border-top: 1px solid #CCC;
2248
+ border-right: 1px solid #CCC;
2249
+ border-bottom: 1px solid #fafafa;
2250
+ }
2251
+ .rtm-uploader-main-wrapper li:hover {
2252
+ cursor: pointer;
2253
+ }
2254
+
2255
+ .rtmedia-container .rtmedia-list {
2256
+ margin: 10px -5px;
2257
+ }
2258
+ .rtmedia-container .rtmedia-list .rtmedia-list-item {
2259
+ float: left;
2260
+ margin: 5px;
2261
+ position: relative;
2262
+ }
2263
+ .rtmedia-container .rtmedia-list .rtmedia-list-item > a {
2264
+ display: block;
2265
+ }
2266
+ .rtmedia-container .rtmedia-list .rtmedia_time {
2267
+ background-color: #000;
2268
+ color: #fff;
2269
+ display: inline-block;
2270
+ font-size: 11px;
2271
+ font-weight: bold;
2272
+ line-height: 14px;
2273
+ opacity: 0.75;
2274
+ padding: 0 4px;
2275
+ position: absolute;
2276
+ right: 2px;
2277
+ top: 2px;
2278
+ }
2279
+ .rtmedia-container .rtmedia-list img {
2280
+ vertical-align: top;
2281
+ }
2282
+ .rtmedia-container .rtmedia-list .rtmedia-item-title h4 {
2283
+ color: #666666;
2284
+ font-size: 12px;
2285
+ font-weight: normal;
2286
+ margin: 5px 0 0;
2287
+ overflow: hidden;
2288
+ text-align: center;
2289
+ text-overflow: ellipsis;
2290
+ white-space: nowrap;
2291
+ }
2292
+
2293
+ .rtm-load-more {
2294
+ background: #EEEEEE;
2295
+ text-align: center;
2296
+ }
2297
+ .rtmedia-container .rtm-load-more a {
2298
+ border: 0;
2299
+ padding: 10px 0;
2300
+ }
2301
+ .rtm-load-more .rtm-media-loading {
2302
+ padding: 10px 0;
2303
+ }
2304
+
2305
+ .rtm-media-options {
2306
+ line-height: 1.4;
2307
+ margin-bottom: 10px;
2308
+ }
2309
+ .rtm-media-options > div {
2310
+ display: inline-block;
2311
+ cursor: pointer;
2312
+ }
2313
+ .rtm-media-options .rtm-media-options-list {
2314
+ margin-right: 5px;
2315
+ padding-right: 10px;
2316
+ position: relative;
2317
+ }
2318
+ .rtm-media-options > * {
2319
+ border-right: 1px solid #999;
2320
+ }
2321
+ .rtm-media-options > *:last-child {
2322
+ border-right: none;
2323
+ }
2324
+ .rtm-media-options .dashicons {
2325
+ font-size: inherit;
2326
+ line-height: 1.4;
2327
+ }
2328
+
2329
+ .rtmedia-upload-media-link {
2330
+ cursor: pointer;
2331
+ }
2332
+
2333
+ .rtm-album-privacy span {
2334
+ font-size: 16px;
2335
+ display: inline-block;
2336
+ margin: 0 20px 20px 20px;
2337
+ vertical-align: top;
2338
+ }
2339
+ .rtm-album-privacy label {
2340
+ margin-right: 8px;
2341
+ }
2342
+ .rtm-album-privacy .dashicons {
2343
+ font-size: 16px;
2344
+ line-height: 1.6;
2345
+ margin-right: 5px;
2346
+ }
2347
+
2348
+ #rtm-media-options-list .rtmedia-delete-album {
2349
+ background: transparent;
2350
+ border: 0;
2351
+ color: #FFFFFF;
2352
+ font-family: inherit;
2353
+ font-size: inherit;
2354
+ font-weight: inherit;
2355
+ padding: 0;
2356
+ text-transform: inherit;
2357
+ }
2358
+ #rtm-media-options-list .rtmedia-delete-album:hover {
2359
+ background: transparent;
2360
+ border: 0;
2361
+ color: #FFFFFF;
2362
+ }
2363
+
2364
+ #buddypress .mejs-controls button {
2365
+ padding: 4px 8px;
2366
+ border: none;
2367
+ background: transparent url("../../../lib/media-element/controls.png") no-repeat;
2368
+ }
2369
+ #buddypress .mejs-controls .mejs-play button {
2370
+ background-position: 0 0;
2371
+ }
2372
+ #buddypress .mejs-controls .mejs-pause button {
2373
+ background-position: 0 -16px;
2374
+ }
2375
+ #buddypress .mejs-controls .mejs-unmute button {
2376
+ background-position: -16px 0;
2377
+ }
2378
+ #buddypress .mejs-controls .mejs-mute button {
2379
+ background-position: -16px -16px;
2380
+ }
2381
+ #buddypress .mejs-controls .mejs-fullscreen-button button {
2382
+ background-position: -32px 0;
2383
+ }
2384
+ #buddypress .mejs-controls .mejs-unfullscreen button {
2385
+ background-position: -32px -16px;
2386
+ }
2387
+
2388
+ .mejs-container .mejs-controls .mejs-time {
2389
+ padding: 10px 3px 0;
2390
+ }
2391
+
2392
+ @media only screen and (min-width: 1025px) {
2393
+ .mfp-content .rtm-lightbox-container {
2394
+ display: table;
2395
+ table-layout: fixed;
2396
+ width: 100%;
2397
+ }
2398
+ .mfp-content .rtm-single-media {
2399
+ display: table-cell;
2400
+ width: 66.6667%;
2401
+ }
2402
+ .mfp-content .rtm-single-meta {
2403
+ display: table-cell;
2404
+ width: 33.3333%;
2405
+ }
2406
+ .mfp-content .rtmedia-item-comments {
2407
+ max-height: 330px;
2408
+ overflow-x: hidden;
2409
+ overflow-y: auto;
2410
+ }
2411
+ }
2412
+ .rtl #rtSelectPrivacy {
2413
+ float: left;
2414
+ }
2415
+ .rtl .rtmedia-plupload-container {
2416
+ float: right;
2417
+ }
2418
+ .rtl .rtm-upload-button-wrapper {
2419
+ float: right;
2420
+ }
2421
+ .rtl #whats-new-post-in-box {
2422
+ float: right;
2423
+ }
2424
+ .rtl .describe-toggle-off {
2425
+ float: left;
2426
+ }
2427
+ .rtl .media-item .pinkynail {
2428
+ float: right;
2429
+ }
2430
+ .rtl .media-item .progress {
2431
+ float: left;
2432
+ }
2433
+ .rtl .media-item .error-div a.dismiss {
2434
+ float: left;
2435
+ }
2436
+ .rtl #find-posts-input {
2437
+ float: right;
2438
+ }
2439
+ .rtl #find-posts-search {
2440
+ float: right;
2441
+ }
2442
+ .rtl .spinner {
2443
+ float: left;
2444
+ }
2445
+ .rtl .wp_attachment_image .button, .rtl .A1B1 .button {
2446
+ float: right;
2447
+ }
2448
+ .rtl .wp_attachment_image .spinner, .rtl .A1B1 .spinner {
2449
+ float: right;
2450
+ }
2451
+ .rtl .imgedit-menu div {
2452
+ float: right;
2453
+ }
2454
+ .rtl .wp_attachment_image .bp-media-image-edit {
2455
+ float: right;
2456
+ }
2457
+ .rtl .rtmedia-container .rtmedia-list .rtmedia-list-item {
2458
+ float: right;
2459
+ }
2460
+ .rtl #buddypress #rtm-media-options-list .rtm-options .button {
2461
+ float: right;
2462
+ }
2463
+ .rtl .rtm-ltb-title {
2464
+ float: right;
2465
+ }
2466
+ .rtl .rtm-item-actions {
2467
+ float: left;
2468
+ }
2469
+ .rtl .rtm-item-actions > div, .rtl .rtm-item-actions > form {
2470
+ float: right;
2471
+ }
2472
+ .rtl .userprofile {
2473
+ float: right;
2474
+ }
2475
+ .rtl .rtmedia-actions-before-comments > span {
2476
+ float: right;
2477
+ }
2478
+ .rtl .rtmedia-comment-user-pic {
2479
+ float: right;
2480
+ }
2481
+ .rtl .rtmedia-media-name {
2482
+ float: right;
2483
+ }
2484
+ .rtl #rtmedia-uploader-form .rtm-plupload-list li, .rtl #rtmedia_uploader_filelist li {
2485
+ float: right;
2486
+ }
2487
+ .rtl .rtm-page-number {
2488
+ float: right;
2489
+ }
2490
+ .rtl .rtm-page-number .rtmedia-page-link {
2491
+ float: right;
2492
+ }
2493
+ .rtl .rtm-pagination {
2494
+ float: right;
2495
+ }
2496
+ .rtl .rtm-pagination .rtm-paginate {
2497
+ float: left;
2498
+ }
2499
+ .rtl .rtm-tabs li {
2500
+ float: right;
2501
+ }
2502
+ .rtl .alignleft {
2503
+ float: right;
2504
+ }
2505
+ .rtl .alignright {
2506
+ float: left;
2507
+ }
app/assets/css/rtmedia.min.css ADDED
@@ -0,0 +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{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%}.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-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:2;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:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-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;-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-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:180px;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}.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-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}.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}.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}.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}#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}@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/assets/css/sass/_magnific.scss CHANGED
@@ -191,7 +191,7 @@ button::-moz-focus-inner {
191
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
192
  opacity: 0;
193
  z-index: 10;
194
- @include transition(all 300ms ease-out);
195
 
196
  .rtm-single-media:hover & {
197
  opacity: 1;
191
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
192
  opacity: 0;
193
  z-index: 10;
194
+ transition: all 300ms ease-out;
195
 
196
  .rtm-single-media:hover & {
197
  opacity: 1;
app/assets/css/sass/_media-tab.scss CHANGED
@@ -143,24 +143,22 @@
143
  }
144
 
145
  .rtm-media-options-list {
146
- margin-right: 10px;
147
  padding-right: 10px;
148
  position: relative;
149
-
150
- &:after {
151
- background: #999;
152
- content: ' ';
153
- bottom: 3px;
154
- position: absolute;
155
- height: 14px;
156
- right: 0;
157
- width: 1px;
158
- }
159
  }
160
 
 
 
 
 
 
 
 
 
161
  .dashicons {
162
  font-size: inherit;
163
- line-height: 1.6;
164
  }
165
  }
166
 
@@ -183,7 +181,7 @@
183
 
184
  .dashicons {
185
  font-size: 16px;
186
- line-height: 1.5;
187
  margin-right: 5px;
188
  }
189
  }
143
  }
144
 
145
  .rtm-media-options-list {
146
+ margin-right: 5px;
147
  padding-right: 10px;
148
  position: relative;
 
 
 
 
 
 
 
 
 
 
149
  }
150
 
151
+ & > * {
152
+ border-right: 1px solid #999;
153
+
154
+ &:last-child {
155
+ border-right: none;
156
+ }
157
+ }
158
+
159
  .dashicons {
160
  font-size: inherit;
161
+ line-height: 1.4;
162
  }
163
  }
164
 
181
 
182
  .dashicons {
183
  font-size: 16px;
184
+ line-height: 1.6;
185
  margin-right: 5px;
186
  }
187
  }
app/assets/css/sass/_popup.scss CHANGED
@@ -26,6 +26,19 @@
26
  margin: 0 auto;
27
  max-width: inherit;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
30
 
31
  .rtm-ltb-action-container {
@@ -38,7 +51,7 @@
38
  padding: 0 10px;
39
  position: absolute;
40
  width: 100%;
41
- @include transition(all 300ms ease-out);
42
 
43
 
44
  .rtm-single-media:hover & {
26
  margin: 0 auto;
27
  max-width: inherit;
28
  }
29
+
30
+ .rtmedia-message-container {
31
+ position: absolute;
32
+ top: 45%;
33
+ left:0;
34
+ right:0;
35
+ margin-left:auto;
36
+ margin-right:auto;
37
+
38
+ @media (max-device-width: 640px) {
39
+ top: 25%;
40
+ }
41
+ }
42
  }
43
 
44
  .rtm-ltb-action-container {
51
  padding: 0 10px;
52
  position: absolute;
53
  width: 100%;
54
+ transition: all 300ms ease-out;
55
 
56
 
57
  .rtm-single-media:hover & {
app/assets/css/sass/_rtm.scss ADDED
@@ -0,0 +1,403 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // rtMedia Defaults
2
+
3
+ .rtmedia-container {
4
+ -webkit-box-sizing: border-box;
5
+ -moz-box-sizing: border-box;
6
+ box-sizing: border-box;
7
+
8
+ * {
9
+ &,
10
+ &:before,
11
+ &:after {
12
+ -webkit-box-sizing: inherit;
13
+ -moz-box-sizing: inherit;
14
+ box-sizing: inherit;
15
+ }
16
+
17
+ }
18
+ }
19
+
20
+
21
+ .rtmedia-list {
22
+
23
+ // Increased specificity with double class to overwrite defualt styles. 2012
24
+ &.rtmedia-list {
25
+ list-style: none;
26
+ margin: 0; // theme 2015/2014
27
+ padding: 0; // theme 2013
28
+ }
29
+ }
30
+
31
+ .rtmedia-list-item > a {
32
+ border: 0;
33
+ display: inline-block;
34
+ text-decoration: none; // 2012
35
+
36
+ &:focus {
37
+ outline: 0; // theme 2015
38
+ }
39
+
40
+ & + p {
41
+ display: none;
42
+ }
43
+
44
+ .rtmedia-item-thumbnail {
45
+ img {
46
+ display: inline-block; // Remove extra white space below image.
47
+ }
48
+ }
49
+ }
50
+
51
+ // Uploader
52
+ #rtmedia-uploader-form .rtm-plupload-list, #rtmedia_uploader_filelist {
53
+ list-style: none;
54
+ margin-left: -4px;
55
+ margin-right: -4px;
56
+ padding-left: 0;
57
+ padding-top: 10px;
58
+
59
+ li {
60
+ background: $light;
61
+ float: left;
62
+ margin: 4px;
63
+ max-width: 110px;
64
+ padding: 5px;
65
+ position: relative;
66
+
67
+ &.upload-error {
68
+ border: 1px solid red;
69
+ }
70
+ }
71
+
72
+ img {
73
+ max-width: 100%;
74
+ }
75
+
76
+ canvas {
77
+ display: block;
78
+ max-width: 100%;
79
+ }
80
+ }
81
+
82
+ .rtm-plupload-list {
83
+ &:empty {
84
+ display: none;
85
+ }
86
+ }
87
+
88
+ .rtmedia-uploader-div,
89
+ .rtmedia-uploader {
90
+ clear: both;
91
+ }
92
+
93
+ button#rtmedia-add-media-button-post-update {
94
+ padding: 3px 6px;
95
+
96
+ .dashicons {
97
+ font-size: 18px;
98
+ line-height: 20px;
99
+ }
100
+ }
101
+
102
+ .plupload_file_name {
103
+ font-size: 11px;
104
+ font-weight: bold;
105
+ line-height: 1.2;
106
+ overflow: hidden;
107
+ text-overflow: ellipsis;
108
+ white-space: nowrap;
109
+ }
110
+
111
+ .plupload_file_size {
112
+ color: #666;
113
+ font-size: 10px;
114
+ }
115
+
116
+ .plupload_file_action {
117
+ background: $light;
118
+ position: absolute;
119
+ height: 18px;
120
+ right: 0;
121
+ top: 0;
122
+ width: 18px;
123
+ z-index: 10;
124
+
125
+ .dashicons {
126
+ color: $error;
127
+ cursor: pointer;
128
+ font-size: 16px;
129
+ height: 18px;
130
+ padding: 2px 1px;
131
+ width: 18px;
132
+ }
133
+ }
134
+
135
+ .plupload_file_status {
136
+ height: 8px;
137
+ overflow: hidden;
138
+ position: relative;
139
+ }
140
+
141
+ .plupload_file_progress {
142
+ background: $success;
143
+ height: 4px;
144
+ position: absolute;
145
+ top: 0;
146
+ }
147
+
148
+ .rtm-form {
149
+ .rtm-field-wrap {
150
+ margin-bottom: 20px;
151
+ }
152
+ }
153
+
154
+ // Pagination
155
+ .rtmedia_next_prev {
156
+ padding: 0 10px;
157
+ }
158
+
159
+ .rtm-page-number {
160
+ float: left;
161
+
162
+ .rtm-label {
163
+ line-height: 30px;
164
+ }
165
+
166
+ .rtm-label,
167
+ .rtm-go-to-num,
168
+ .rtmedia-page-link {
169
+ float: left;
170
+ }
171
+ }
172
+
173
+ .rtm-pagination {
174
+
175
+ background: transparent;
176
+ border: none;
177
+ color: #888;
178
+ font-size: small;
179
+ margin: 0;
180
+ position: relative;
181
+ display: block;
182
+ float: left;
183
+ width: 100%;
184
+ padding: 10px 0;
185
+
186
+ .rtm-paginate {
187
+
188
+ float: right;
189
+ font-size: 15px;
190
+
191
+ a, span {
192
+ display: inline-block;
193
+ line-height: 1;
194
+ margin: 0 2px;
195
+ padding: 8px;
196
+ text-decoration: none; //2012
197
+ }
198
+
199
+ a.rtmedia-page-link {
200
+ padding: 8px;
201
+ }
202
+ }
203
+
204
+ .dashicons {
205
+ font-size: 14px;
206
+ height: auto;
207
+ line-height: 1.2;
208
+ margin: 0;
209
+ padding: 0;
210
+ width: auto;
211
+ }
212
+ }
213
+
214
+ #rtmedia_go_to_num {
215
+ font-size: 16px;
216
+ margin: 0 5px;
217
+ padding: 4px 5px;
218
+ width: 80px;
219
+ }
220
+
221
+ .rtmedia-upload-not-allowed {
222
+ background-color: #fcf8e3;
223
+ border-bottom: 1px solid #EEE;
224
+ color: #c09853;
225
+ margin-bottom: 20px;
226
+ padding: 10px 15px;
227
+ }
228
+
229
+ .plupload_file_name {
230
+ position: relative;
231
+
232
+ .dashicons {
233
+ background: $light;
234
+ color: $error;
235
+ cursor: pointer;
236
+ font-size: 14px;
237
+ height: auto;
238
+ padding: 0 2px 0 5px;
239
+ position: absolute;
240
+ right: 0;
241
+ top: 0;
242
+ width: auto;
243
+ }
244
+
245
+ .dashicons-yes {
246
+ color: $success;
247
+ }
248
+ }
249
+
250
+ // Gallery Items on hover actions
251
+ .rtmedia-gallery-item-actions {
252
+ background-color: rgba(0, 0, 0, 0.6);
253
+ opacity: 0;
254
+ position: absolute;
255
+ text-align: center;
256
+ transition: all ease-in-out 0.4s;
257
+ width: 100%;
258
+ z-index: 9;
259
+
260
+ // Image container
261
+ a {
262
+ border: 0;
263
+ box-shadow: 0 0 0;
264
+ color: #fff;
265
+ display: inline-block;
266
+ font-size: 12px;
267
+ outline: none;
268
+ padding: 4px;
269
+ text-align: left;
270
+ text-decoration: none;
271
+ text-transform: uppercase;
272
+ }
273
+
274
+ // Icons
275
+ .dashicons {
276
+ font-size: 17px;
277
+ margin-right: 2px;
278
+ position: relative;
279
+ top: 1px;
280
+ }
281
+
282
+ .dashicons-trash {
283
+ font-size: 15px;
284
+ }
285
+
286
+ }
287
+
288
+ // Hover actions
289
+ .rtm-pro-allow-action {
290
+ .rtmedia-list-item:hover {
291
+ .rtmedia-gallery-item-actions {
292
+ opacity: 1;
293
+ }
294
+
295
+ .rtmedia-bulk-edit-item-wrap + .rtmedia-gallery-item-actions {
296
+ opacity: 0;
297
+ }
298
+ }
299
+ }
300
+
301
+ // Footer Link
302
+ .rtmedia-footer-link {
303
+ clear: both;
304
+ overflow: hidden;
305
+ padding: 16px 0;
306
+ position: relative;
307
+ text-align: center;
308
+ }
309
+
310
+ //table form Media list edit tab
311
+
312
+ .rtmedia-text-link-decoration {
313
+ text-decoration: none;
314
+ &:hover {
315
+ text-decoration: underline;
316
+ }
317
+ }
318
+
319
+ .rtmedia-container .rtmedia-edit-list-media-table {
320
+ max-height: 300px;
321
+ overflow-y: auto;
322
+
323
+ thead {
324
+ tr {
325
+ background-color: #50A1D7;
326
+ }
327
+
328
+ th {
329
+ text-align: center;
330
+ color: #FFF;
331
+ }
332
+ }
333
+
334
+ tbody {
335
+ tr {
336
+ &:nth-child(odd) {
337
+ background: #FFF;
338
+ }
339
+ }
340
+
341
+ tr {
342
+ &:nth-child(even) {
343
+ background: #DCDCDC;
344
+ }
345
+ }
346
+ }
347
+ }
348
+
349
+ table.rtmedia-edit-media-list {
350
+ tr {
351
+ line-height: 30px;
352
+ th {
353
+ color: #333;
354
+ padding: 4px 10px;
355
+ line-height: 20px;
356
+ }
357
+ .rtm-edit-media-list-heading {
358
+ width: 44%;
359
+ }
360
+ .rtm-edit-media-list-title-heading {
361
+ width: 56%;
362
+ }
363
+
364
+ td.rtm-edit-media-list-edit,
365
+ td.rtm-edit-media-list-delete,
366
+ td.rtm-edit-media-list-title {
367
+ padding: 4px;
368
+ font-size: 14px;
369
+ line-height: 24px;
370
+
371
+ a,span {
372
+ @extend .rtmedia-text-link-decoration;
373
+ }
374
+ }
375
+
376
+ td.rtm-edit-media-list-title {
377
+
378
+ a {
379
+ text-decoration: none;
380
+ color: #333;
381
+ }
382
+ }
383
+
384
+ td.rtm-edit-media-list-edit {
385
+ text-align: center;
386
+
387
+ a {
388
+ color: #333;
389
+ font-size: 13px;
390
+ }
391
+ }
392
+
393
+ td.rtm-edit-media-list-delete {
394
+ text-align: center;
395
+
396
+ span {
397
+ color: #FF0000;
398
+ cursor: pointer;
399
+ font-size: 13px;
400
+ }
401
+ }
402
+ }
403
+ }
app/assets/css/sass/_utility.scss CHANGED
@@ -65,13 +65,23 @@
65
  display: none;
66
  }
67
 
68
- .rtmedia-success {
69
- background-color: #dff0d8;
70
- border-bottom: 1px solid #e7e7e7;
71
- color: #468847;
72
- margin: 10px 0;
73
  padding: 8px 14px 8px 14px;
74
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
76
 
77
  /*------------------------------------*\
65
  display: none;
66
  }
67
 
68
+ .rtmedia-success,
69
+ .rtmedia-warning {
70
+ margin: 10px 0;
 
 
71
  padding: 8px 14px 8px 14px;
72
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
73
+ border-bottom: 1px solid #e7e7e7;
74
+ cursor: pointer;
75
+ }
76
+
77
+ .rtmedia-success {
78
+ background-color: #dff0d8;
79
+ color: #468847;
80
+ }
81
+
82
+ .rtmedia-warning {
83
+ background-color: #F0D8DD;
84
+ color: #884646;
85
  }
86
 
87
  /*------------------------------------*\
app/assets/css/sass/rtmedia.scss ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // *** CSS Variables *** //
2
+ @import "variables";
3
+
4
+ // *** Utility Classes *** //
5
+ @import "utility";
6
+
7
+ // *** BuddyPress Overwites *** //
8
+ @import "buddypress";
9
+
10
+ // *** rtMedia Defaults *** //
11
+ @import "rtm";
12
+
13
+ // *** Tabs *** //
14
+ @import "tabs";
15
+
16
+ // *** Default Magnific Popup *** //
17
+ @import "magnific";
18
+
19
+ // *** Customize Magnific Popup *** //
20
+ @import "popup";
21
+
22
+ // *** Activity *** //
23
+ @import "activity";
24
+
25
+ // *** Album *** //
26
+ @import "album";
27
+
28
+ // *** Image Edit *** //
29
+ @import "img-edit";
30
+
31
+ // *** Media Tab *** //
32
+ @import "media-tab";
33
+
34
+ // *** Media Element *** //
35
+ @import "media-element";
36
+
37
+ // *** Responsive *** //
38
+ @import "responsive";
39
+
40
+ // *** RTL *** //
41
+ @import "rtl";
app/assets/js/rtMedia.backbone.js CHANGED
@@ -1136,6 +1136,13 @@ jQuery( document ).ready( function ( $ ) {
1136
  } catch ( e ) {
1137
 
1138
  }
 
 
 
 
 
 
 
1139
  $( that ).find( 'span' ).html( data.next );
1140
  $( '.rtm-featured-loading' ).remove();
1141
  $( that ).removeAttr( 'disabled' );
1136
  } catch ( e ) {
1137
 
1138
  }
1139
+
1140
+ if ( data.action ) {
1141
+ rtmedia_single_media_alert_message( rtmedia_set_featured_image_msg, 'success' );
1142
+ } else {
1143
+ rtmedia_single_media_alert_message( rtmedia_unset_featured_image_msg, 'success' );
1144
+ }
1145
+
1146
  $( that ).find( 'span' ).html( data.next );
1147
  $( '.rtm-featured-loading' ).remove();
1148
  $( that ).removeAttr( 'disabled' );
app/assets/js/rtMedia.js CHANGED
@@ -207,7 +207,6 @@ jQuery( 'document' ).ready( function ( $ ) {
207
  setTimeout( function(){
208
  apply_rtMagnificPopup('.rtmedia-activity-container ul.rtmedia-list, #bp-media-list, .bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content');
209
  jQuery( 'ul.activity-list li.rtmedia_update:first-child .wp-audio-shortcode, ul.activity-list li.rtmedia_update:first-child .wp-video-shortcode' ).mediaelementplayer( {
210
-
211
  // if the <video width> is not specified, this is the default
212
  defaultVideoWidth: 480,
213
  // if the <video height> is not specified, this is the default
@@ -443,34 +442,34 @@ jQuery( 'document' ).ready( function ( $ ) {
443
  }
444
 
445
  function rtmedia_disable_popup_navigation_comment_focus() {
446
- jQuery( document ).on( 'focusin', '#comment_content', function () {
447
- jQuery( document ).unbind( 'keydown' );
448
- } );
449
- jQuery( document ).on( 'focusout', '#comment_content', function () {
450
- var rtm_mfp = jQuery.magnificPopup.instance;
451
- jQuery( document ).on( 'keydown', function ( e ) {
452
- if ( e.keyCode === 37 ) {
453
- rtm_mfp.prev();
454
- } else if ( e.keyCode === 39 ) {
455
- rtm_mfp.next();
456
- }
457
- } );
458
- } );
459
- }
460
 
461
- var dragArea = jQuery( "#drag-drop-area" );
462
- var activityArea = jQuery( '#whats-new' );
463
- var content = dragArea.html();
464
- jQuery( '#rtmedia-upload-container' ).after( "<div id='rtm-drop-files-title'>" + rtmedia_drop_media_msg + "</div>" );
465
- if ( typeof rtmedia_bp_enable_activity != "undefined" && rtmedia_bp_enable_activity == "1" ) {
466
- jQuery( '#whats-new-textarea' ).append( "<div id='rtm-drop-files-title'>" + rtmedia_drop_media_msg + "</div>" );
467
- }
468
- jQuery( document )
469
- .on( 'dragover', function ( e ) {
470
- jQuery( '#rtm-media-gallery-uploader' ).show();
471
- if ( typeof rtmedia_bp_enable_activity != "undefined" && rtmedia_bp_enable_activity == "1" ) {
472
- activityArea.addClass( 'rtm-drag-drop-active' );
473
- }
474
 
475
  // activityArea.css('height','150px');
476
  dragArea.addClass( 'rtm-drag-drop-active' );
@@ -565,6 +564,12 @@ jQuery( 'document' ).ready( function ( $ ) {
565
  class_name = jQuery( this ).attr( 'class' );
566
  jQuery( this ).parents( '.rtm-uploader-tabs' ).siblings('[data-id="' + class_name + '"]').show();
567
  jQuery( this ).addClass( 'active' );
 
 
 
 
 
 
568
  }
569
  });
570
  }
@@ -606,7 +611,7 @@ jQuery( 'document' ).ready( function ( $ ) {
606
  } );
607
  }
608
  } );
609
- });
610
 
611
 
612
 
@@ -716,3 +721,24 @@ function rtmediaGetParameterByName( name ) {
716
  results = regex.exec( location.search );
717
  return results == null ? "" : decodeURIComponent( results[1].replace( /\+/g, " " ) );
718
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  setTimeout( function(){
208
  apply_rtMagnificPopup('.rtmedia-activity-container ul.rtmedia-list, #bp-media-list, .bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content');
209
  jQuery( 'ul.activity-list li.rtmedia_update:first-child .wp-audio-shortcode, ul.activity-list li.rtmedia_update:first-child .wp-video-shortcode' ).mediaelementplayer( {
 
210
  // if the <video width> is not specified, this is the default
211
  defaultVideoWidth: 480,
212
  // if the <video height> is not specified, this is the default
442
  }
443
 
444
  function rtmedia_disable_popup_navigation_comment_focus() {
445
+ jQuery( document ).on( 'focusin', '#comment_content', function() {
446
+ jQuery( document ).unbind( 'keydown' );
447
+ } );
448
+ jQuery( document ).on( 'focusout', '#comment_content', function() {
449
+ var rtm_mfp = jQuery.magnificPopup.instance;
450
+ jQuery( document ).on( 'keydown', function( e ) {
451
+ if ( e.keyCode === 37 ) {
452
+ rtm_mfp.prev();
453
+ } else if ( e.keyCode === 39 ) {
454
+ rtm_mfp.next();
455
+ }
456
+ } );
457
+ } );
458
+ }
459
 
460
+ var dragArea = jQuery( "#drag-drop-area" );
461
+ var activityArea = jQuery( '#whats-new' );
462
+ var content = dragArea.html();
463
+ jQuery( '#rtmedia-upload-container' ).after( "<div id='rtm-drop-files-title'>" + rtmedia_drop_media_msg + "</div>" );
464
+ if ( typeof rtmedia_bp_enable_activity != "undefined" && rtmedia_bp_enable_activity == "1" ) {
465
+ jQuery( '#whats-new-textarea' ).append( "<div id='rtm-drop-files-title'>" + rtmedia_drop_media_msg + "</div>" );
466
+ }
467
+ jQuery( document )
468
+ .on( 'dragover', function( e ) {
469
+ jQuery( '#rtm-media-gallery-uploader' ).show();
470
+ if ( typeof rtmedia_bp_enable_activity != "undefined" && rtmedia_bp_enable_activity == "1" ) {
471
+ activityArea.addClass( 'rtm-drag-drop-active' );
472
+ }
473
 
474
  // activityArea.css('height','150px');
475
  dragArea.addClass( 'rtm-drag-drop-active' );
564
  class_name = jQuery( this ).attr( 'class' );
565
  jQuery( this ).parents( '.rtm-uploader-tabs' ).siblings('[data-id="' + class_name + '"]').show();
566
  jQuery( this ).addClass( 'active' );
567
+
568
+ if ( class_name != 'rtm-upload-tab' ) {
569
+ jQuery( 'div.moxie-shim' ).children( 'input[type=file]' ).hide();
570
+ } else {
571
+ jQuery( 'div.moxie-shim' ).children( 'input[type=file]' ).show();
572
+ }
573
  }
574
  });
575
  }
611
  } );
612
  }
613
  } );
614
+ } );
615
 
616
 
617
 
721
  results = regex.exec( location.search );
722
  return results == null ? "" : decodeURIComponent( results[1].replace( /\+/g, " " ) );
723
  }
724
+
725
+ function rtmedia_single_media_alert_message( msg, action ) {
726
+ var action_class = 'rtmedia-success';
727
+
728
+ if ( 'warning' == action ) {
729
+ action_class = 'rtmedia-warning';
730
+ }
731
+
732
+ jQuery( '.rtmedia-single-media .rtmedia-media' ).css( 'opacity', '0.2' );
733
+ jQuery( '.rtmedia-single-media .rtmedia-media' ).after( "<div class='rtmedia-message-container'><span class='"+ action_class +"'>" + msg + " </span></div>" );
734
+
735
+ setTimeout( function() {
736
+ jQuery( '.rtmedia-single-media .rtmedia-media' ).css( 'opacity', '1' );
737
+ jQuery( ".rtmedia-message-container" ).remove();
738
+ }, 3000 );
739
+
740
+ jQuery('.rtmedia-message-container').click( function() {
741
+ jQuery( '.rtmedia-single-media .rtmedia-media' ).css( 'opacity', '1' );
742
+ jQuery( ".rtmedia-message-container" ).remove();
743
+ } );
744
+ }
app/assets/js/rtmedia.min.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /*!
2
+ * rtMedia JavaScript Library
3
+ * @package rtMedia
4
+ */
5
+ function apply_rtMagnificPopup(a){jQuery("document").ready(function(b){var c="";c="undefined"==typeof rtmedia_load_more?"Loading media":rtmedia_load_more,"undefined"!=typeof rtmedia_lightbox_enabled&&"1"==rtmedia_lightbox_enabled&&(b(".activity-item .rtmedia-activity-container .rtmedia-list-item > a").siblings("p").children("a").length>0&&b(".activity-item .rtmedia-activity-container .rtmedia-list-item > a").siblings("p").children("a").addClass("no-popup"),rtMagnificPopup=jQuery(a).magnificPopup({delegate:"a:not(.no-popup, .mejs-time-slider, .mejs-volume-slider, .mejs-horizontal-volume-slider)",type:"ajax",tLoading:c+" #%curr%...",mainClass:"mfp-img-mobile",preload:[1,3],closeOnBgClick:!0,gallery:{enabled:!0,navigateByImgClick:!0,arrowMarkup:"",preload:[0,1]},image:{tError:'<a href="%url%">The image #%curr%</a> could not be loaded.',titleSrc:function(a){return a.el.attr("title")+"<small>by Marsel Van Oosten</small>"}},callbacks:{ajaxContentAdded:function(){a=jQuery.magnificPopup.instance,1===jQuery(a.items).size()&&jQuery(".mfp-arrow").remove();var a=jQuery.magnificPopup.instance,c=a.currItem.el,d=c.parent();if(d.is("li")||(d=d.parent()),d.is(":nth-last-child(2)")){d.next();"block"==jQuery("#rtMedia-galary-next").css("display")&&jQuery("#rtMedia-galary-next").click()}var e=a.items.length;if(a.index==e-1&&!d.is(":last-child"))return void c.click();$container=this.content.find(".tagcontainer"),$container.length>0&&($context=$container.find("img"),$container.find(".tagcontainer").css({height:$context.css("height"),width:$context.css("width")}));var f={};"undefined"!=typeof _wpmejsSettings&&(f.pluginPath=_wpmejsSettings.pluginPath),b(".mfp-content .wp-audio-shortcode,.mfp-content .wp-video-shortcode,.mfp-content .bp_media_content video").mediaelementplayer({defaultVideoWidth:480,defaultVideoHeight:270,success:function(a,b){a.play()}}),b(".mfp-content .mejs-audio .mejs-controls").css("position","relative"),rtMediaHook.call("rtmedia_js_popup_after_content_added",[])},close:function(a){rtmedia_init_action_dropdown()},BeforeChange:function(a){}}}))})}function rtmedia_init_action_dropdown(){var a,b;jQuery(".click-nav > span, .click-nav > div").toggleClass("no-js js"),jQuery(".click-nav .js ul").hide(),jQuery(".click-nav .clicker").click(function(c){a=jQuery("#rtm-media-options .click-nav .clicker").next("ul"),b=jQuery(this).next("ul"),jQuery.each(a,function(a,c){jQuery(c).html()!=b.html()&&jQuery(c).hide()}),jQuery(b).toggle(),c.stopPropagation()})}function bp_media_create_element(a){return!1}function rtmedia_version_compare(a,b){if(typeof a+typeof b!="stringstring")return!1;for(var c=a.split("."),d=b.split("."),e=0,f=Math.max(c.length,d.length);f>e;e++){if(c[e]&&!d[e]&&parseInt(c[e])>0||parseInt(c[e])>parseInt(d[e]))return!0;if(d[e]&&!c[e]&&parseInt(d[e])>0||parseInt(c[e])<parseInt(d[e]))return!1}return!0}function rtm_is_element_exist(a){return jQuery(a).length>0?!0:!1}function rtm_masonry_reload(a){setTimeout(function(){a.masonry("reload")},250)}function rtmediaGetParameterByName(a){a=a.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var b=new RegExp("[\\?&]"+a+"=([^&#]*)"),c=b.exec(location.search);return null==c?"":decodeURIComponent(c[1].replace(/\+/g," "))}function rtmedia_single_media_alert_message(a,b){var c="rtmedia-success";"warning"==b&&(c="rtmedia-warning"),jQuery(".rtmedia-single-media .rtmedia-media").css("opacity","0.2"),jQuery(".rtmedia-single-media .rtmedia-media").after("<div class='rtmedia-message-container'><span class='"+c+"'>"+a+" </span></div>"),setTimeout(function(){jQuery(".rtmedia-single-media .rtmedia-media").css("opacity","1"),jQuery(".rtmedia-message-container").remove()},3e3),jQuery(".rtmedia-message-container").click(function(){jQuery(".rtmedia-single-media .rtmedia-media").css("opacity","1"),jQuery(".rtmedia-message-container").remove()})}!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):window.jQuery||window.Zepto)}(function(a){var b,c,d,e,f,g,h="Close",i="BeforeClose",j="AfterClose",k="BeforeAppend",l="MarkupParse",m="Open",n="Change",o="mfp",p="."+o,q="mfp-ready",r="mfp-removing",s="mfp-prevent-close",t=function(){},u=!!window.jQuery,v=a(window),w=function(a,c){b.ev.on(o+a+p,c)},x=function(b,c,d,e){var f=document.createElement("div");return f.className="mfp-"+b,d&&(f.innerHTML=d),e?c&&c.appendChild(f):(f=a(f),c&&f.appendTo(c)),f},y=function(c,d){b.ev.triggerHandler(o+c,d),b.st.callbacks&&(c=c.charAt(0).toLowerCase()+c.slice(1),b.st.callbacks[c]&&b.st.callbacks[c].apply(b,a.isArray(d)?d:[d]))},z=function(c){return c===g&&b.currTemplate.closeBtn||(b.currTemplate.closeBtn=a(b.st.closeMarkup.replace("%title%",b.st.tClose)),g=c),b.currTemplate.closeBtn},A=function(){a.magnificPopup.instance||(b=new t,b.init(),a.magnificPopup.instance=b)},B=function(){var a=document.createElement("p").style,b=["ms","O","Moz","Webkit"];if(void 0!==a.transition)return!0;for(;b.length;)if(b.pop()+"Transition"in a)return!0;return!1};t.prototype={constructor:t,init:function(){var c=navigator.appVersion;b.isIE7=-1!==c.indexOf("MSIE 7."),b.isIE8=-1!==c.indexOf("MSIE 8."),b.isLowIE=b.isIE7||b.isIE8,b.isAndroid=/android/gi.test(c),b.isIOS=/iphone|ipad|ipod/gi.test(c),b.supportsTransition=B(),b.probablyMobile=b.isAndroid||b.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),d=a(document),b.popupsCache={}},open:function(c){var e;if(c.isObj===!1){b.items=c.items.toArray(),b.index=0;var g,h=c.items;for(e=0;e<h.length;e++)if(g=h[e],g.parsed&&(g=g.el[0]),g===c.el[0]){b.index=e;break}}else b.items=a.isArray(c.items)?c.items:[c.items],b.index=c.index||0;if(b.isOpen)return void b.updateItemHTML();b.types=[],f="",c.mainEl&&c.mainEl.length?b.ev=c.mainEl.eq(0):b.ev=d,c.key?(b.popupsCache[c.key]||(b.popupsCache[c.key]={}),b.currTemplate=b.popupsCache[c.key]):b.currTemplate={},b.st=a.extend(!0,{},a.magnificPopup.defaults,c),b.fixedContentPos="auto"===b.st.fixedContentPos?!b.probablyMobile:b.st.fixedContentPos,b.st.modal&&(b.st.closeOnContentClick=!1,b.st.closeOnBgClick=!1,b.st.showCloseBtn=!1,b.st.enableEscapeKey=!1),b.bgOverlay||(b.bgOverlay=x("bg").on("click"+p,function(){b.close()}),b.wrap=x("wrap").attr("tabindex",-1).on("click"+p,function(a){b._checkIfClose(a.target)&&b.close()}),b.container=x("container",b.wrap)),b.contentContainer=x("content"),b.st.preloader&&(b.preloader=x("preloader",b.container,b.st.tLoading));var i=a.magnificPopup.modules;for(e=0;e<i.length;e++){var j=i[e];j=j.charAt(0).toUpperCase()+j.slice(1),b["init"+j].call(b)}y("BeforeOpen"),b.st.showCloseBtn&&(b.st.closeBtnInside?(w(l,function(a,b,c,d){c.close_replaceWith=z(d.type)}),f+=" mfp-close-btn-in"):b.wrap.append(z())),b.st.alignTop&&(f+=" mfp-align-top"),b.fixedContentPos?b.wrap.css({overflow:b.st.overflowY,overflowX:"hidden",overflowY:b.st.overflowY}):b.wrap.css({top:v.scrollTop(),position:"absolute"}),(b.st.fixedBgPos===!1||"auto"===b.st.fixedBgPos&&!b.fixedContentPos)&&b.bgOverlay.css({height:d.height(),position:"absolute"}),b.st.enableEscapeKey&&d.on("keyup"+p,function(a){27===a.keyCode&&b.close()}),v.on("resize"+p,function(){b.updateSize()}),b.st.closeOnContentClick||(f+=" mfp-auto-cursor"),f&&b.wrap.addClass(f);var k=b.wH=v.height(),n={};if(b.fixedContentPos&&b._hasScrollBar(k)){var o=b._getScrollbarSize();o&&(n.marginRight=o)}b.fixedContentPos&&(b.isIE7?a("body, html").css("overflow","hidden"):n.overflow="hidden");var r=b.st.mainClass;return b.isIE7&&(r+=" mfp-ie7"),r&&b._addClassToMFP(r),b.updateItemHTML(),y("BuildControls"),a("html").css(n),b.bgOverlay.add(b.wrap).prependTo(b.st.prependTo||a(document.body)),b._lastFocusedEl=document.activeElement,setTimeout(function(){b.content?(b._addClassToMFP(q),b._setFocus()):b.bgOverlay.addClass(q),d.on("focusin"+p,b._onFocusIn)},16),b.isOpen=!0,b.updateSize(k),y(m),c},close:function(){b.isOpen&&(y(i),b.isOpen=!1,b.st.removalDelay&&!b.isLowIE&&b.supportsTransition?(b._addClassToMFP(r),setTimeout(function(){b._close()},b.st.removalDelay)):b._close())},_close:function(){y(h);var c=r+" "+q+" ";if(b.bgOverlay.detach(),b.wrap.detach(),b.container.empty(),b.st.mainClass&&(c+=b.st.mainClass+" "),b._removeClassFromMFP(c),b.fixedContentPos){var e={marginRight:""};b.isIE7?a("body, html").css("overflow",""):e.overflow="",a("html").css(e)}d.off("keyup"+p+" focusin"+p),b.ev.off(p),b.wrap.attr("class","mfp-wrap").removeAttr("style"),b.bgOverlay.attr("class","mfp-bg"),b.container.attr("class","mfp-container"),!b.st.showCloseBtn||b.st.closeBtnInside&&b.currTemplate[b.currItem.type]!==!0||b.currTemplate.closeBtn&&b.currTemplate.closeBtn.detach(),b._lastFocusedEl&&a(b._lastFocusedEl).focus(),b.currItem=null,b.content=null,b.currTemplate=null,b.prevHeight=0,y(j)},updateSize:function(a){if(b.isIOS){var c=document.documentElement.clientWidth/window.innerWidth,d=window.innerHeight*c;b.wrap.css("height",d),b.wH=d}else b.wH=a||v.height();b.fixedContentPos||b.wrap.css("height",b.wH),y("Resize")},updateItemHTML:function(){var c=b.items[b.index];b.contentContainer.detach(),b.content&&b.content.detach(),c.parsed||(c=b.parseEl(b.index));var d=c.type;if(y("BeforeChange",[b.currItem?b.currItem.type:"",d]),b.currItem=c,!b.currTemplate[d]){var f=b.st[d]?b.st[d].markup:!1;y("FirstMarkupParse",f),f?b.currTemplate[d]=a(f):b.currTemplate[d]=!0}e&&e!==c.type&&b.container.removeClass("mfp-"+e+"-holder");var g=b["get"+d.charAt(0).toUpperCase()+d.slice(1)](c,b.currTemplate[d]);b.appendContent(g,d),c.preloaded=!0,y(n,c),e=c.type,b.container.prepend(b.contentContainer),y("AfterChange")},appendContent:function(a,c){b.content=a,a?b.st.showCloseBtn&&b.st.closeBtnInside&&b.currTemplate[c]===!0?b.content.find(".mfp-close").length||b.content.append(z()):b.content=a:b.content="",y(k),b.container.addClass("mfp-"+c+"-holder"),b.contentContainer.append(b.content)},parseEl:function(c){var d,e=b.items[c];if(e.tagName?e={el:a(e)}:(d=e.type,e={data:e,src:e.src}),e.el){for(var f=b.types,g=0;g<f.length;g++)if(e.el.hasClass("mfp-"+f[g])){d=f[g];break}e.src=e.el.attr("data-mfp-src"),e.src||(e.src=e.el.attr("href"))}return e.type=d||b.st.type||"inline",e.index=c,e.parsed=!0,b.items[c]=e,y("ElementParse",e),b.items[c]},addGroup:function(a,c){var d=function(d){d.mfpEl=this,b._openClick(d,a,c)};c||(c={});var e="click.magnificPopup";c.mainEl=a,c.items?(c.isObj=!0,a.off(e).on(e,d)):(c.isObj=!1,c.delegate?a.off(e).on(e,c.delegate,d):(c.items=a,a.off(e).on(e,d)))},_openClick:function(c,d,e){var f=void 0!==e.midClick?e.midClick:a.magnificPopup.defaults.midClick;if(f||2!==c.which&&!c.ctrlKey&&!c.metaKey){var g=void 0!==e.disableOn?e.disableOn:a.magnificPopup.defaults.disableOn;if(g)if(a.isFunction(g)){if(!g.call(b))return!0}else if(v.width()<g)return!0;c.type&&(c.preventDefault(),b.isOpen&&c.stopPropagation()),e.el=a(c.mfpEl),e.delegate&&(e.items=d.find(e.delegate)),b.open(e)}},updateStatus:function(a,d){if(b.preloader){c!==a&&b.container.removeClass("mfp-s-"+c),d||"loading"!==a||(d=b.st.tLoading);var e={status:a,text:d};y("UpdateStatus",e),a=e.status,d=e.text,b.preloader.html(d),b.preloader.find("a").on("click",function(a){a.stopImmediatePropagation()}),b.container.addClass("mfp-s-"+a),c=a}},_checkIfClose:function(c){if(!a(c).hasClass(s)){var d=b.st.closeOnContentClick,e=b.st.closeOnBgClick;if(d&&e)return!0;if(!b.content||a(c).hasClass("mfp-close")||b.preloader&&c===b.preloader[0])return!0;if(c===b.content[0]||a.contains(b.content[0],c)){if(d)return!0}else if(e&&a.contains(document,c))return!0;return!1}},_addClassToMFP:function(a){b.bgOverlay.addClass(a),b.wrap.addClass(a)},_removeClassFromMFP:function(a){this.bgOverlay.removeClass(a),b.wrap.removeClass(a)},_hasScrollBar:function(a){return(b.isIE7?d.height():document.body.scrollHeight)>(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(a,c){if(void 0===c||c===!1)return!0;if(e=a.split("_"),e.length>1){var d=b.find(p+"-"+e[0]);if(d.length>0){var f=e[1];"replaceWith"===f?d[0]!==c[0]&&d.replaceWith(c):"img"===f?d.is("img")?d.attr("src",c):d.replaceWith('<img src="'+c+'" class="'+d.attr("class")+'" />'):d.attr(e[1],c)}}else b.find(p+"-"+a).html(c)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'<button title="%title%" type="button" class="mfp-close">&times;</button>',tClose:"Close (Esc)",tLoading:"Loading..."}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("<div>");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'<a href="%url%">The content</a> could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'<div class="mfp-figure"><div class="mfp-close"></div><figure><div class="mfp-img"></div><figcaption><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></figcaption></figure></div>',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'<a href="%url%">The image</a> could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'<div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" src="//about:blank" frameborder="0" allowfullscreen></iframe></div>',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'<button title="%title%" type="button" class="mfp-arrow mfp-arrow-%dir%"></button>',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery",g=Boolean(a.fn.mfpFastClick);return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s),h=g?"mfpFastClick":"click";e[h](function(){b.prev()}),f[h](function(){b.next()}),b.isIE7&&(x("b",e[0],!1,!0),x("a",e[0],!1,!0),x("b",f[0],!1,!0),x("a",f[0],!1,!0)),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowLeft&&g&&b.arrowLeft.add(b.arrowRight).destroyMfpFastClick(),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('<img class="mfp-img" />').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),function(){var b=1e3,c="ontouchstart"in window,d=function(){v.off("touchmove"+f+" touchend"+f)},e="mfpFastClick",f="."+e;a.fn.mfpFastClick=function(e){return a(this).each(function(){var g,h=a(this);if(c){var i,j,k,l,m,n;h.on("touchstart"+f,function(a){l=!1,n=1,m=a.originalEvent?a.originalEvent.touches[0]:a.touches[0],j=m.clientX,k=m.clientY,v.on("touchmove"+f,function(a){m=a.originalEvent?a.originalEvent.touches:a.touches,n=m.length,m=m[0],(Math.abs(m.clientX-j)>10||Math.abs(m.clientY-k)>10)&&(l=!0,d())}).on("touchend"+f,function(a){d(),l||n>1||(g=!0,a.preventDefault(),clearTimeout(i),i=setTimeout(function(){g=!1},b),e())})})}h.on("click"+f,function(){g||e()})})},a.fn.destroyMfpFastClick=function(){a(this).off("touchstart"+f+" click"+f),c&&v.off("touchmove"+f+" touchend"+f)}}(),A()}),"function"!=typeof Object.create&&(Object.create=function(a){function b(){}return b.prototype=a,new b}),function(a,b,c,d){var e={init:function(b,c){var d=this;d.elem=c,d.$elem=a(c),d.options=a.extend({},a.fn.rtTab.options,b),d.rtTabs()},rtTabs:function(){var c=this,d=c.options.activeTab;c.$elem.find("li:nth-child("+d+")").addClass("active"),c.rtTabContent(activeTabContent="yes"),c.rtClick();var e="false"===c.$elem.attr("data-hash")?!1:!0;if(e===!0){var f=b.location.hash;f&&c.$elem.find("li").find("a[href="+f+"]").trigger("click"),a(b).on("hashchange",function(){var a=b.location.hash;c.$elem.find("li").find("a[href="+a+"]").trigger("click")})}},rtClick:function(){var c=this,d=c.$elem.find("li"),e=d.find("a");e.on("click",function(e){e.preventDefault(),d.removeClass("active"),c.rtTabContent(),a(this).parent().addClass("active");var f=a(this).attr("href");a(f).removeClass("hide");var g="false"===c.$elem.attr("data-hash")?!1:!0;if(g===!0){var h=a(b).scrollTop();location.hash=a(this).attr("href"),a(b).scrollTop(h)}"function"==typeof c.options.onComplete&&c.options.onComplete.apply(c.elem,arguments)})},rtTabContent:function(b){var c=this,d=c.$elem.find("li"),e=d.find("a");e.each(function(){var c=a(this),d=c.attr("href");"yes"===b?c.parent().hasClass("active")||a(d).addClass("hide"):a(d).addClass("hide")})}};a.fn.rtTab=function(b){return this.each(function(){var c=Object.create(e);c.init(b,this),a.data(this,"rtTab",c)})},a.fn.rtTab.options={activeTab:1,onComplete:null}}(jQuery,window,document);var rtMagnificPopup,rtm_masonry_container,rtMediaHook={hooks:[],is_break:!1,register:function(a,b){"undefined"==typeof rtMediaHook.hooks[a]&&(rtMediaHook.hooks[a]=[]),rtMediaHook.hooks[a].push(b)},call:function(a,b){if("undefined"!=typeof rtMediaHook.hooks[a])for(i=0;i<rtMediaHook.hooks[a].length;++i)if(1!=rtMediaHook.hooks[a][i](b))return rtMediaHook.is_break=!0,!1;return!0}};jQuery("document").ready(function(a){function b(){if(jQuery("#rtmedia-media-view-form").length>0){var a=jQuery("#rtmedia-media-view-form").attr("action");jQuery.post(a,{},function(a){})}}function c(){var a=jQuery.magnificPopup.instance;jQuery(".mfp-arrow-right").on("click",function(b){a.next()}),jQuery(".mfp-arrow-left").on("click",function(b){a.prev()}),jQuery(".mfp-content .rtmedia-media").swipe({swipeLeft:function(b,c,d,e,f){a.next()},swipeRight:function(b,c,d,e,f){a.prev()},threshold:0})}function d(){jQuery(document).on("focusin","#comment_content",function(){jQuery(document).unbind("keydown")}),jQuery(document).on("focusout","#comment_content",function(){var a=jQuery.magnificPopup.instance;jQuery(document).on("keydown",function(b){37===b.keyCode?a.prev():39===b.keyCode&&a.next()})})}function e(){jQuery(".rtmedia-container").on("click",".rtmedia-delete-media",function(a){a.preventDefault(),confirm(rtmedia_media_delete_confirmation)&&jQuery(this).closest("form").submit()})}a(".rtm-tabs").rtTab(),jQuery(".rtmedia-modal-link").length>0&&a(".rtmedia-modal-link").magnificPopup({type:"inline",midClick:!0,closeBtnInside:!0}),a("#rt_media_comment_form").submit(function(b){return""==a.trim(a("#comment_content").val())?(alert(rtmedia_empty_comment_msg),!1):!0}),a("li.rtmedia-list-item p a").each(function(b){a(this).addClass("no-popup")}),a("li.rtmedia-list-item p a").each(function(b){a(this).addClass("no-popup")}),"undefined"!=typeof rtmedia_lightbox_enabled&&"1"==rtmedia_lightbox_enabled&&apply_rtMagnificPopup(".rtmedia-list-media, .rtmedia-activity-container ul.rtmedia-list, #bp-media-list,.bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content, .rtm-bbp-container, .comment-content"),jQuery.ajaxPrefilter(function(a,b,c){try{if(null==b.data||"undefined"==typeof b.data||"undefined"==typeof b.data.action)return!0}catch(d){return!0}if("activity_get_older_updates"==b.data.action){var e=b.success;a.success=function(a){e(a),apply_rtMagnificPopup(".rtmedia-activity-container ul.rtmedia-list, #bp-media-list, .bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content"),rtMediaHook.call("rtmedia_js_after_activity_added",[])}}else if("get_single_activity_content"==b.data.action){var e=b.success;a.success=function(a){e(a),setTimeout(function(){apply_rtMagnificPopup(".rtmedia-activity-container ul.rtmedia-list, #bp-media-list, .bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content"),jQuery("ul.activity-list li.rtmedia_update:first-child .wp-audio-shortcode, ul.activity-list li.rtmedia_update:first-child .wp-video-shortcode").mediaelementplayer({defaultVideoWidth:480,defaultVideoHeight:270})},900)}}}),jQuery.ajaxPrefilter(function(a,b,c){try{if(null==b.data||"undefined"==typeof b.data||"undefined"==typeof b.data.action)return!0}catch(d){return!0}if("activity_get_older_updates"==b.data.action){var e=b.success;a.success=function(a){e(a),apply_rtMagnificPopup(".rtmedia-activity-container ul.rtmedia-list, #bp-media-list, .bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content"),rtMediaHook.call("rtmedia_js_after_activity_added",[])}}}),jQuery(".rtmedia-container").on("click",".select-all",function(a){jQuery(this).toggleClass("unselect-all").toggleClass("select-all"),jQuery(this).attr("title",rtmedia_unselect_all_visible),jQuery(".rtmedia-list input").each(function(){jQuery(this).prop("checked",!0)}),jQuery(".rtmedia-list-item").addClass("bulk-selected")}),jQuery(".rtmedia-container").on("click",".unselect-all",function(a){jQuery(this).toggleClass("select-all").toggleClass("unselect-all"),jQuery(this).attr("title",rtmedia_select_all_visible),jQuery(".rtmedia-list input").each(function(){jQuery(this).prop("checked",!1)}),jQuery(".rtmedia-list-item").removeClass("bulk-selected")}),jQuery(".rtmedia-container").on("click",".rtmedia-move",function(a){jQuery(".rtmedia-delete-container").slideUp(),jQuery(".rtmedia-move-container").slideToggle()}),jQuery("#rtmedia-create-album-modal").on("click","#rtmedia_create_new_album",function(b){if($albumname=jQuery.trim(jQuery("#rtmedia_album_name").val()),$context=jQuery.trim(jQuery("#rtmedia_album_context").val()),$context_id=jQuery.trim(jQuery("#rtmedia_album_context_id").val()),$privacy=jQuery.trim(jQuery("#rtmedia_select_album_privacy").val()),$create_album_nonce=jQuery.trim(jQuery("#rtmedia_create_album_nonce").val()),""!=$albumname){var c={action:"rtmedia_create_album",name:$albumname,context:$context,context_id:$context_id,create_album_nonce:$create_album_nonce};""!==$privacy&&(c.privacy=$privacy),a("#rtmedia_create_new_album").attr("disabled","disabled");var d=a("#rtmedia_create_new_album").html();a("#rtmedia_create_new_album").prepend("<img src='"+rMedia_loading_file+"' />"),jQuery.post(rtmedia_ajax_url,c,function(b){if(b=jQuery.parseJSON(b),"undefined"!=typeof b.album){b=jQuery.trim(b.album);var c=!0;jQuery(".rtmedia-user-album-list").each(function(){if(jQuery(this).children("optgroup").each(function(){
6
+ return jQuery(this).attr("value")===$context?(c=!1,void jQuery(this).append('<option value="'+b+'">'+$albumname+"</option>")):void 0}),c){var a=$context.charAt(0).toUpperCase()+$context.slice(1),d='<optgroup value="'+$context+'" label="'+a+' Albums"><option value="'+b+'">'+$albumname+"</option></optgroup>";jQuery(this).append(d)}}),jQuery('select.rtmedia-user-album-list option[value="'+b+'"]').prop("selected",!0),jQuery(".rtmedia-create-new-album-container").slideToggle(),jQuery("#rtmedia_album_name").val(""),jQuery("#rtmedia-create-album-modal").append("<div class='rtmedia-success rtmedia-create-album-alert'><b>"+$albumname+"</b>"+rtmedia_album_created_msg+"</div>"),setTimeout(function(){jQuery(".rtmedia-create-album-alert").remove()},4e3),setTimeout(function(){galleryObj.reloadView(),jQuery(".close-reveal-modal").click()},2e3)}else"undefined"!=typeof b.error?alert(b.error):alert(rtmedia_something_wrong_msg);a("#rtmedia_create_new_album").removeAttr("disabled"),a("#rtmedia_create_new_album").html(d)})}else alert(rtmedia_empty_album_name_msg)}),jQuery(".rtmedia-container").on("click",".rtmedia-delete-selected",function(a){jQuery(".rtmedia-list :checkbox:checked").length>0?confirm(rtmedia_selected_media_delete_confirmation)&&jQuery(this).closest("form").attr("action","../../../media/delete").submit():alert(rtmedia_no_media_selected)}),jQuery(".rtmedia-container").on("click",".rtmedia-move-selected",function(a){jQuery(".rtmedia-list :checkbox:checked").length>0?confirm(rtmedia_selected_media_move_confirmation)&&jQuery(this).closest("form").attr("action","").submit():alert(rtmedia_no_media_selected)}),b(),rtMediaHook.register("rtmedia_js_popup_after_content_added",function(){b(),e(),mfp=jQuery.magnificPopup.instance,jQuery(mfp.items).size()>1&&c(),d();var f=a(window).height();jQuery(".rtm-lightbox-container .mejs-video").css({height:.8*f,"max-height":.8*f,"over-flow":"hidden"}),jQuery(".mfp-content .rtmedia-media").css({"max-height":.87*f,"over-flow":"hidden"}),rtmedia_init_action_dropdown(),jQuery(".rtmedia-comment-link").on("click",function(a){a.preventDefault(),jQuery("#comment_content").focus()}),jQuery(".rtm-more").shorten({showChars:130});var g=a(".rtm-gallery-title"),h="";h=a.isEmptyObject(g)?a("#subnav.item-list-tabs li.selected ").html():g.html(),""!=h&&a(".rtm-ltb-gallery-title .ltb-title").html(h);var i=a("#subnav.item-list-tabs li.selected span").html();return a("li.total").html(i),!0});var f=jQuery("#drag-drop-area"),g=jQuery("#whats-new");f.html();jQuery("#rtmedia-upload-container").after("<div id='rtm-drop-files-title'>"+rtmedia_drop_media_msg+"</div>"),"undefined"!=typeof rtmedia_bp_enable_activity&&"1"==rtmedia_bp_enable_activity&&jQuery("#whats-new-textarea").append("<div id='rtm-drop-files-title'>"+rtmedia_drop_media_msg+"</div>"),jQuery(document).on("dragover",function(a){jQuery("#rtm-media-gallery-uploader").show(),"undefined"!=typeof rtmedia_bp_enable_activity&&"1"==rtmedia_bp_enable_activity&&g.addClass("rtm-drag-drop-active"),f.addClass("rtm-drag-drop-active"),jQuery("#rtm-drop-files-title").show()}).on("dragleave",function(a){a.preventDefault(),"undefined"!=typeof rtmedia_bp_enable_activity&&"1"==rtmedia_bp_enable_activity&&(g.removeClass("rtm-drag-drop-active"),g.removeAttr("style")),f.removeClass("rtm-drag-drop-active"),jQuery("#rtm-drop-files-title").hide()}).on("drop",function(a){a.preventDefault(),"undefined"!=typeof rtmedia_bp_enable_activity&&"1"==rtmedia_bp_enable_activity&&(g.removeClass("rtm-drag-drop-active"),g.removeAttr("style")),f.removeClass("rtm-drag-drop-active"),jQuery("#rtm-drop-files-title").hide()}),jQuery(".rtmedia-container").on("click",".rtmedia-delete-album",function(a){a.preventDefault(),confirm(rtmedia_album_delete_confirmation)&&jQuery(this).closest("form").submit()}),jQuery(".rtmedia-container").on("click",".rtmedia-delete-media",function(a){a.preventDefault(),confirm(rtmedia_media_delete_confirmation)&&jQuery(this).closest("form").submit()}),rtmedia_init_action_dropdown(),a(document).click(function(){a(".click-nav ul").is(":visible")&&a(".click-nav ul",this).hide()}),jQuery(".rtmedia-comment-link").on("click",function(a){a.preventDefault(),jQuery("#comment_content").focus()}),jQuery(".rtm-more").length>0&&a(".rtm-more").shorten({showChars:200}),"undefined"!=typeof rtmedia_masonry_layout&&"true"==rtmedia_masonry_layout&&0==jQuery(".rtmedia-container .rtmedia-list.rtm-no-masonry").length&&(rtm_masonry_container=jQuery(".rtmedia-container .rtmedia-list"),rtm_masonry_container.masonry({itemSelector:".rtmedia-list-item"}),setInterval(function(){jQuery.each(jQuery(".rtmedia-list.masonry .rtmedia-item-title"),function(a,b){jQuery(b).width(jQuery(b).siblings(".rtmedia-item-thumbnail").children("img").width())}),rtm_masonry_reload(rtm_masonry_container)},1e3),jQuery.each(jQuery(".rtmedia-list.masonry .rtmedia-item-title"),function(a,b){jQuery(b).width(jQuery(b).siblings(".rtmedia-item-thumbnail").children("img").width())})),jQuery(".rtm-uploader-tabs").length>0&&jQuery(".rtm-uploader-tabs li").click(function(a){jQuery(this).hasClass("active")||(jQuery(this).siblings().removeClass("active"),jQuery(this).parents(".rtm-uploader-tabs").siblings().hide(),class_name=jQuery(this).attr("class"),jQuery(this).parents(".rtm-uploader-tabs").siblings('[data-id="'+class_name+'"]').show(),jQuery(this).addClass("active"),"rtm-upload-tab"!=class_name?jQuery("div.moxie-shim").children("input[type=file]").hide():jQuery("div.moxie-shim").children("input[type=file]").show())}),jQuery(".rtmedia-list-media").on("click",".rtm-delete-media",function(a){a.preventDefault();var b="Are you sure you want to delete this media?";if("undefined"!=typeof rtmedia_media_delete_confirmation&&(b=rtmedia_media_delete_confirmation),confirm(b)){var c=jQuery(this).closest("li"),d=jQuery("#rtmedia-upload-container #rtmedia_media_delete_nonce").val(),e={action:"delete_uploaded_media",nonce:d,media_id:c.attr("id")};jQuery.ajax({url:ajaxurl,type:"post",data:e,success:function(a){"1"==a?(c.remove(),"undefined"!=typeof rtmedia_masonry_layout&&"true"==rtmedia_masonry_layout&&0==jQuery(".rtmedia-container .rtmedia-list.rtm-no-masonry").length&&rtm_masonry_reload(rtm_masonry_container)):alert(rtmedia_file_not_deleted)}})}})}),function(a){a.fn.shorten=function(b){var c={showChars:100,ellipsesText:"...",moreText:"more",lessText:"less"};return b&&a.extend(c,b),a(document).off("click",".morelink"),a(document).on({click:function(){var b=a(this);return b.hasClass("less")?(b.removeClass("less"),b.html(c.moreText)):(b.addClass("less"),b.html(c.lessText)),b.parent().prev().toggle(),b.prev().toggle(),!1}},".morelink"),this.each(function(){var b=a(this);if(!b.hasClass("shortened")){b.addClass("shortened");var d=b.html();if(d.length>c.showChars){var e=d.substr(0,c.showChars),f=d.substr(c.showChars,d.length-c.showChars),g=e+'<span class="moreellipses">'+c.ellipsesText+' </span><span class="morecontent"><span>'+f+'</span> <a href="#" class="morelink">'+c.moreText+"</a></span>";b.html(g),a(".morecontent span").hide()}}})}}(jQuery),window.onload=function(){"undefined"!=typeof rtmedia_masonry_layout&&"true"==rtmedia_masonry_layout&&0==jQuery(".rtmedia-container .rtmedia-list.rtm-no-masonry").length&&rtm_masonry_reload(rtm_masonry_container)};
app/helper/RTMediaAddon.php CHANGED
@@ -482,15 +482,15 @@ if ( ! class_exists( 'RTMediaAddon' ) ) {
482
  'purchased' => ( defined( 'RTMEDIA_PHOTO_TAGGING_URL' ) || file_exists( WP_PLUGIN_DIR . '/bpm-photo-tag/index.php' ) ) ? true : false,
483
  ),
484
  array(
485
- 'title' => __( 'Instagram', 'rtmedia' ),
486
- 'img_src' => $img_src . 'rtmedia-instagram-240x184.png',
487
- 'product_link' => 'http://rtcamp.com/products/rtmedia-instagram/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
488
- 'desc' => '<p>' . __( 'rtMedia Instagram adds Instagram like filters to images uploaded with rtMedia.', 'rtmedia' ) . '</p>',
489
  'price' => '$49',
490
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
491
- 'buy_now' => 'https://rtcamp.com/products/rtmedia-instagram/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
492
  'category' => 'photo',
493
- 'purchased' => ( defined( 'RTMEDIA_INSTAGRAM_URL' ) || file_exists( WP_PLUGIN_DIR . '/bpm-instagram/index.php' ) ) ? true : false,
494
  ),
495
  array(
496
  'title' => __( 'Kaltura Add-on', 'rtmedia' ),
482
  'purchased' => ( defined( 'RTMEDIA_PHOTO_TAGGING_URL' ) || file_exists( WP_PLUGIN_DIR . '/bpm-photo-tag/index.php' ) ) ? true : false,
483
  ),
484
  array(
485
+ 'title' => __( 'Photo Filters', 'rtmedia' ),
486
+ 'img_src' => $img_src . 'rtmedia-photo-filters.png',
487
+ 'product_link' => 'http://rtcamp.com/products/rtmedia-photo-filters/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
488
+ 'desc' => '<p>' . __( 'rtMedia Photo Filters adds Instagram like filters to images uploaded with rtMedia.', 'rtmedia' ) . '</p>',
489
  'price' => '$49',
490
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
491
+ 'buy_now' => 'https://rtcamp.com/products/rtmedia-photo-filters/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
492
  'category' => 'photo',
493
+ 'purchased' => ( defined( 'RTMEDIA_INSTAGRAM_URL' ) || file_exists( WP_PLUGIN_DIR . '/bpm-instagram/index.php' ) || defined( 'RTMEDIA_PHOTO_FILTERS_URL' ) || file_exists( WP_PLUGIN_DIR . '/rtmedia-photo-filters/index.php' ) ) ? true : false,
494
  ),
495
  array(
496
  'title' => __( 'Kaltura Add-on', 'rtmedia' ),
app/helper/RTMediaInteractionModel.php CHANGED
@@ -65,16 +65,21 @@ class RTMediaInteractionModel extends RTDBModel {
65
  * @return type $results
66
  */
67
  function get_row( $user_id = '', $media_id = '', $action = '' ){
68
- if ( $user_id == '' || $media_id == '' || $action == '' ){
69
  return false;
70
  }
71
 
72
- $columns = array(
73
- 'user_id' => $user_id,
74
- 'media_id' => $media_id,
75
- 'action' => $action,
76
- );
77
-
 
 
 
 
 
78
  $results = $this->get( $columns );
79
 
80
  return $results;
65
  * @return type $results
66
  */
67
  function get_row( $user_id = '', $media_id = '', $action = '' ){
68
+ if ( $user_id == '' && $media_id == '' && $action == '' ){
69
  return false;
70
  }
71
 
72
+ $columns = array();
73
+ if ( '' != $user_id ) {
74
+ $columns['user_id'] = $user_id;
75
+ }
76
+ if ( '' != $media_id ) {
77
+ $columns['media_id'] = $media_id;
78
+ }
79
+ if ( '' != $action ) {
80
+ $columns['action'] = $action;
81
+ }
82
+
83
  $results = $this->get( $columns );
84
 
85
  return $results;
app/helper/RTMediaLicense.php CHANGED
@@ -78,7 +78,7 @@ class RTMediaLicense {
78
  </th>
79
  <td>
80
  <input id="<?php echo $license_key_id ?>" name="<?php echo $license_key_id ?>" type="text"
81
- class="regular-text" value="<?php esc_attr_e( $license ); ?>"/>
82
  </td>
83
  </tr>
84
 
78
  </th>
79
  <td>
80
  <input id="<?php echo $license_key_id ?>" name="<?php echo $license_key_id ?>" type="text"
81
+ class="regular-text" value="<?php echo $license; ?>"/>
82
  </td>
83
  </tr>
84
 
app/helper/RTMediaModel.php CHANGED
@@ -14,10 +14,10 @@ class RTMediaModel extends RTDBModel {
14
 
15
  /**
16
  *
17
- * @param type $name
18
- * @param type $arguments
19
  *
20
- * @return type
21
  */
22
  function __call( $name, $arguments ){
23
  $result = parent::__call( $name, $arguments );
@@ -30,14 +30,14 @@ class RTMediaModel extends RTDBModel {
30
 
31
  /**
32
  *
33
- * @global type $wpdb
34
  *
35
- * @param type $columns
36
- * @param type $offset
37
- * @param type $per_page
38
- * @param type $order_by
39
  *
40
- * @return type
41
  */
42
  function get( $columns, $offset = false, $per_page = false, $order_by = 'media_id desc', $count_flag = false ){
43
  global $wpdb;
@@ -137,10 +137,10 @@ class RTMediaModel extends RTDBModel {
137
 
138
  /**
139
  *
140
- * @param type $name
141
- * @param type $arguments
142
  *
143
- * @return type
144
  */
145
  function populate_results_fallback( $name, $arguments ){
146
  $result['result'] = false;
@@ -175,12 +175,12 @@ class RTMediaModel extends RTDBModel {
175
 
176
  /**
177
  *
178
- * @param type $columns
179
- * @param type $offset
180
- * @param type $per_page
181
- * @param type $order_by
182
  *
183
- * @return type
184
  */
185
  function get_media( $columns, $offset = false, $per_page = false, $order_by = 'media_id desc', $count_flag = false ){
186
  if ( is_multisite() ){
@@ -194,12 +194,12 @@ class RTMediaModel extends RTDBModel {
194
 
195
  /**
196
  *
197
- * @param type $author_id
198
- * @param type $offset
199
- * @param type $per_page
200
- * @param type $order_by
201
  *
202
- * @return type $results
203
  */
204
  function get_user_albums( $author_id, $offset, $per_page, $order_by = 'media_id desc' ){
205
  global $wpdb;
@@ -249,12 +249,12 @@ class RTMediaModel extends RTDBModel {
249
 
250
  /**
251
  *
252
- * @param type $group_id
253
- * @param type $offset
254
- * @param type $per_page
255
- * @param type $order_by
256
  *
257
- * @return type $results
258
  */
259
  function get_group_albums( $group_id, $offset, $per_page, $order_by = 'media_id desc' ){
260
  global $wpdb;
@@ -297,10 +297,10 @@ class RTMediaModel extends RTDBModel {
297
 
298
  /**
299
  *
300
- * @param type $user_id
301
- * @param type $where_query
302
  *
303
- * @return type $result
304
  */
305
  function get_counts( $user_id = false, $where_query = false ){
306
 
@@ -360,8 +360,8 @@ class RTMediaModel extends RTDBModel {
360
 
361
  /**
362
  *
363
- * @param type $profile_id
364
- * @param type $context
365
  *
366
  * @return int
367
  */
14
 
15
  /**
16
  *
17
+ * @param string $name
18
+ * @param array $arguments
19
  *
20
+ * @return array
21
  */
22
  function __call( $name, $arguments ){
23
  $result = parent::__call( $name, $arguments );
30
 
31
  /**
32
  *
33
+ * @global object $wpdb
34
  *
35
+ * @param array $columns
36
+ * @param mixed $offset
37
+ * @param mixed $per_page
38
+ * @param string $order_by
39
  *
40
+ * @return array
41
  */
42
  function get( $columns, $offset = false, $per_page = false, $order_by = 'media_id desc', $count_flag = false ){
43
  global $wpdb;
137
 
138
  /**
139
  *
140
+ * @param string $name
141
+ * @param array $arguments
142
  *
143
+ * @return array
144
  */
145
  function populate_results_fallback( $name, $arguments ){
146
  $result['result'] = false;
175
 
176
  /**
177
  *
178
+ * @param array $columns
179
+ * @param mixed $offset
180
+ * @param mixed $per_page
181
+ * @param string $order_by
182
  *
183
+ * @return array
184
  */
185
  function get_media( $columns, $offset = false, $per_page = false, $order_by = 'media_id desc', $count_flag = false ){
186
  if ( is_multisite() ){
194
 
195
  /**
196
  *
197
+ * @param integer $author_id
198
+ * @param mixed $offset
199
+ * @param mixed $per_page
200
+ * @param string $order_by
201
  *
202
+ * @return array $results
203
  */
204
  function get_user_albums( $author_id, $offset, $per_page, $order_by = 'media_id desc' ){
205
  global $wpdb;
249
 
250
  /**
251
  *
252
+ * @param integer $group_id
253
+ * @param mixed $offset
254
+ * @param mixed $per_page
255
+ * @param string $order_by
256
  *
257
+ * @return array $results
258
  */
259
  function get_group_albums( $group_id, $offset, $per_page, $order_by = 'media_id desc' ){
260
  global $wpdb;
297
 
298
  /**
299
  *
300
+ * @param mixed $user_id
301
+ * @param mixed $where_query
302
  *
303
+ * @return string $result
304
  */
305
  function get_counts( $user_id = false, $where_query = false ){
306
 
360
 
361
  /**
362
  *
363
+ * @param integer $profile_id
364
+ * @param string $context
365
  *
366
  * @return int
367
  */
app/helper/RTMediaThemes.php CHANGED
@@ -136,21 +136,21 @@ class RTMediaThemes {
136
  <img src="<?php echo $theme[ 'image' ]; ?>" />
137
  </div>
138
 
139
- <span class="more-details"><?php _e( 'Theme Details' ); ?></span>
140
 
141
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
142
 
143
  <div class="theme-actions">
144
- <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo' ); ?></a>
145
- <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now' ); ?></a>
146
  </div>
147
 
148
  <div class="rtm-theme-content hide">
149
  <div class="theme-wrap">
150
  <div class="theme-header">
151
- <button class="left rtm-previous dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show previous theme' ); ?></span></button>
152
- <button class="right rtm-next dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show next theme' ); ?></span></button>
153
- <button class="close rtm-close dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Close overlay' ); ?></span></button>
154
  </div>
155
 
156
  <div class="theme-about">
@@ -163,14 +163,14 @@ class RTMediaThemes {
163
  <div class="theme-info">
164
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
165
  <h4 class="theme-author">By <a href="https://rtcamp.com/"><?php echo $theme[ 'author' ]; ?></a></h4>
166
- <p class="theme-description"><?php echo $theme[ 'description' ]; ?> <a href="<?php echo $theme[ 'buy_url' ]; ?>" class="rtmedia-theme-inner-a" target="_blank"><?php _e( 'Read More' ); ?></a></p>
167
- <p class="theme-tags"><span><?php _e( 'Tags:' ); ?></span><?php echo $theme[ 'tags' ]; ?></p>
168
  </div>
169
  </div>
170
 
171
  <div class="theme-actions">
172
- <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo' ); ?></a>
173
- <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now' ); ?></a>
174
  </div>
175
  </div>
176
  </div>
@@ -251,21 +251,21 @@ class RTMediaThemes {
251
  <img src="<?php echo $theme[ 'image' ]; ?>" />
252
  </div>
253
 
254
- <span class="more-details"><?php _e( 'Theme Details' ); ?></span>
255
 
256
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
257
 
258
  <div class="theme-actions">
259
- <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo' ); ?></a>
260
- <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now' ); ?></a>
261
  </div>
262
 
263
  <div class="rtm-theme-content hide">
264
  <div class="theme-wrap">
265
  <div class="theme-header">
266
- <button class="left rtm-previous dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show previous theme' ); ?></span></button>
267
- <button class="right rtm-next dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show next theme' ); ?></span></button>
268
- <button class="close rtm-close dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Close overlay' ); ?></span></button>
269
  </div>
270
 
271
  <div class="theme-about">
@@ -278,14 +278,14 @@ class RTMediaThemes {
278
  <div class="theme-info">
279
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
280
  <h4 class="theme-author">By <a href="<?php echo $theme[ 'author_url' ]; ?>"><?php echo $theme[ 'author' ]; ?></a></h4>
281
- <p class="theme-description"><?php echo $theme[ 'description' ]; ?> <a href="<?php echo $theme[ 'buy_url' ]; ?>" class="rtmedia-theme-inner-a" target="_blank"><?php _e( 'Read More' ); ?></a></p>
282
- <p class="theme-tags"><span><?php _e( 'Tags:' ); ?></span><?php echo $theme[ 'tags' ]; ?></p>
283
  </div>
284
  </div>
285
 
286
  <div class="theme-actions">
287
- <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo' ); ?></a>
288
- <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now' ); ?></a>
289
  </div>
290
  </div>
291
  </div>
136
  <img src="<?php echo $theme[ 'image' ]; ?>" />
137
  </div>
138
 
139
+ <span class="more-details"><?php _e( 'Theme Details', 'rtmedia' ); ?></span>
140
 
141
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
142
 
143
  <div class="theme-actions">
144
+ <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo', 'rtmedia' ); ?></a>
145
+ <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now', 'rtmedia' ); ?></a>
146
  </div>
147
 
148
  <div class="rtm-theme-content hide">
149
  <div class="theme-wrap">
150
  <div class="theme-header">
151
+ <button class="left rtm-previous dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show previous theme', 'rtmedia' ); ?></span></button>
152
+ <button class="right rtm-next dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show next theme', 'rtmedia' ); ?></span></button>
153
+ <button class="close rtm-close dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Close overlay', 'rtmedia' ); ?></span></button>
154
  </div>
155
 
156
  <div class="theme-about">
163
  <div class="theme-info">
164
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
165
  <h4 class="theme-author">By <a href="https://rtcamp.com/"><?php echo $theme[ 'author' ]; ?></a></h4>
166
+ <p class="theme-description"><?php echo $theme[ 'description' ]; ?> <a href="<?php echo $theme[ 'buy_url' ]; ?>" class="rtmedia-theme-inner-a" target="_blank"><?php _e( 'Read More', 'rtmedia' ); ?></a></p>
167
+ <p class="theme-tags"><span><?php _e( 'Tags:', 'rtmedia' ); ?></span><?php echo $theme[ 'tags' ]; ?></p>
168
  </div>
169
  </div>
170
 
171
  <div class="theme-actions">
172
+ <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo', 'rtmedia' ); ?></a>
173
+ <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now', 'rtmedia' ); ?></a>
174
  </div>
175
  </div>
176
  </div>
251
  <img src="<?php echo $theme[ 'image' ]; ?>" />
252
  </div>
253
 
254
+ <span class="more-details"><?php _e( 'Theme Details', 'rtmedia' ); ?></span>
255
 
256
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
257
 
258
  <div class="theme-actions">
259
+ <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo', 'rtmedia' ); ?></a>
260
+ <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now', 'rtmedia' ); ?></a>
261
  </div>
262
 
263
  <div class="rtm-theme-content hide">
264
  <div class="theme-wrap">
265
  <div class="theme-header">
266
+ <button class="left rtm-previous dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show previous theme', 'rtmedia' ); ?></span></button>
267
+ <button class="right rtm-next dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show next theme', 'rtmedia' ); ?></span></button>
268
+ <button class="close rtm-close dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Close overlay', 'rtmedia' ); ?></span></button>
269
  </div>
270
 
271
  <div class="theme-about">
278
  <div class="theme-info">
279
  <h3 class="theme-name"><?php echo $theme[ 'name' ]; ?></h3>
280
  <h4 class="theme-author">By <a href="<?php echo $theme[ 'author_url' ]; ?>"><?php echo $theme[ 'author' ]; ?></a></h4>
281
+ <p class="theme-description"><?php echo $theme[ 'description' ]; ?> <a href="<?php echo $theme[ 'buy_url' ]; ?>" class="rtmedia-theme-inner-a" target="_blank"><?php _e( 'Read More', 'rtmedia' ); ?></a></p>
282
+ <p class="theme-tags"><span><?php _e( 'Tags:', 'rtmedia' ); ?></span><?php echo $theme[ 'tags' ]; ?></p>
283
  </div>
284
  </div>
285
 
286
  <div class="theme-actions">
287
+ <a class="button load-customize hide-if-no-customize" href="<?php echo $theme[ 'demo_url' ]; ?>"><?php _e( 'Live Demo', 'rtmedia' ); ?></a>
288
+ <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme[ 'buy_url' ]; ?>"><?php _e( 'Buy Now', 'rtmedia' ); ?></a>
289
  </div>
290
  </div>
291
  </div>
app/helper/db/RTDBModel.php CHANGED
@@ -35,10 +35,10 @@ if ( ! class_exists( 'RTDBModel' ) ){
35
 
36
  /**
37
  *
38
- * @global type $wpdb
39
  *
40
- * @param string $table_name
41
- * @param type $withprefix
42
  */
43
  public function set_table_name( $table_name, $withprefix = false ){
44
  global $wpdb;
@@ -51,7 +51,7 @@ if ( ! class_exists( 'RTDBModel' ) ){
51
  /**
52
  * set number of rows per page for pagination
53
  *
54
- * @param type $per_page
55
  */
56
  public function set_per_page( $per_page ){
57
  $this->per_page = $per_page;
@@ -61,12 +61,12 @@ if ( ! class_exists( 'RTDBModel' ) ){
61
  * Magic Method for getting DB rows by particular column.
62
  * E.g., get_by_<columnName>(params)
63
  *
64
- * @global type $wpdb
65
  *
66
- * @param type $name - Added get_by_<coulmname>(value,pagging=true,page_no=1)
67
- * @param type $arguments
68
  *
69
- * @return type result array
70
  */
71
  function __call( $name, $arguments ){
72
  $column_name = str_replace( 'get_by_', '', strtolower( $name ) );
@@ -124,11 +124,11 @@ if ( ! class_exists( 'RTDBModel' ) ){
124
 
125
  /**
126
  *
127
- * @global type $wpdb
128
  *
129
- * @param type $row
130
  *
131
- * @return type
132
  */
133
  function insert( $row ){
134
  global $wpdb;
@@ -146,10 +146,10 @@ if ( ! class_exists( 'RTDBModel' ) ){
146
 
147
  /**
148
  *
149
- * @global type $wpdb
150
  *
151
- * @param type $data
152
- * @param type $where
153
  */
154
  function update( $data, $where ){
155
  global $wpdb;
@@ -161,11 +161,11 @@ if ( ! class_exists( 'RTDBModel' ) ){
161
  * Get all the rows according to the columns set in $columns parameter.
162
  * offset and rows per page can also be passed for pagination.
163
  *
164
- * @global type $wpdb
165
  *
166
- * @param type $columns
167
  *
168
- * @return type
169
  */
170
  function get( $columns, $offset = false, $per_page = false, $order_by = 'id desc' ){
171
  $select = "SELECT * FROM {$this->table_name}";
@@ -213,11 +213,11 @@ if ( ! class_exists( 'RTDBModel' ) ){
213
 
214
  /**
215
  *
216
- * @global type $wpdb
217
  *
218
- * @param type $where
219
  *
220
- * @return type
221
  */
222
  function delete( $where ){
223
  global $wpdb;
35
 
36
  /**
37
  *
38
+ * @global object $wpdb
39
  *
40
+ * @param string $table_name
41
+ * @param mixed $withprefix
42
  */
43
  public function set_table_name( $table_name, $withprefix = false ){
44
  global $wpdb;
51
  /**
52
  * set number of rows per page for pagination
53
  *
54
+ * @param integer $per_page
55
  */
56
  public function set_per_page( $per_page ){
57
  $this->per_page = $per_page;
61
  * Magic Method for getting DB rows by particular column.
62
  * E.g., get_by_<columnName>(params)
63
  *
64
+ * @global object $wpdb
65
  *
66
+ * @param string $name - Added get_by_<coulmname>(value,pagging=true,page_no=1)
67
+ * @param array $arguments
68
  *
69
+ * @return array result array
70
  */
71
  function __call( $name, $arguments ){
72
  $column_name = str_replace( 'get_by_', '', strtolower( $name ) );
124
 
125
  /**
126
  *
127
+ * @global object $wpdb
128
  *
129
+ * @param array $row
130
  *
131
+ * @return integer
132
  */
133
  function insert( $row ){
134
  global $wpdb;
146
 
147
  /**
148
  *
149
+ * @global object $wpdb
150
  *
151
+ * @param array $data
152
+ * @param array $where
153
  */
154
  function update( $data, $where ){
155
  global $wpdb;
161
  * Get all the rows according to the columns set in $columns parameter.
162
  * offset and rows per page can also be passed for pagination.
163
  *
164
+ * @global object $wpdb
165
  *
166
+ * @param array $columns
167
  *
168
+ * @return array
169
  */
170
  function get( $columns, $offset = false, $per_page = false, $order_by = 'id desc' ){
171
  $select = "SELECT * FROM {$this->table_name}";
213
 
214
  /**
215
  *
216
+ * @global object $wpdb
217
  *
218
+ * @param array $where
219
  *
220
+ * @return array
221
  */
222
  function delete( $where ){
223
  global $wpdb;
app/importers/BPMediaAlbumimporter.php CHANGED
@@ -181,7 +181,7 @@ class BPMediaAlbumimporter extends BPMediaImporter {
181
  }
182
  echo '</div>';
183
  } else {
184
- echo '<p>' . __( 'Looks like you don\'t use BP Album. Is there any other BuddyPress Plugin you want an importer for?' ) . '</p>';
185
  echo '<p>' . sprintf( __( '<a href="%s">Create an issue</a> on GitHub requesting the same.', 'rtmedia' ), 'https://github.com/rtCamp/buddypress-media/issues/new' ) . '</p>';
186
  }
187
  }
181
  }
182
  echo '</div>';
183
  } else {
184
+ echo '<p>' . __( 'Looks like you don\'t use BP Album. Is there any other BuddyPress Plugin you want an importer for?', 'rtmedia' ) . '</p>';
185
  echo '<p>' . sprintf( __( '<a href="%s">Create an issue</a> on GitHub requesting the same.', 'rtmedia' ), 'https://github.com/rtCamp/buddypress-media/issues/new' ) . '</p>';
186
  }
187
  }
app/importers/RTMediaMediaSizeImporter.php CHANGED
@@ -63,7 +63,7 @@ class RTMediaMediaSizeImporter {
63
 
64
  function add_rtmedia_media_size_import_notice(){
65
  if ( current_user_can( 'manage_options' ) ){
66
- $this->create_notice( "<p><strong>rtMedia</strong>: Database table structure for rtMedia has been updated. Please <a href='" . admin_url( 'admin.php?page=rtmedia-migration-media-size-import&force=true' ) . "'>Click Here</a> to import media sizes. <a href='#' onclick='rtmedia_hide_media_size_import_notice()' style='float:right'>" . __( 'Hide' ) . '</a> </p>' );
67
  ?>
68
  <script type="text/javascript">
69
  function rtmedia_hide_media_size_import_notice() {
63
 
64
  function add_rtmedia_media_size_import_notice(){
65
  if ( current_user_can( 'manage_options' ) ){
66
+ $this->create_notice( "<p><strong>rtMedia</strong>: Database table structure for rtMedia has been updated. Please <a href='" . admin_url( 'admin.php?page=rtmedia-migration-media-size-import&force=true' ) . "'>Click Here</a> to import media sizes. <a href='#' onclick='rtmedia_hide_media_size_import_notice()' style='float:right'>" . __( 'Hide', 'rtmedia' ) . '</a> </p>' );
67
  ?>
68
  <script type="text/javascript">
69
  function rtmedia_hide_media_size_import_notice() {
app/main/RTMedia.php CHANGED
@@ -870,12 +870,20 @@ class RTMedia {
870
  // Dashicons: Needs if not loaded by WP
871
  wp_enqueue_style( 'dashicons' );
872
 
873
- // Dont enqueue main.css if default styles is checked false in rtmedia settings
 
 
874
  if ( ! ( isset( $rtmedia->options ) && isset( $rtmedia->options[ 'styles_enabled' ] ) && $rtmedia->options[ 'styles_enabled' ] == 0) ) {
875
- wp_enqueue_style( 'rtmedia-main', RTMEDIA_URL . 'app/assets/css/main.css', '', RTMEDIA_VERSION );
876
  }
877
 
878
- wp_enqueue_script( 'rtmedia-main', RTMEDIA_URL . 'app/assets/js/main.js', array( 'jquery', 'wp-mediaelement' ), RTMEDIA_VERSION );
 
 
 
 
 
 
879
 
880
  wp_localize_script( 'rtmedia-main', 'rtmedia_ajax_url', admin_url( 'admin-ajax.php' ) );
881
  wp_localize_script( 'rtmedia-main', 'rtmedia_media_slug', RTMEDIA_MEDIA_SLUG );
@@ -926,6 +934,8 @@ class RTMedia {
926
  $rtmedia_media_thumbs[ $key_type ] = $value_type[ 'thumbnail' ];
927
  }
928
  wp_localize_script( 'rtmedia-backbone', 'rtmedia_media_thumbs', $rtmedia_media_thumbs );
 
 
929
 
930
  // We are not using it anymore and hence commenting
931
  // global $rtmedia_query;
@@ -963,6 +973,54 @@ class RTMedia {
963
  }
964
 
965
  wp_localize_script( 'rtmedia-backbone', 'rtmedia_upload_progress_error_message', __( "There are some uploads in progress. Do you want to cancel them?", 'rtmedia' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
966
  }
967
 
968
  function set_bp_bar() {
870
  // Dashicons: Needs if not loaded by WP
871
  wp_enqueue_style( 'dashicons' );
872
 
873
+ // Dont enqueue rtmedia.min.css if default styles is checked false in rtmedia settings
874
+ $suffix = ( function_exists( 'rtm_get_script_style_suffix' ) ) ? rtm_get_script_style_suffix() : '.min';
875
+
876
  if ( ! ( isset( $rtmedia->options ) && isset( $rtmedia->options[ 'styles_enabled' ] ) && $rtmedia->options[ 'styles_enabled' ] == 0) ) {
877
+ wp_enqueue_style( 'rtmedia-main', RTMEDIA_URL . 'app/assets/css/rtmedia' . $suffix . '.css', '', RTMEDIA_VERSION );
878
  }
879
 
880
+ if( $suffix === '' ) {
881
+ wp_enqueue_script( 'rtmedia-magnific-popup', RTMEDIA_URL . 'app/assets/js/vendors/magnific-popup.js', array( 'jquery', 'wp-mediaelement' ), RTMEDIA_VERSION );
882
+ wp_enqueue_script( 'rtmedia-admin-tabs', RTMEDIA_URL . 'app/assets/admin/js/vendors/tabs.js', array( 'jquery', 'wp-mediaelement' ), RTMEDIA_VERSION );
883
+ wp_enqueue_script( 'rtmedia-main', RTMEDIA_URL . 'app/assets/js/rtMedia.js', array( 'jquery', 'wp-mediaelement' ), RTMEDIA_VERSION );
884
+ } else {
885
+ wp_enqueue_script( 'rtmedia-main', RTMEDIA_URL . 'app/assets/js/rtmedia.min.js', array( 'jquery', 'wp-mediaelement' ), RTMEDIA_VERSION );
886
+ }
887
 
888
  wp_localize_script( 'rtmedia-main', 'rtmedia_ajax_url', admin_url( 'admin-ajax.php' ) );
889
  wp_localize_script( 'rtmedia-main', 'rtmedia_media_slug', RTMEDIA_MEDIA_SLUG );
934
  $rtmedia_media_thumbs[ $key_type ] = $value_type[ 'thumbnail' ];
935
  }
936
  wp_localize_script( 'rtmedia-backbone', 'rtmedia_media_thumbs', $rtmedia_media_thumbs );
937
+ wp_localize_script( 'rtmedia-backbone', 'rtmedia_set_featured_image_msg', __( 'Featured media set successfully.', "rtmedia" ) );
938
+ wp_localize_script( 'rtmedia-backbone', 'rtmedia_unset_featured_image_msg', __( 'Featured media removed successfully.', "rtmedia" ) );
939
 
940
  // We are not using it anymore and hence commenting
941
  // global $rtmedia_query;
973
  }
974
 
975
  wp_localize_script( 'rtmedia-backbone', 'rtmedia_upload_progress_error_message', __( "There are some uploads in progress. Do you want to cancel them?", 'rtmedia' ) );
976
+
977
+ // localise media size config
978
+ $media_size_config = array(
979
+ 'photo' => array(
980
+ 'thumb' => array(
981
+ 'width' => $rtmedia->options[ 'defaultSizes_photo_thumbnail_width' ],
982
+ 'height' => $rtmedia->options[ 'defaultSizes_photo_thumbnail_height' ],
983
+ 'crop' => $rtmedia->options[ 'defaultSizes_photo_thumbnail_crop' ],
984
+ ),
985
+ 'medium' => array(
986
+ 'width' => $rtmedia->options[ 'defaultSizes_photo_medium_width' ],
987
+ 'height' => $rtmedia->options[ 'defaultSizes_photo_medium_height' ],
988
+ 'crop' => $rtmedia->options[ 'defaultSizes_photo_medium_crop' ],
989
+ ),
990
+ 'large' => array(
991
+ 'width' => $rtmedia->options[ 'defaultSizes_photo_large_width' ],
992
+ 'height' => $rtmedia->options[ 'defaultSizes_photo_large_height' ],
993
+ 'crop' => $rtmedia->options[ 'defaultSizes_photo_large_crop' ],
994
+ ),
995
+ ),
996
+ 'video' => array(
997
+ 'activity_media' => array(
998
+ 'width' => $rtmedia->options[ 'defaultSizes_video_activityPlayer_width' ],
999
+ 'height' => $rtmedia->options[ 'defaultSizes_video_activityPlayer_height' ],
1000
+ ),
1001
+ 'single_media' => array(
1002
+ 'width' => $rtmedia->options[ 'defaultSizes_video_singlePlayer_width' ],
1003
+ 'height' => $rtmedia->options[ 'defaultSizes_video_singlePlayer_height' ],
1004
+ ),
1005
+ ),
1006
+ 'music' => array(
1007
+ 'activity_media' => array(
1008
+ 'width' => $rtmedia->options[ 'defaultSizes_music_activityPlayer_width' ],
1009
+ ),
1010
+ 'single_media' => array(
1011
+ 'width' => $rtmedia->options[ 'defaultSizes_music_singlePlayer_width' ],
1012
+ ),
1013
+ ),
1014
+ 'featured' => array(
1015
+ 'default' => array(
1016
+ 'width' => $rtmedia->options[ 'defaultSizes_featured_default_width' ],
1017
+ 'height' => $rtmedia->options[ 'defaultSizes_featured_default_height' ],
1018
+ 'crop' => $rtmedia->options[ 'defaultSizes_featured_default_crop' ],
1019
+ )
1020
+ ),
1021
+ );
1022
+ wp_localize_script( 'rtmedia-main', 'rtmedia_media_size_config', $media_size_config );
1023
+
1024
  }
1025
 
1026
  function set_bp_bar() {
app/main/controllers/api/RTMediaJsonApi.php CHANGED
@@ -332,13 +332,13 @@ class RTMediaJsonApi{
332
  $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user_login ) );
333
 
334
  //create email message
335
- $message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
336
  $message .= get_option('siteurl') . "\r\n\r\n";
337
- $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
338
- $message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
339
  $message .='<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
340
  //send email meassage
341
- if (FALSE == wp_mail($user_email, sprintf(__('[%s] Password Reset'), get_option('blogname')), $message))
342
  echo $this->rtmedia_api_response_object ('FALSE', $this->ec_server_error, $this->msg_server_error);
343
  else{
344
  echo $this->rtmedia_api_response_object ('TRUE', $ec_email_sent, $msg_email_sent);
332
  $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user_login ) );
333
 
334
  //create email message
335
+ $message = __('Someone has asked to reset the password for the following site and username.', 'rtmedia') . "\r\n\r\n";
336
  $message .= get_option('siteurl') . "\r\n\r\n";
337
+ $message .= sprintf(__('Username: %s', 'rtmedia'), $user_login) . "\r\n\r\n";
338
+ $message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.', 'rtmedia') . "\r\n\r\n";
339
  $message .='<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
340
  //send email meassage
341
+ if (FALSE == wp_mail($user_email, sprintf(__('[%s] Password Reset','rtmedia'), get_option('blogname')), $message))
342
  echo $this->rtmedia_api_response_object ('FALSE', $this->ec_server_error, $this->msg_server_error);
343
  else{
344
  echo $this->rtmedia_api_response_object ('TRUE', $ec_email_sent, $msg_email_sent);
app/main/controllers/media/RTMediaFeatured.php CHANGED
@@ -169,9 +169,11 @@ class RTMediaFeatured extends RTMediaUserInteraction {
169
  if ( $this->action_query->id == $this->featured ){
170
  $this->set( 0 );
171
  $return['next'] = $this->label;
 
172
  } else {
173
  $this->set( $this->action_query->id );
174
  $return['next'] = $this->undo_label;
 
175
  }
176
  $return['status'] = true;
177
  global $rtmedia_points_media_id;
169
  if ( $this->action_query->id == $this->featured ){
170
  $this->set( 0 );
171
  $return['next'] = $this->label;
172
+ $return['action']= false;
173
  } else {
174
  $this->set( $this->action_query->id );
175
  $return['next'] = $this->undo_label;
176
+ $return['action']= true;
177
  }
178
  $return['status'] = true;
179
  global $rtmedia_points_media_id;
app/main/controllers/media/RTMediaGalleryItemAction.php CHANGED
@@ -49,7 +49,12 @@ class RTMediaGalleryItemAction {
49
  if ( $rtmedia_backbone[ 'backbone' ] ){
50
  echo "<%= media_actions %>";
51
  } else {
52
- if( is_rt_admin() || ( isset( $rtmedia_media ) && isset( $rtmedia_media->media_author ) && $rtmedia_media->media_author == get_current_user_id() ) ){
 
 
 
 
 
53
  ?>
54
  <div class='rtmedia-gallery-item-actions'>
55
  <a href="<?php rtmedia_permalink(); ?>edit" class='no-popup' target='_blank' title='<?php _e( 'Edit this media', 'rtmedia' ); ?>'>
@@ -66,7 +71,12 @@ class RTMediaGalleryItemAction {
66
  }
67
 
68
  function rtmedia_media_actions_backbone( $media_array ){
69
- if( $media_array->media_author == get_current_user_id() ){
 
 
 
 
 
70
  $media_array->media_actions = "<div class='rtmedia-gallery-item-actions'><a href='" . $media_array->rt_permalink . "edit' class='no-popup' target='_blank' title='" . __( 'Edit this media', 'rtmedia' ) ."'><i class='dashicons dashicons-edit rtmicon'></i>" . __( 'Edit', 'rtmedia' ) ."</a><a href='#' class='no-popup rtm-delete-media' title='" . __( 'Delete this media', 'rtmedia' ) . "' ><i class='dashicons dashicons-trash rtmicon'></i>" . __( 'Delete', 'rtmedia' ) ."</a></div>";
71
  } else {
72
  $media_array->media_actions = "";
49
  if ( $rtmedia_backbone[ 'backbone' ] ){
50
  echo "<%= media_actions %>";
51
  } else {
52
+ $context_id = $rtmedia_media->context_id;
53
+ $user_id = get_current_user_id();
54
+
55
+ if( is_rt_admin()
56
+ || ( function_exists( 'groups_is_user_mod' ) && groups_is_user_mod( $user_id, $context_id ) )
57
+ || ( isset( $rtmedia_media ) && isset( $rtmedia_media->media_author ) && $rtmedia_media->media_author == get_current_user_id() ) ) {
58
  ?>
59
  <div class='rtmedia-gallery-item-actions'>
60
  <a href="<?php rtmedia_permalink(); ?>edit" class='no-popup' target='_blank' title='<?php _e( 'Edit this media', 'rtmedia' ); ?>'>
71
  }
72
 
73
  function rtmedia_media_actions_backbone( $media_array ){
74
+ $context_id = $media_array->context_id;
75
+ $user_id = get_current_user_id();
76
+
77
+ if( is_rt_admin()
78
+ || ( function_exists( 'groups_is_user_mod' ) && groups_is_user_mod( $user_id, $context_id ) )
79
+ || $media_array->media_author == get_current_user_id() ) {
80
  $media_array->media_actions = "<div class='rtmedia-gallery-item-actions'><a href='" . $media_array->rt_permalink . "edit' class='no-popup' target='_blank' title='" . __( 'Edit this media', 'rtmedia' ) ."'><i class='dashicons dashicons-edit rtmicon'></i>" . __( 'Edit', 'rtmedia' ) ."</a><a href='#' class='no-popup rtm-delete-media' title='" . __( 'Delete this media', 'rtmedia' ) . "' ><i class='dashicons dashicons-trash rtmicon'></i>" . __( 'Delete', 'rtmedia' ) ."</a></div>";
81
  } else {
82
  $media_array->media_actions = "";
app/main/controllers/media/RTMediaLoginPopup.php CHANGED
@@ -35,7 +35,7 @@ class RTMediaLoginPopup {
35
 
36
  function rtmedia_add_upload_album_button_popup() {
37
  if ( ! is_user_logged_in() ) {
38
- echo '<span><a href="#rtmedia-login-register-modal" class="primary rtmedia-upload-media-link rtmedia-modal-link" id="rtmedia-login-register-modal" title="' . __( 'Upload Media', 'rtmedia' ) . '"><i class="dashicons dashicons-upload rtmicon"></i>' . __( 'Upload' ) . '</a></span>';
39
  }
40
  }
41
 
@@ -49,7 +49,7 @@ class RTMediaLoginPopup {
49
  <p><?php _e( "You need to be logged in to upload Media or to create Album.", 'rtmedia' ); ?></p>
50
 
51
  <p>
52
- <?php echo __( 'Click ' ) . '<a href="' . wp_login_url( $_SERVER['REQUEST_URI'] ) . '" title="' . __( 'Login', 'rtmedia' ) . '">' . __( 'HERE', 'rtmedia' ) . '</a>' . __( ' to login.', 'rtmedia' ); ?>
53
  </p>
54
  </div>
55
  </div>
35
 
36
  function rtmedia_add_upload_album_button_popup() {
37
  if ( ! is_user_logged_in() ) {
38
+ echo '<span><a href="#rtmedia-login-register-modal" class="primary rtmedia-upload-media-link rtmedia-modal-link" id="rtmedia-login-register-modal" title="' . __( 'Upload Media', 'rtmedia' ) . '"><i class="dashicons dashicons-upload rtmicon"></i>' . __( 'Upload', 'rtmedia' ) . '</a></span>';
39
  }
40
  }
41
 
49
  <p><?php _e( "You need to be logged in to upload Media or to create Album.", 'rtmedia' ); ?></p>
50
 
51
  <p>
52
+ <?php echo __( 'Click', 'rtmedia' ) . ' <a href="' . wp_login_url( $_SERVER['REQUEST_URI'] ) . '" title="' . __( 'Login', 'rtmedia' ) . '">' . __( 'HERE', 'rtmedia' ) . '</a>' . __( ' to login.', 'rtmedia' ); ?>
53
  </p>
54
  </div>
55
  </div>
app/main/controllers/media/RTMediaViewCount.php CHANGED
@@ -15,47 +15,25 @@ class RTMediaViewCount extends RTMediaUserInteraction {
15
  $args = array(
16
  'action' => 'view', 'label' => 'view', 'privacy' => 0
17
  );
18
- //add_action( 'init', array( $this,'register_session' ) );
19
  parent::__construct( $args );
20
  remove_filter( 'rtmedia_action_buttons_before_delete', array( $this, 'button_filter' ) );
21
  add_filter( 'rtmedia_action_buttons_after_delete', array( $this, 'button_filter' ), 99 );
22
  }
23
 
24
- // function register_session(){
25
- // if( !session_id() ) {
26
- // session_start();
27
- // }
28
- // }
29
-
30
  function render() {
31
- if ( isset( $_SESSION[ 'rtmedia_media_view' ] ) && $_SESSION[ 'rtmedia_media_view' ] != "" && sizeof( $_SESSION[ 'rtmedia_media_view' ] > 0 ) ){
32
- $key = array_search( $this->media->id, $_SESSION[ 'rtmedia_media_view' ] );
33
- if ( ! $key ){
34
- $_SESSION[ 'rtmedia_media_view' ][ ] = $this->media->id;
35
- $this->rtmedia_update_view_meta( $this->media->id, $this->action );
36
- }
37
- } else {
38
- $_SESSION[ 'rtmedia_media_view' ] = array();
39
- $_SESSION[ 'rtmedia_media_view' ][ ] = "do not consider 0 index in php";
40
- $_SESSION[ 'rtmedia_media_view' ][ ] = $this->media->id;
41
- $this->rtmedia_update_view_meta( $this->media->id, $this->action );
42
- }
43
  $link = trailingslashit( get_rtmedia_permalink( $this->media->id ) ) . $this->action . '/';
44
  //echo '<div style="clear:both"></div><form action="'. $link .'" id="rtmedia-media-view-form"></form>';
45
  echo '<form action="' . $link . '" id="rtmedia-media-view-form"></form>';
46
  do_action( "rtmedia_view_media_counts", $this );
47
  }
48
 
49
- function rtmedia_update_view_meta( $media_id, $action ) {
50
- $curr_count = get_rtmedia_meta( $media_id, $action );
51
- if ( ! $curr_count ){
52
- $curr_count = 1;
53
- } else {
54
- $curr_count ++;
55
- }
56
- update_rtmedia_meta( $media_id, $action, $curr_count, false );
57
- }
58
-
59
  function process() {
60
  $user_id = $this->interactor;
61
  if ( ! $user_id ){
15
  $args = array(
16
  'action' => 'view', 'label' => 'view', 'privacy' => 0
17
  );
 
18
  parent::__construct( $args );
19
  remove_filter( 'rtmedia_action_buttons_before_delete', array( $this, 'button_filter' ) );
20
  add_filter( 'rtmedia_action_buttons_after_delete', array( $this, 'button_filter' ), 99 );
21
  }
22
 
 
 
 
 
 
 
23
  function render() {
24
+ /**
25
+ * We were using session to store view count for a media by a particular user.
26
+ * Session will no more use in rtmedia.
27
+ *
28
+ * All Media View reports will be genrated using rtmedia_interaction table only
29
+ */
30
+
 
 
 
 
 
31
  $link = trailingslashit( get_rtmedia_permalink( $this->media->id ) ) . $this->action . '/';
32
  //echo '<div style="clear:both"></div><form action="'. $link .'" id="rtmedia-media-view-form"></form>';
33
  echo '<form action="' . $link . '" id="rtmedia-media-view-form"></form>';
34
  do_action( "rtmedia_view_media_counts", $this );
35
  }
36
 
 
 
 
 
 
 
 
 
 
 
37
  function process() {
38
  $user_id = $this->interactor;
39
  if ( ! $user_id ){
app/main/controllers/privacy/RTMediaPrivacy.php CHANGED
@@ -268,7 +268,7 @@ class RTMediaPrivacy {
268
  <div class="rtm-title"><h2><?php _e( 'Default Privacy', 'rtmedia' ); ?></h2></div>
269
  <div class="rtm-privacy-levels">
270
  <?php foreach ( $rtmedia->privacy_settings[ 'levels' ] as $level => $data ) { ?>
271
- <label><input type='radio' value='<?php echo $level; ?>' name ='rtmedia-default-privacy' <?php echo ($default_privacy == $level) ? "checked" : ""; ?> /> <?php _e( $data ); ?></label><br/>
272
  <?php } ?>
273
  </div>
274
  </div>
268
  <div class="rtm-title"><h2><?php _e( 'Default Privacy', 'rtmedia' ); ?></h2></div>
269
  <div class="rtm-privacy-levels">
270
  <?php foreach ( $rtmedia->privacy_settings[ 'levels' ] as $level => $data ) { ?>
271
+ <label><input type='radio' value='<?php echo $level; ?>' name ='rtmedia-default-privacy' <?php echo ($default_privacy == $level) ? "checked" : ""; ?> /> <?php echo $data; ?></label><br/>
272
  <?php } ?>
273
  </div>
274
  </div>
app/main/controllers/template/RTMediaNav.php CHANGED
@@ -193,7 +193,7 @@ class RTMediaNav {
193
  }
194
 
195
  $counts[ 'total' ][ "album" ] = $counts[ 'total' ][ "album" ] + $other_count;
196
- $album_label = __( defined('RTMEDIA_ALBUM_PLURAL_LABEL') ? constant ( 'RTMEDIA_ALBUM_PLURAL_LABEL' ) : 'Albums' );
197
  echo apply_filters ( 'rtmedia_sub_nav_albums', '<li id="rtmedia-nav-item-albums-li" ' . $albums . '><a id="rtmedia-nav-item-albums" href="' . trailingslashit ( $link ) . RTMEDIA_MEDIA_SLUG . '/album/">' . $album_label . '<span>' . ((isset ( $counts[ 'total' ][ "album" ] )) ? $counts[ 'total' ][ "album" ] : 0 ) . '</span>' . '</a></li>' );
198
  }
199
 
@@ -237,7 +237,7 @@ class RTMediaNav {
237
  );
238
  }
239
 
240
- $type_label = __( defined('RTMEDIA_' . $name . '_PLURAL_LABEL') ? constant ( 'RTMEDIA_' . $name . '_PLURAL_LABEL' ) : $type[ 'plural_label' ] );
241
  echo apply_filters ( 'rtmedia_sub_nav_' . $type[ 'name' ], '<li id="rtmedia-nav-item-' . $type[ 'name' ]
242
  . '-' . $context . '-' . $context_id . '-li" ' . $selected
243
  . '><a id="rtmedia-nav-item-' . $type[ 'name' ] . '" href="'
193
  }
194
 
195
  $counts[ 'total' ][ "album" ] = $counts[ 'total' ][ "album" ] + $other_count;
196
+ $album_label = __( defined('RTMEDIA_ALBUM_PLURAL_LABEL') ? constant ( 'RTMEDIA_ALBUM_PLURAL_LABEL' ) : 'Albums', 'rtmedia' );
197
  echo apply_filters ( 'rtmedia_sub_nav_albums', '<li id="rtmedia-nav-item-albums-li" ' . $albums . '><a id="rtmedia-nav-item-albums" href="' . trailingslashit ( $link ) . RTMEDIA_MEDIA_SLUG . '/album/">' . $album_label . '<span>' . ((isset ( $counts[ 'total' ][ "album" ] )) ? $counts[ 'total' ][ "album" ] : 0 ) . '</span>' . '</a></li>' );
198
  }
199
 
237
  );
238
  }
239
 
240
+ $type_label = __( defined('RTMEDIA_' . $name . '_PLURAL_LABEL') ? constant ( 'RTMEDIA_' . $name . '_PLURAL_LABEL' ) : $type[ 'plural_label' ], 'rtmedia' );
241
  echo apply_filters ( 'rtmedia_sub_nav_' . $type[ 'name' ], '<li id="rtmedia-nav-item-' . $type[ 'name' ]
242
  . '-' . $context . '-' . $context_id . '-li" ' . $selected
243
  . '><a id="rtmedia-nav-item-' . $type[ 'name' ] . '" href="'
app/main/controllers/template/RTMediaTemplate.php CHANGED
@@ -35,7 +35,7 @@ class RTMediaTemplate {
35
  }
36
 
37
  function enqueue_image_editor_scripts() {
38
- $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
39
 
40
  wp_enqueue_script( 'wp-ajax-response' );
41
  wp_enqueue_script( 'rtmedia-image-edit', admin_url( "js/image-edit$suffix.js" ), array( 'jquery', 'json2', 'imgareaselect' ), false, 1 );
35
  }
36
 
37
  function enqueue_image_editor_scripts() {
38
+ $suffix = ( function_exists( 'rtm_get_script_style_suffix' ) ) ? rtm_get_script_style_suffix() : '.min';
39
 
40
  wp_enqueue_script( 'wp-ajax-response' );
41
  wp_enqueue_script( 'rtmedia-image-edit', admin_url( "js/image-edit$suffix.js" ), array( 'jquery', 'json2', 'imgareaselect' ), false, 1 );
app/main/controllers/template/rt-template-functions.php CHANGED
@@ -361,7 +361,6 @@ function rtmedia_image( $size = 'rt_media_thumbnail', $id = false, $recho = true
361
  $thumbnail_id = 0;
362
  if ( isset( $media_object->media_type ) ) {
363
  if ( $media_object->media_type == 'album' || $media_object->media_type != 'photo' || $media_object->media_type == 'video' ) {
364
- $thumbnail_id = ( isset( $media_object->cover_art ) && ( $media_object->cover_art != "0" ) ) ? $media_object->cover_art : false;
365
  $thumbnail_id = apply_filters( 'show_custom_album_cover', $thumbnail_id, $media_object->media_type, $media_object->id ); // for rtMedia pro users
366
  } elseif ( $media_object->media_type == 'photo' ) {
367
  $thumbnail_id = $media_object->media_id;
@@ -828,7 +827,7 @@ function rmedia_single_comment( $comment ) {
828
 
829
  global $rtmedia_media;
830
  if ( is_rt_admin() || ( isset( $comment[ 'user_id' ] ) && ( get_current_user_id() == $comment[ 'user_id' ] || $rtmedia_media->media_author == get_current_user_id() ) ) || apply_filters( 'rtmedia_allow_comment_delete', false ) ) { // show delete button for comment author and admins
831
- $html .= '<i data-id="' . $comment[ 'comment_ID' ] . '" class = "rtmedia-delete-comment dashicons dashicons-no-alt rtmicon" title="' . __( 'Delete Comment' ) . '"></i>';
832
  }
833
 
834
  $html .= '<div class="clear"></div></div></div></li>';
@@ -2230,7 +2229,7 @@ function rtmedia_content_before_media() {
2230
 
2231
  if ( $rt_ajax_request ) {
2232
  ?>
2233
- <span class="rtm-mfp-close mfp-close dashicons dashicons-no-alt" title="<?php _e( "Close (Esc)" ); ?>"></span><?php
2234
  }
2235
  }
2236
 
@@ -2722,3 +2721,12 @@ function rtm_filter_metaid_column_name( $q ) {
2722
  }
2723
  return $q;
2724
  }
 
 
 
 
 
 
 
 
 
361
  $thumbnail_id = 0;
362
  if ( isset( $media_object->media_type ) ) {
363
  if ( $media_object->media_type == 'album' || $media_object->media_type != 'photo' || $media_object->media_type == 'video' ) {
 
364
  $thumbnail_id = apply_filters( 'show_custom_album_cover', $thumbnail_id, $media_object->media_type, $media_object->id ); // for rtMedia pro users
365
  } elseif ( $media_object->media_type == 'photo' ) {
366
  $thumbnail_id = $media_object->media_id;
827
 
828
  global $rtmedia_media;
829
  if ( is_rt_admin() || ( isset( $comment[ 'user_id' ] ) && ( get_current_user_id() == $comment[ 'user_id' ] || $rtmedia_media->media_author == get_current_user_id() ) ) || apply_filters( 'rtmedia_allow_comment_delete', false ) ) { // show delete button for comment author and admins
830
+ $html .= '<i data-id="' . $comment[ 'comment_ID' ] . '" class = "rtmedia-delete-comment dashicons dashicons-no-alt rtmicon" title="' . __( 'Delete Comment', 'rtmedia' ) . '"></i>';
831
  }
832
 
833
  $html .= '<div class="clear"></div></div></div></li>';
2229
 
2230
  if ( $rt_ajax_request ) {
2231
  ?>
2232
+ <span class="rtm-mfp-close mfp-close dashicons dashicons-no-alt" title="<?php _e( "Close (Esc)", 'rtmedia' ); ?>"></span><?php
2233
  }
2234
  }
2235
 
2721
  }
2722
  return $q;
2723
  }
2724
+
2725
+ /*
2726
+ * Checking if SCRIPT_DEBUG constant is defined or not
2727
+ */
2728
+ function rtm_get_script_style_suffix() {
2729
+ $suffix = ( defined( 'SCRIPT_DEBUG' ) && constant( 'SCRIPT_DEBUG' ) === true ) ? '' : '.min';
2730
+
2731
+ return $suffix;
2732
+ }
app/services/RTMediaEncoding.php CHANGED
@@ -244,7 +244,7 @@ class RTMediaEncoding {
244
  if ( isset( $usage_details[ $this->api_key ]->plan->name ) && (strtolower( $usage_details[ $this->api_key ]->plan->name ) == strtolower( $name )) && $usage_details[ $this->api_key ]->sub_status && ! $force ) {
245
  $form = '<button data-plan="' . $name . '" data-price="' . $price . '" type="submit" class="button bpm-unsubscribe">' . __( 'Unsubscribe', 'rtmedia' ) . '</button>';
246
  $form .= '<div id="bpm-unsubscribe-dialog" title="Unsubscribe">
247
- <p>' . __( 'Just to improve our service we would like to know the reason for you to leave us.' ) . '</p>
248
  <p><textarea rows="3" cols="36" id="bpm-unsubscribe-note"></textarea></p>
249
  </div>';
250
  } else {
@@ -577,9 +577,9 @@ class RTMediaEncoding {
577
  add_filter( 'wp_mail_content_type', create_function( '', 'return "text/html";' ) );
578
  wp_mail( $admin_email_ids, $subject, $message );
579
  }
580
- _e( $flag );
581
  } elseif ( $flag ) {
582
- _e( $flag );
583
  } else {
584
  _e( "Done", 'rtmedia' );
585
  }
@@ -606,7 +606,7 @@ class RTMediaEncoding {
606
  echo json_encode( array( 'error' => $subscription_info->message ) );
607
  }
608
  } else {
609
- echo json_encode( array( 'error' => __( 'Something went wrong please try again.' ) ) );
610
  }
611
  }
612
  die();
244
  if ( isset( $usage_details[ $this->api_key ]->plan->name ) && (strtolower( $usage_details[ $this->api_key ]->plan->name ) == strtolower( $name )) && $usage_details[ $this->api_key ]->sub_status && ! $force ) {
245
  $form = '<button data-plan="' . $name . '" data-price="' . $price . '" type="submit" class="button bpm-unsubscribe">' . __( 'Unsubscribe', 'rtmedia' ) . '</button>';
246
  $form .= '<div id="bpm-unsubscribe-dialog" title="Unsubscribe">
247
+ <p>' . __( 'Just to improve our service we would like to know the reason for you to leave us.', 'rtmedia' ) . '</p>
248
  <p><textarea rows="3" cols="36" id="bpm-unsubscribe-note"></textarea></p>
249
  </div>';
250
  } else {
577
  add_filter( 'wp_mail_content_type', create_function( '', 'return "text/html";' ) );
578
  wp_mail( $admin_email_ids, $subject, $message );
579
  }
580
+ echo $flag;
581
  } elseif ( $flag ) {
582
+ echo $flag;
583
  } else {
584
  _e( "Done", 'rtmedia' );
585
  }
606
  echo json_encode( array( 'error' => $subscription_info->message ) );
607
  }
608
  } else {
609
+ echo json_encode( array( 'error' => __( 'Something went wrong please try again.', 'rtmedia' ) ) );
610
  }
611
  }
612
  die();
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
- Version: 3.8.11
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
+ Version: 3.8.12
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
languages/rtmedia.po CHANGED
@@ -1,3021 +1,3018 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: BuddyPress Media\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-07-07 19:37+0530\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: rtMedia <info@rtcamp.com>\n"
9
- "Language: en_IN\n"
10
  "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.5.4\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
- "_n_noop:1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_c();"
18
- "_nc:4c,1,2\n"
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPath-1: ..\n"
 
21
 
22
- #: ../templates/media/album-gallery.php:14
23
- msgid "Album List"
24
  msgstr ""
25
 
26
- #: ../templates/media/album-gallery.php:56
27
- #: ../templates/media/media-gallery.php:65
28
- #: ../app/admin/RTMediaFormHandler.php:285
29
- msgid "Load More"
30
  msgstr ""
31
 
32
- #: ../templates/media/album-gallery.php:64
33
- #: ../templates/media/media-single-edit.php:61
34
- #: ../templates/media/media-single.php:146
35
- msgid "Sorry !! There's no media found for the request !!"
36
  msgstr ""
37
 
38
- #: ../templates/media/media-gallery.php:9
39
- #: ../templates/media/media-gallery.php:25
40
- msgid "Media Gallery"
41
  msgstr ""
42
 
43
- #: ../templates/media/media-gallery.php:73
44
- msgid "Oops !! There's no media found for the request !!"
45
  msgstr ""
46
 
47
- #: ../templates/media/media-single-edit.php:8 ../app/main/RTMedia.php:915
48
- msgid "Edit Media"
49
  msgstr ""
50
 
51
- #: ../templates/media/media-single-edit.php:16
52
- #: ../templates/media/album-single-edit.php:16
53
- #: ../app/helper/RTMediaSupport.php:447
54
- msgid "Details"
55
  msgstr ""
56
 
57
- #: ../templates/media/media-single-edit.php:26
58
- #: ../templates/media/album-single-edit.php:35
59
- msgid "Title : "
60
  msgstr ""
61
 
62
- #: ../templates/media/media-single-edit.php:32
63
- #: ../templates/media/album-single-edit.php:42
64
- msgid "Description: "
65
  msgstr ""
66
 
67
- #: ../templates/media/media-single-edit.php:46
68
- msgid "Save"
69
  msgstr ""
70
 
71
- #: ../templates/media/media-single-edit.php:47
72
- msgid "Back"
73
  msgstr ""
74
 
75
- #: ../templates/media/media-single-edit.php:54
76
- msgid "Sorry !! You do not have rights to edit this media"
77
  msgstr ""
78
 
79
- #: ../templates/media/media-single.php:35
80
- msgid "under"
81
  msgstr ""
82
 
83
- #: ../templates/media/media-single.php:82
84
- #: ../templates/media/media-single.php:122
85
- #: ../app/main/controllers/template/rt-template-functions.php:1430
86
- msgid "Comment"
87
  msgstr ""
88
 
89
- #: ../templates/media/album-single-edit.php:12
90
- msgid "Edit Album : "
91
  msgstr ""
92
 
93
- #: ../templates/media/album-single-edit.php:18
94
- msgid "Manage Media"
95
  msgstr ""
96
 
97
- #: ../templates/media/album-single-edit.php:50
98
- #: ../app/main/controllers/privacy/RTMediaPrivacy.php:277
99
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:113
100
- msgid "Save Changes"
101
  msgstr ""
102
 
103
- #: ../templates/media/album-single-edit.php:64 ../app/main/RTMedia.php:903
104
- msgid "Select All Visible"
105
  msgstr ""
106
 
107
- #: ../templates/media/album-single-edit.php:65
108
- msgid "Move Selected media to another album."
109
  msgstr ""
110
 
111
- #: ../templates/media/album-single-edit.php:65
112
- msgid "Move"
113
  msgstr ""
114
 
115
- #: ../templates/media/album-single-edit.php:67
116
- msgid "Delete Selected media from the album."
117
  msgstr ""
118
 
119
- #: ../templates/media/album-single-edit.php:67 ../app/main/RTMedia.php:914
120
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:59
121
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:70
122
- #: ../app/main/controllers/template/rt-template-functions.php:1466
123
- #: ../app/main/controllers/template/rt-template-functions.php:1473
124
- msgid "Delete"
125
  msgstr ""
126
 
127
- #: ../templates/media/album-single-edit.php:72
128
- msgid "Move selected media to the album : "
 
129
  msgstr ""
130
 
131
- #: ../templates/media/album-single-edit.php:74
132
- msgid "Move Selected"
 
133
  msgstr ""
134
 
135
- #: ../templates/media/album-single-edit.php:96
136
- msgid "Prev"
 
137
  msgstr ""
138
 
139
- #: ../templates/media/album-single-edit.php:105
140
- msgid "Next"
 
 
 
141
  msgstr ""
142
 
143
- #: ../templates/media/album-single-edit.php:108
144
- msgid "The album is empty."
 
145
  msgstr ""
146
 
147
- #: ../templates/media/album-single-edit.php:118
148
- msgid "Sorry !! You can not edit this album."
 
149
  msgstr ""
150
 
151
- #: ../app/main/RTMedia.php:302
152
- msgid "Photo"
 
153
  msgstr ""
154
 
155
- #: ../app/main/RTMedia.php:303
156
- msgid "Photos"
157
  msgstr ""
158
 
159
- #: ../app/main/RTMedia.php:311
160
- msgid "Video"
161
  msgstr ""
162
 
163
- #: ../app/main/RTMedia.php:312
164
- msgid "Videos"
165
  msgstr ""
166
 
167
- #: ../app/main/RTMedia.php:320 ../app/main/RTMedia.php:321
168
- msgid "Music"
 
 
169
  msgstr ""
170
 
171
- #: ../app/main/RTMedia.php:408
172
- msgid "Private - Visible only to the user"
173
  msgstr ""
174
 
175
- #: ../app/main/RTMedia.php:409
176
- msgid "Friends - Visible to user's friends"
177
  msgstr ""
178
 
179
- #: ../app/main/RTMedia.php:410
180
- msgid "Logged in Users - Visible to registered users"
181
  msgstr ""
182
 
183
- #: ../app/main/RTMedia.php:411
184
- msgid "Public - Visible to the world"
185
  msgstr ""
186
 
187
- #: ../app/main/RTMedia.php:562 ../app/importers/BPMediaAlbumimporter.php:90
188
- msgid "Media"
189
  msgstr ""
190
 
191
- #: ../app/main/RTMedia.php:568
192
- #: ../app/main/controllers/template/RTMediaNav.php:175
193
- #: ../app/main/controllers/template/rt-template-functions.php:83
194
- msgid "All"
195
  msgstr ""
196
 
197
- #: ../app/main/RTMedia.php:577
198
- #: ../app/main/controllers/upload/RTMediaUploadView.php:51
199
- #: ../app/main/controllers/upload/RTMediaUploadView.php:54
200
- #: ../app/main/controllers/media/RTMediaAlbum.php:49
201
- #: ../app/main/controllers/template/rt-template-functions.php:1386
202
- msgid "Album"
203
  msgstr ""
204
 
205
- #: ../app/main/RTMedia.php:580
206
- #: ../app/main/controllers/media/RTMediaAlbum.php:48
207
- #: ../app/main/controllers/media/RTMediaAlbum.php:60
208
- #: ../app/main/controllers/template/RTMediaNav.php:196
209
- msgid "Albums"
210
  msgstr ""
211
 
212
- #: ../app/main/RTMedia.php:588
213
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:38
214
- #: ../app/main/controllers/template/rt-template-functions.php:2155
215
- #: ../app/main/controllers/template/rt-template-functions.php:2159
216
- msgid "Upload"
217
  msgstr ""
218
 
219
- #: ../app/main/RTMedia.php:592
220
- msgid "Wall Post"
221
  msgstr ""
222
 
223
- #: ../app/main/RTMedia.php:803 ../app/main/RTMedia.php:812
224
- msgid "Wall Posts"
 
 
 
225
  msgstr ""
226
 
227
- #: ../app/main/RTMedia.php:855
228
- msgid ": Can't Create Database table. Please check create table permission."
229
  msgstr ""
230
 
231
- #: ../app/main/RTMedia.php:891
232
- msgid "Loading media"
233
  msgstr ""
234
 
235
- #: ../app/main/RTMedia.php:892
236
- msgid "Please enter some content to post."
237
  msgstr ""
238
 
239
- #: ../app/main/RTMedia.php:893
240
- msgid "Empty Comment is not allowed."
241
  msgstr ""
242
 
243
- #: ../app/main/RTMedia.php:894
244
- msgid "Are you sure you want to delete this media?"
245
  msgstr ""
246
 
247
- #: ../app/main/RTMedia.php:895
248
- msgid "Are you sure you want to delete this comment?"
249
  msgstr ""
250
 
251
- #: ../app/main/RTMedia.php:896
252
- msgid "Are you sure you want to delete this Album?"
253
  msgstr ""
254
 
255
- #: ../app/main/RTMedia.php:897
256
- msgid "Drop files here"
257
  msgstr ""
258
 
259
- #: ../app/main/RTMedia.php:898
260
- msgid "album created successfully."
261
  msgstr ""
262
 
263
- #: ../app/main/RTMedia.php:899
264
- msgid "Something went wrong. Please try again."
265
  msgstr ""
266
 
267
- #: ../app/main/RTMedia.php:900
268
- msgid "Enter an album name."
269
  msgstr ""
270
 
271
- #: ../app/main/RTMedia.php:901
272
- msgid "Max file Size Limit : "
273
  msgstr ""
274
 
275
- #: ../app/main/RTMedia.php:902
276
- msgid "Allowed File Formats"
 
277
  msgstr ""
278
 
279
- #: ../app/main/RTMedia.php:904
280
- msgid "Unselect All Visible"
281
  msgstr ""
282
 
283
- #: ../app/main/RTMedia.php:905
284
- msgid "Please select some media."
285
  msgstr ""
286
 
287
- #: ../app/main/RTMedia.php:906
288
- msgid "Are you sure you want to delete the selected media?"
289
  msgstr ""
290
 
291
- #: ../app/main/RTMedia.php:907
292
- msgid "Are you sure you want to move the selected media?"
293
  msgstr ""
294
 
295
- #: ../app/main/RTMedia.php:908
296
- msgid "Waiting"
297
  msgstr ""
298
 
299
- #: ../app/main/RTMedia.php:909
300
- msgid "Uploaded"
301
  msgstr ""
302
 
303
- #: ../app/main/RTMedia.php:910
304
- msgid "Uploading"
305
  msgstr ""
306
 
307
- #: ../app/main/RTMedia.php:911
308
- msgid "Failed"
309
  msgstr ""
310
 
311
- #: ../app/main/RTMedia.php:912
312
- msgid "Close"
313
  msgstr ""
314
 
315
- #: ../app/main/RTMedia.php:913
316
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:56
317
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:70
318
- #: ../app/main/controllers/template/rt-template-functions.php:730
319
- #: ../app/main/controllers/template/rt-template-functions.php:751
320
- msgid "Edit"
321
  msgstr ""
322
 
323
- #: ../app/main/RTMedia.php:916
324
- msgid "Remove from queue"
325
  msgstr ""
326
 
327
- #: ../app/main/RTMedia.php:917
328
- msgid "Add more files"
329
  msgstr ""
330
 
331
- #: ../app/main/RTMedia.php:918
332
- msgid "File not supported"
333
  msgstr ""
334
 
335
- #: ../app/main/RTMedia.php:919
336
- msgid "more"
337
  msgstr ""
338
 
339
- #: ../app/main/RTMedia.php:920
340
- msgid "less"
341
  msgstr ""
342
 
343
- #: ../app/main/RTMedia.php:921
344
- msgid "This media is uploaded. Are you sure you want to delete this media?"
 
 
 
345
  msgstr ""
346
 
347
- #: ../app/main/RTMedia.php:965
348
- msgid "There are some uploads in progress. Do you want to cancel them?"
 
349
  msgstr ""
350
 
351
- #: ../app/main/controllers/api/RTMediaJsonApi.php:166
352
- msgid "username/password empty"
 
353
  msgstr ""
354
 
355
- #: ../app/main/controllers/api/RTMediaJsonApi.php:169
356
- msgid "incorrect username"
 
 
 
357
  msgstr ""
358
 
359
- #: ../app/main/controllers/api/RTMediaJsonApi.php:172
360
- msgid "incorrect password"
 
 
 
361
  msgstr ""
362
 
363
- #: ../app/main/controllers/api/RTMediaJsonApi.php:175
364
- msgid "login success"
365
  msgstr ""
366
 
367
- #: ../app/main/controllers/api/RTMediaJsonApi.php:221
368
- msgid "fields empty"
369
  msgstr ""
370
 
371
- #: ../app/main/controllers/api/RTMediaJsonApi.php:224
372
- msgid "invalid email"
373
  msgstr ""
374
 
375
- #: ../app/main/controllers/api/RTMediaJsonApi.php:227
376
- msgid "password do not match"
 
 
 
377
  msgstr ""
378
 
379
- #: ../app/main/controllers/api/RTMediaJsonApi.php:230
380
- msgid "username already registered"
 
 
381
  msgstr ""
382
 
383
- #: ../app/main/controllers/api/RTMediaJsonApi.php:233
384
- msgid "email already exists"
 
385
  msgstr ""
386
 
387
- #: ../app/main/controllers/api/RTMediaJsonApi.php:236
388
- msgid "new user created"
389
  msgstr ""
390
 
391
- #: ../app/main/controllers/api/RTMediaJsonApi.php:297
392
- msgid "email empty"
 
393
  msgstr ""
394
 
395
- #: ../app/main/controllers/api/RTMediaJsonApi.php:300
396
- msgid "username/email not registered"
397
  msgstr ""
398
 
399
- #: ../app/main/controllers/api/RTMediaJsonApi.php:303
400
- msgid "reset link sent"
401
  msgstr ""
402
 
403
- #: ../app/main/controllers/api/RTMediaJsonApi.php:335
404
  msgid ""
405
- "Someone has asked to reset the password for the following site and username."
 
406
  msgstr ""
407
 
408
- #: ../app/main/controllers/api/RTMediaJsonApi.php:337
409
- #, php-format
410
- msgid "Username: %s"
411
  msgstr ""
412
 
413
- #: ../app/main/controllers/api/RTMediaJsonApi.php:338
414
- msgid ""
415
- "To reset your password visit the following address, otherwise just ignore "
416
- "this email and nothing will happen."
417
  msgstr ""
418
 
419
- #: ../app/main/controllers/api/RTMediaJsonApi.php:341
420
- #, php-format
421
- msgid "[%s] Password Reset"
422
  msgstr ""
423
 
424
- #: ../app/main/controllers/api/RTMediaJsonApi.php:356
425
- msgid "bp activities"
426
  msgstr ""
427
 
428
- #: ../app/main/controllers/api/RTMediaJsonApi.php:359
429
- msgid "user activities"
430
  msgstr ""
431
 
432
- #: ../app/main/controllers/api/RTMediaJsonApi.php:389
433
- msgid "comment content missing"
434
  msgstr ""
435
 
436
- #: ../app/main/controllers/api/RTMediaJsonApi.php:392
437
- msgid "comment posted"
438
  msgstr ""
439
 
440
- #: ../app/main/controllers/api/RTMediaJsonApi.php:439
441
- msgid "unliked media"
442
  msgstr ""
443
 
444
- #: ../app/main/controllers/api/RTMediaJsonApi.php:442
445
- msgid "liked media"
446
  msgstr ""
447
 
448
- #: ../app/main/controllers/api/RTMediaJsonApi.php:526
449
- msgid "no comments"
450
  msgstr ""
451
 
452
- #: ../app/main/controllers/api/RTMediaJsonApi.php:529
453
- msgid "media comments"
454
  msgstr ""
455
 
456
- #: ../app/main/controllers/api/RTMediaJsonApi.php:532
457
- msgid "my comments"
458
  msgstr ""
459
 
460
- #: ../app/main/controllers/api/RTMediaJsonApi.php:582
461
- msgid "no likes"
462
  msgstr ""
463
 
464
- #: ../app/main/controllers/api/RTMediaJsonApi.php:585
465
- msgid "media likes"
 
 
466
  msgstr ""
467
 
468
- #: ../app/main/controllers/api/RTMediaJsonApi.php:627
469
- msgid "invalid comment/media id"
470
  msgstr ""
471
 
472
- #: ../app/main/controllers/api/RTMediaJsonApi.php:630
473
- msgid "no comment id"
474
  msgstr ""
475
 
476
- #: ../app/main/controllers/api/RTMediaJsonApi.php:633
477
- msgid "comment deleted"
478
  msgstr ""
479
 
480
- #: ../app/main/controllers/api/RTMediaJsonApi.php:676
481
- msgid "no profile found"
482
  msgstr ""
483
 
484
- #: ../app/main/controllers/api/RTMediaJsonApi.php:679
485
- msgid "profile fields"
486
  msgstr ""
487
 
488
- #: ../app/main/controllers/api/RTMediaJsonApi.php:773
489
- msgid "follow user id missing"
490
  msgstr ""
491
 
492
- #: ../app/main/controllers/api/RTMediaJsonApi.php:776
493
- msgid "started following"
494
  msgstr ""
495
 
496
- #: ../app/main/controllers/api/RTMediaJsonApi.php:779
497
- msgid "already following"
 
 
 
498
  msgstr ""
499
 
500
- #: ../app/main/controllers/api/RTMediaJsonApi.php:811
501
- msgid "unfollow id missing"
502
  msgstr ""
503
 
504
- #: ../app/main/controllers/api/RTMediaJsonApi.php:814
505
- msgid "stopped following"
 
 
506
  msgstr ""
507
 
508
- #: ../app/main/controllers/api/RTMediaJsonApi.php:817
509
- msgid "not following"
510
  msgstr ""
511
 
512
- #: ../app/main/controllers/api/RTMediaJsonApi.php:849
513
- msgid "name/location empty"
514
  msgstr ""
515
 
516
- #: ../app/main/controllers/api/RTMediaJsonApi.php:852
517
- msgid "profile updated"
518
  msgstr ""
519
 
520
- #: ../app/main/controllers/api/RTMediaJsonApi.php:878
521
- #: ../app/main/controllers/api/RTMediaJsonApi.php:905
522
- msgid "no file"
 
523
  msgstr ""
524
 
525
- #: ../app/main/controllers/api/RTMediaJsonApi.php:881
526
- #: ../app/main/controllers/api/RTMediaJsonApi.php:917
527
- msgid "upload failed, check size and file type"
528
  msgstr ""
529
 
530
- #: ../app/main/controllers/api/RTMediaJsonApi.php:884
531
- msgid "avatar updated"
532
  msgstr ""
533
 
534
- #: ../app/main/controllers/api/RTMediaJsonApi.php:908
535
- msgid "invalid file string"
 
536
  msgstr ""
537
 
538
- #: ../app/main/controllers/api/RTMediaJsonApi.php:911
539
- msgid "image type missing"
540
  msgstr ""
541
 
542
- #: ../app/main/controllers/api/RTMediaJsonApi.php:914
543
- msgid "no title"
 
 
544
  msgstr ""
545
 
546
- #: ../app/main/controllers/api/RTMediaJsonApi.php:920
547
- msgid "media updated"
548
  msgstr ""
549
 
550
- #: ../app/main/controllers/api/RTMediaJsonApi.php:1050
551
- msgid "media list"
552
  msgstr ""
553
 
554
- #: ../app/main/controllers/api/RTMediaJsonApi.php:1053
555
- msgid "no media found for requested media type"
556
  msgstr ""
557
 
558
- #: ../app/main/controllers/api/RTMediaJsonApi.php:1056
559
- msgid "media_type not allowed"
560
  msgstr ""
561
 
562
- #: ../app/main/controllers/api/RTMediaJsonApi.php:1146
563
- msgid "single media"
564
  msgstr ""
565
 
566
- #: ../app/main/controllers/upload/RTMediaUploadEndpoint.php:99
567
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:339
568
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:341
569
- #, php-format
570
- msgid "%s added %d %s"
571
  msgstr ""
572
 
573
- #: ../app/main/controllers/upload/RTMediaUploadView.php:67
574
- msgid "Privacy: "
575
  msgstr ""
576
 
577
- #: ../app/main/controllers/upload/RTMediaUploadView.php:74
578
- #: ../app/main/controllers/upload/RTMediaUploadView.php:108
579
- #: ../app/main/controllers/upload/RTMediaUploadView.php:125
580
- msgid "File Upload"
581
  msgstr ""
582
 
583
- #: ../app/main/controllers/upload/RTMediaUploadView.php:78
584
- msgid "Select your files"
585
  msgstr ""
586
 
587
- #: ../app/main/controllers/upload/RTMediaUploadView.php:79
588
- msgid "or"
589
  msgstr ""
590
 
591
- #: ../app/main/controllers/upload/RTMediaUploadView.php:79
592
- msgid "Drop your files here"
593
  msgstr ""
594
 
595
- #: ../app/main/controllers/upload/RTMediaUploadView.php:116
596
- msgid "Start upload"
597
  msgstr ""
598
 
599
- #: ../app/main/controllers/upload/RTMediaUploadView.php:132
600
- msgid "Attach Media"
601
  msgstr ""
602
 
603
- #: ../app/main/controllers/upload/RTMediaUploadView.php:147
604
- msgid "Insert from URL"
605
  msgstr ""
606
 
607
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:59
608
- msgid "Error Uploading File"
609
  msgstr ""
610
 
611
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:213
612
- msgid "MP4 file you have uploaded is corrupt."
613
  msgstr ""
614
 
615
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:220
616
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:225
617
- msgid ""
618
- "The MP4 file you have uploaded is using an unsupported video codec. "
619
- "Supported video codec is H.264."
620
  msgstr ""
621
 
622
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:230
623
- msgid "The MP4 file you have uploaded is not a video file."
624
  msgstr ""
625
 
626
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:243
627
- msgid "MP3 file you have uploaded is currupt."
628
  msgstr ""
629
 
630
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:250
631
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:255
632
  msgid ""
633
- "The MP3 file you have uploaded is using an unsupported audio format. "
634
- "Supported audio format is MP3."
635
  msgstr ""
636
 
637
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:260
638
- msgid "The MP3 file you have uploaded is not an audio file."
639
  msgstr ""
640
 
641
- #: ../app/main/controllers/upload/processors/RTMediaUploadFile.php:268
642
- msgid ""
643
- "Media File you have tried to upload is not supported. Supported media files "
644
- "are .jpg, .png, .gif, .mp3, .mov and .mp4."
645
  msgstr ""
646
 
647
- #: ../app/main/controllers/privacy/RTMediaPrivacy.php:268
648
- msgid "Default Privacy"
649
  msgstr ""
650
 
651
- #: ../app/main/controllers/privacy/RTMediaPrivacy.php:284
652
- #: ../app/admin/RTMediaAdmin.php:1530
653
- msgid "Privacy"
654
  msgstr ""
655
 
656
- #: ../app/main/controllers/shortcodes/RTMediaUploadShortcode.php:91
657
- msgid "The web browser on your device cannot be used to upload files."
658
  msgstr ""
659
 
660
- #: ../app/main/controllers/shortcodes/RTMediaUploadShortcode.php:103
661
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:197
662
- #: ../app/main/controllers/template/rt-template-functions.php:1500
663
- msgid "You are not allowed to upload/attach media."
664
  msgstr ""
665
 
666
- #: ../app/main/controllers/shortcodes/RTMediaGalleryShortcode.php:182
667
- msgid "You do not have sufficient privileges to view this gallery"
 
 
668
  msgstr ""
669
 
670
- #: ../app/main/controllers/media/RTMediaFeatured.php:25
671
- #: ../app/main/controllers/media/RTMediaGroupFeatured.php:17
672
- msgid "Set as Featured"
673
  msgstr ""
674
 
675
- #: ../app/main/controllers/media/RTMediaFeatured.php:27
676
- #: ../app/main/controllers/media/RTMediaGroupFeatured.php:19
677
- msgid "Unset Featured"
678
  msgstr ""
679
 
680
- #: ../app/main/controllers/media/RTMediaFeatured.php:182
681
- #: ../app/main/controllers/media/RTMediaGroupFeatured.php:194
682
- msgid "Media type is not allowed"
683
  msgstr ""
684
 
685
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:55
686
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:70
687
- msgid "Edit this media"
688
  msgstr ""
689
 
690
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:58
691
- #: ../app/main/controllers/media/RTMediaGalleryItemAction.php:70
692
- msgid "Delete this media"
693
  msgstr ""
694
 
695
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:38
696
- #: ../app/main/controllers/template/rt-template-functions.php:2155
697
- #: ../app/main/controllers/template/rt-template-functions.php:2159
698
- msgid "Upload Media"
699
  msgstr ""
700
 
701
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:47
702
- msgid "Please login"
703
  msgstr ""
704
 
705
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:49
706
- msgid "You need to be logged in to upload Media or to create Album."
 
 
707
  msgstr ""
708
 
709
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:52
710
- msgid "Click "
711
  msgstr ""
712
 
713
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:52
714
- msgid "Login"
715
  msgstr ""
716
 
717
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:52
718
- msgid "HERE"
719
  msgstr ""
720
 
721
- #: ../app/main/controllers/media/RTMediaLoginPopup.php:52
722
- msgid " to login."
723
  msgstr ""
724
 
725
- #: ../app/main/controllers/media/RTMediaAlbum.php:35
726
- msgctxt "Status General Name"
727
- msgid "hidden"
728
  msgstr ""
729
 
730
- #: ../app/main/controllers/media/RTMediaAlbum.php:35
731
- #, php-format
732
- msgid "Hidden (%s)"
733
- msgid_plural "Hidden (%s)"
734
- msgstr[0] ""
735
- msgstr[1] ""
736
 
737
- #: ../app/main/controllers/media/RTMediaAlbum.php:50
738
- msgid "Create"
739
  msgstr ""
740
 
741
- #: ../app/main/controllers/media/RTMediaAlbum.php:51
742
- #: ../app/main/controllers/template/rt-template-functions.php:1781
743
- msgid "Create Album"
744
  msgstr ""
745
 
746
- #: ../app/main/controllers/media/RTMediaAlbum.php:52
747
- #: ../app/main/controllers/template/rt-template-functions.php:1861
748
- msgid "Edit Album"
 
 
 
749
  msgstr ""
750
 
751
- #: ../app/main/controllers/media/RTMediaAlbum.php:53
752
- msgid "New Album"
753
  msgstr ""
754
 
755
- #: ../app/main/controllers/media/RTMediaAlbum.php:54
756
- msgid "All Albums"
 
 
757
  msgstr ""
758
 
759
- #: ../app/main/controllers/media/RTMediaAlbum.php:55
760
- msgid "View Album"
761
  msgstr ""
762
 
763
- #: ../app/main/controllers/media/RTMediaAlbum.php:56
764
- msgid "Search Albums"
765
  msgstr ""
766
 
767
- #: ../app/main/controllers/media/RTMediaAlbum.php:57
768
- msgid "No album found"
769
  msgstr ""
770
 
771
- #: ../app/main/controllers/media/RTMediaAlbum.php:58
772
- msgid "No album found in Trash"
 
 
773
  msgstr ""
774
 
775
- #: ../app/main/controllers/media/RTMediaAlbum.php:59
776
- msgid "Parent"
777
  msgstr ""
778
 
779
- #: ../app/main/controllers/media/RTMediaAlbum.php:145
780
- msgid "Untitled Album"
 
 
781
  msgstr ""
782
 
783
- #: ../app/main/controllers/media/RTMediaMedia.php:483
784
- msgid "Error creating attachment for the media file, please try again"
785
  msgstr ""
786
 
787
- #: ../app/main/controllers/media/RTMediaMedia.php:585
788
- #, php-format
789
- msgid "%1$s added a %2$s"
 
790
  msgstr ""
791
 
792
- #: ../app/main/controllers/media/RTMediaMedia.php:585
793
- #, php-format
794
- msgid "%1$s added %4$d %3$s"
795
  msgstr ""
796
 
797
- #: ../app/main/controllers/media/RTMediaLike.php:18
798
- msgid "Like"
 
 
799
  msgstr ""
800
 
801
- #: ../app/main/controllers/media/RTMediaLike.php:19
802
- #: ../app/admin/RTMediaAdmin.php:587
803
- msgid "Likes"
804
  msgstr ""
805
 
806
- #: ../app/main/controllers/media/RTMediaLike.php:20
807
- msgid "Unlike"
 
 
808
  msgstr ""
809
 
810
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:180
811
- msgid "Media Files"
812
  msgstr ""
813
 
814
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:326
815
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:341
816
- msgid "media"
 
817
  msgstr ""
818
 
819
- #: ../app/main/controllers/activity/RTMediaBuddyPressActivity.php:333
820
- #, php-format
821
- msgid "%s added a %s"
822
  msgstr ""
823
 
824
- #: ../app/main/controllers/template/RTMediaTemplate.php:97
825
- #: ../app/main/controllers/template/RTMediaTemplate.php:149
826
- msgid "Invalid attribute passed for rtmedia_gallery shortcode."
 
827
  msgstr ""
828
 
829
- #: ../app/main/controllers/template/RTMediaTemplate.php:314
830
- #: ../app/main/controllers/template/RTMediaTemplate.php:388
831
- #: ../app/main/controllers/template/RTMediaTemplate.php:477
832
- #: ../app/main/controllers/template/RTMediaTemplate.php:603
833
- msgid "Ooops !!! Invalid access. No nonce was found !!"
834
  msgstr ""
835
 
836
- #: ../app/main/controllers/template/RTMediaTemplate.php:321
837
- msgid "Media updated Sucessfully"
 
 
838
  msgstr ""
839
 
840
- #: ../app/main/controllers/template/RTMediaTemplate.php:327
841
- msgid "Error in updating Media"
842
  msgstr ""
843
 
844
- #: ../app/main/controllers/template/RTMediaNav.php:32
845
- msgctxt "My Account Privacy sub nav"
846
- msgid "Privacy"
847
  msgstr ""
848
 
849
- #: ../app/main/controllers/template/rt-template-functions.php:706
850
- #: ../app/main/controllers/template/rt-template-functions.php:1692
851
- msgid "Options"
852
  msgstr ""
853
 
854
- #: ../app/main/controllers/template/rt-template-functions.php:795
855
- msgid "There are no comments on this media yet."
 
 
856
  msgstr ""
857
 
858
- #: ../app/main/controllers/template/rt-template-functions.php:831
859
- msgid "Delete Comment"
860
  msgstr ""
861
 
862
- #: ../app/main/controllers/template/rt-template-functions.php:1027
863
- msgid "Go to page no : "
 
 
864
  msgstr ""
865
 
866
- #: ../app/main/controllers/template/rt-template-functions.php:1032
867
- msgid "Go"
868
  msgstr ""
869
 
870
- #: ../app/main/controllers/template/rt-template-functions.php:1205
871
- msgid "Video Thumbnail"
 
 
872
  msgstr ""
873
 
874
- #: ../app/main/controllers/template/rt-template-functions.php:1254
875
- msgid "Video Thumbnail:"
876
  msgstr ""
877
 
878
- #: ../app/main/controllers/template/rt-template-functions.php:1337
879
- msgid "Image"
 
 
880
  msgstr ""
881
 
882
- #: ../app/main/controllers/template/rt-template-functions.php:1354
883
- msgid "Modify Image"
884
  msgstr ""
885
 
886
- #: ../app/main/controllers/template/rt-template-functions.php:1429
887
- msgid "Type Comment..."
 
 
888
  msgstr ""
889
 
890
- #: ../app/main/controllers/template/rt-template-functions.php:1466
891
- #: ../app/main/controllers/template/rt-template-functions.php:1473
892
- msgid "Delete Media"
893
  msgstr ""
894
 
895
- #: ../app/main/controllers/template/rt-template-functions.php:1634
896
- msgid "Profile Albums"
897
  msgstr ""
898
 
899
- #: ../app/main/controllers/template/rt-template-functions.php:1637
900
- #: ../app/main/controllers/template/rt-template-functions.php:1671
901
- msgid "Group Albums"
902
  msgstr ""
903
 
904
- #: ../app/main/controllers/template/rt-template-functions.php:1755
905
- msgid "Create New Album"
 
 
906
  msgstr ""
907
 
908
- #: ../app/main/controllers/template/rt-template-functions.php:1755
909
- msgid "Add Album"
910
  msgstr ""
911
 
912
- #: ../app/main/controllers/template/rt-template-functions.php:1771
913
- msgid "Create an Album"
 
 
 
914
  msgstr ""
915
 
916
- #: ../app/main/controllers/template/rt-template-functions.php:1773
917
- msgid "Album Title : "
918
  msgstr ""
919
 
920
- #: ../app/main/controllers/template/rt-template-functions.php:1812
921
- #: ../app/main/controllers/template/rt-template-functions.php:1819
922
- #: ../app/main/controllers/template/rt-template-functions.php:1871
923
- msgid "Merge Album"
924
  msgstr ""
925
 
926
- #: ../app/main/controllers/template/rt-template-functions.php:1815
927
- msgid "Select Album to merge with : "
928
  msgstr ""
929
 
930
- #: ../app/main/controllers/template/rt-template-functions.php:1862
931
- msgid "Delete Album"
932
  msgstr ""
933
 
934
- #: ../app/main/controllers/template/rt-template-functions.php:1899
935
- msgid "Merge"
936
  msgstr ""
937
 
938
- #: ../app/main/controllers/template/rt-template-functions.php:1952
939
- msgid "Privacy : "
 
 
940
  msgstr ""
941
 
942
- #: ../app/main/controllers/template/rt-template-functions.php:2143
943
- msgid "people like this"
944
  msgstr ""
945
 
946
- #: ../app/main/controllers/template/rt-template-functions.php:2216
947
- msgid "Empowering your community with "
 
 
 
948
  msgstr ""
949
 
950
- #: ../app/main/controllers/template/rt-template-functions.php:2218
951
- msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
952
  msgstr ""
953
 
954
- #: ../app/main/controllers/template/rt-template-functions.php:2233
955
- msgid "Close (Esc)"
 
 
956
  msgstr ""
957
 
958
- #: ../app/main/controllers/template/rt-template-functions.php:2247
959
- msgid "Public"
960
  msgstr ""
961
 
962
- #: ../app/main/controllers/template/rt-template-functions.php:2251
963
- msgid "All members"
 
 
 
964
  msgstr ""
965
 
966
- #: ../app/main/controllers/template/rt-template-functions.php:2255
967
- msgid "Your friends"
968
  msgstr ""
969
 
970
- #: ../app/main/controllers/template/rt-template-functions.php:2259
971
- msgid "Only you"
 
 
 
972
  msgstr ""
973
 
974
- #: ../app/main/controllers/template/rt-template-functions.php:2263
975
- msgid "Blocked temporarily"
976
  msgstr ""
977
 
978
- #: ../app/main/controllers/template/rt-template-functions.php:2300
979
- #, php-format
980
- msgid "%s ago "
 
981
  msgstr ""
982
 
983
- #: ../app/main/controllers/template/rt-template-functions.php:2313
984
- #, php-format
985
- msgid "1 second"
986
- msgid_plural "%s seconds"
987
- msgstr[0] ""
988
- msgstr[1] ""
989
 
990
- #: ../app/main/controllers/template/rt-template-functions.php:2316
991
- #, php-format
992
- msgid "1 minute"
993
- msgid_plural "%s minutes"
994
- msgstr[0] ""
995
- msgstr[1] ""
996
 
997
- #: ../app/main/controllers/template/rt-template-functions.php:2319
998
- #, php-format
999
- msgid "1 hour"
1000
- msgid_plural "%s hours"
1001
- msgstr[0] ""
1002
- msgstr[1] ""
1003
 
1004
- #: ../app/main/controllers/template/rt-template-functions.php:2674
1005
- msgid "You can consider rtMedia Team for following :"
1006
  msgstr ""
1007
 
1008
- #: ../app/main/controllers/template/rt-template-functions.php:2677
1009
- msgid "rtMedia Customization ( in Upgrade Safe manner )"
1010
  msgstr ""
1011
 
1012
- #: ../app/main/controllers/template/rt-template-functions.php:2678
1013
- msgid "WordPress/BuddyPress Theme Design and Development"
 
 
1014
  msgstr ""
1015
 
1016
- #: ../app/main/controllers/template/rt-template-functions.php:2679
1017
- msgid "WordPress/BuddyPress Plugin Development"
1018
  msgstr ""
1019
 
1020
- #: ../app/main/controllers/template/rt-template-functions.php:2683
1021
- msgid "Contact Us"
 
 
 
1022
  msgstr ""
1023
 
1024
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:30
1025
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:92
1026
- msgid "Album Creation Control"
1027
  msgstr ""
1028
 
1029
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:31
1030
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:93
1031
- msgid "Who can create Albums in this group?"
 
1032
  msgstr ""
1033
 
1034
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:35
1035
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:97
1036
- msgid "All Group Members"
1037
  msgstr ""
1038
 
1039
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:39
1040
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:101
1041
- msgid "Group Admins and Mods only"
 
 
1042
  msgstr ""
1043
 
1044
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:43
1045
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:105
1046
- msgid "Group Admin only"
1047
  msgstr ""
1048
 
1049
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:142
1050
- msgid "There was an error saving, please try again"
1051
  msgstr ""
1052
 
1053
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:144
1054
- msgid "Settings saved successfully"
1055
  msgstr ""
1056
 
1057
- #: ../app/main/controllers/group/RTMediaGroupExtension.php:164
1058
  msgid ""
1059
- "You could display a small snippet of information from your group extension "
1060
- "here. It will show on the group\n"
1061
- "\t home screen."
1062
  msgstr ""
1063
 
1064
- #: ../app/main/deprecated/RTMediaDeprecated.php:27
1065
- #, php-format
1066
- msgid "Deprecated %s. Please use %s."
1067
  msgstr ""
1068
 
1069
- #: ../app/admin/RTMediaFormHandler.php:65
1070
- #: ../app/admin/RTMediaFormHandler.php:107
1071
- #: ../app/admin/RTMediaFormHandler.php:202
1072
- #: ../app/admin/RTMediaFormHandler.php:237
1073
- msgid "Please provide a \"value\" in the argument."
1074
  msgstr ""
1075
 
1076
- #: ../app/admin/RTMediaFormHandler.php:150
1077
- msgid "Need to specify atleast two radios, else use a checkbox instead"
1078
  msgstr ""
1079
 
1080
- #: ../app/admin/RTMediaFormHandler.php:286
1081
- msgid "Pagination"
 
 
1082
  msgstr ""
1083
 
1084
- #: ../app/admin/RTMediaFormHandler.php:298
1085
- msgid "Allow user to comment on uploaded media"
1086
  msgstr ""
1087
 
1088
- #: ../app/admin/RTMediaFormHandler.php:303
1089
  msgid ""
1090
- "This will display the comment form and comment listing on single media pages "
1091
- "as well as inside lightbox (if lightbox is enabled)."
1092
- msgstr ""
1093
-
1094
- #: ../app/admin/RTMediaFormHandler.php:308
1095
- msgid "Use lightbox to display media"
1096
  msgstr ""
1097
 
1098
- #: ../app/admin/RTMediaFormHandler.php:313
1099
- msgid "View single media in facebook style lightbox."
1100
  msgstr ""
1101
 
1102
- #: ../app/admin/RTMediaFormHandler.php:318
1103
- msgid "Number of media per page"
 
 
1104
  msgstr ""
1105
 
1106
- #: ../app/admin/RTMediaFormHandler.php:324
1107
- msgid "Number of media items you want to show per page on front end."
1108
  msgstr ""
1109
 
1110
- #: ../app/admin/RTMediaFormHandler.php:330
1111
- msgid "Media display pagination option"
 
 
1112
  msgstr ""
1113
 
1114
- #: ../app/admin/RTMediaFormHandler.php:336
1115
- msgid "Choose whether you want the load more button or pagination buttons."
1116
  msgstr ""
1117
 
1118
- #: ../app/admin/RTMediaFormHandler.php:341
1119
- msgid "Enable"
1120
  msgstr ""
1121
 
1122
- #: ../app/admin/RTMediaFormHandler.php:341
1123
- msgid "Cascading grid layout"
 
 
1124
  msgstr ""
1125
 
1126
- #: ../app/admin/RTMediaFormHandler.php:346
1127
- msgid "If you enable masonry view, it is advisable to"
 
 
1128
  msgstr ""
1129
 
1130
- #: ../app/admin/RTMediaFormHandler.php:346
1131
- msgid "for masonry view."
1132
  msgstr ""
1133
 
1134
- #: ../app/admin/RTMediaFormHandler.php:350
1135
- msgid "You might need to"
1136
  msgstr ""
1137
 
1138
- #: ../app/admin/RTMediaFormHandler.php:350
1139
- msgid "change thumbnail size"
1140
  msgstr ""
1141
 
1142
- #: ../app/admin/RTMediaFormHandler.php:350
1143
- msgid "and uncheck the crop box for thumbnails."
1144
  msgstr ""
1145
 
1146
- #: ../app/admin/RTMediaFormHandler.php:350
1147
- msgid ""
1148
- "To set gallery for fixed width, set image height to 0 and width as per your "
1149
- "requirement and vice-versa."
1150
  msgstr ""
1151
 
1152
- #: ../app/admin/RTMediaFormHandler.php:353
1153
- msgid "Enable Direct Upload"
1154
  msgstr ""
1155
 
1156
- #: ../app/admin/RTMediaFormHandler.php:358
1157
- msgid "Uploading media directly as soon as it gets selected."
1158
  msgstr ""
1159
 
1160
- #: ../app/admin/RTMediaFormHandler.php:384
1161
- msgid "Single Media View"
1162
  msgstr ""
1163
 
1164
- #: ../app/admin/RTMediaFormHandler.php:385
1165
- msgid "List Media View"
1166
  msgstr ""
1167
 
1168
- #: ../app/admin/RTMediaFormHandler.php:386
1169
- msgid "Masonry View"
1170
  msgstr ""
1171
 
1172
- #: ../app/admin/RTMediaFormHandler.php:387
1173
- msgid "Direct Upload"
1174
  msgstr ""
1175
 
1176
- #: ../app/admin/RTMediaFormHandler.php:405
1177
- msgid "Allow usage data tracking"
1178
  msgstr ""
1179
 
1180
- #: ../app/admin/RTMediaFormHandler.php:410
1181
  msgid ""
1182
- "To make rtMedia better compatible with your sites, you can help the rtMedia "
1183
- "team learn what themes and plugins you are using. No private information "
1184
- "about your setup will be sent during tracking."
1185
  msgstr ""
1186
 
1187
- #: ../app/admin/RTMediaFormHandler.php:414
1188
- msgid "Admin bar menu integration"
1189
  msgstr ""
1190
 
1191
- #: ../app/admin/RTMediaFormHandler.php:419
1192
- msgid ""
1193
- "Add rtMedia menu to WordPress admin bar for easy access to settings and "
1194
- "moderation page (if enabled)."
1195
  msgstr ""
1196
 
1197
- #: ../app/admin/RTMediaFormHandler.php:424
1198
- msgid "Add a link to rtMedia in footer"
1199
  msgstr ""
1200
 
1201
- #: ../app/admin/RTMediaFormHandler.php:429
1202
- msgid "Help us promote rtMedia."
1203
  msgstr ""
1204
 
1205
- #: ../app/admin/RTMediaFormHandler.php:434
1206
- msgid "Also add my affiliate-id to rtMedia footer link"
1207
  msgstr ""
1208
 
1209
- #: ../app/admin/RTMediaFormHandler.php:439
1210
- msgid ""
1211
- "Add your affiliate-id along with footer link and get rewarded by our "
1212
- "affiliation program."
1213
  msgstr ""
1214
 
1215
- #: ../app/admin/RTMediaFormHandler.php:443
1216
- msgid ""
1217
- "Signup for rtMedia affiliate program <a href=\"https://rtcamp.com/affiliates"
1218
- "\">here</a>"
1219
  msgstr ""
1220
 
1221
- #: ../app/admin/RTMediaFormHandler.php:446
1222
- msgid "Enable JSON API"
1223
  msgstr ""
1224
 
1225
- #: ../app/admin/RTMediaFormHandler.php:451
1226
  msgid ""
1227
- "This will allow handling API requests for rtMedia sent through any mobile "
1228
- "app."
1229
  msgstr ""
1230
 
1231
- #: ../app/admin/RTMediaFormHandler.php:454
1232
- msgid ""
1233
- "You can refer to the API document from <a href=\"https://rtcamp.com/rtmedia/"
1234
- "docs/developer/json-api/\">here</a>"
1235
  msgstr ""
1236
 
1237
- #: ../app/admin/RTMediaFormHandler.php:477
1238
- msgid "Admin Settings"
1239
  msgstr ""
1240
 
1241
- #: ../app/admin/RTMediaFormHandler.php:478
1242
- msgid "API Settings"
 
 
 
 
1243
  msgstr ""
1244
 
1245
- #: ../app/admin/RTMediaFormHandler.php:479
1246
- msgid "Miscellaneous"
 
 
 
1247
  msgstr ""
1248
 
1249
- #: ../app/admin/RTMediaFormHandler.php:480
1250
- msgid "Footer Link"
 
1251
  msgstr ""
1252
 
1253
- #: ../app/admin/RTMediaFormHandler.php:563
1254
- msgid "Media Types Settings"
 
1255
  msgstr ""
1256
 
1257
- #: ../app/admin/RTMediaFormHandler.php:571
1258
- #: ../app/helper/RTMediaSettings.php:323
1259
- msgid "Media Type"
1260
  msgstr ""
1261
 
1262
- #: ../app/admin/RTMediaFormHandler.php:576
1263
- msgid "Allow Upload"
1264
  msgstr ""
1265
 
1266
- #: ../app/admin/RTMediaFormHandler.php:578
1267
- msgid "Allows you to upload a particular media type on your post."
1268
  msgstr ""
1269
 
1270
- #: ../app/admin/RTMediaFormHandler.php:586
1271
- msgid "Set Featured"
1272
  msgstr ""
1273
 
1274
- #: ../app/admin/RTMediaFormHandler.php:588
1275
- msgid "Place a specific media as a featured content on the post."
1276
  msgstr ""
1277
 
1278
- #: ../app/admin/RTMediaFormHandler.php:630
1279
- msgid "File Extensions"
1280
  msgstr ""
1281
 
1282
- #: ../app/admin/RTMediaFormHandler.php:718
1283
- msgid "Media Size Settings"
1284
  msgstr ""
1285
 
1286
- #: ../app/admin/RTMediaFormHandler.php:723
1287
- msgid "Category"
1288
  msgstr ""
1289
 
1290
- #: ../app/admin/RTMediaFormHandler.php:724
1291
- msgid "Entity"
 
1292
  msgstr ""
1293
 
1294
- #: ../app/admin/RTMediaFormHandler.php:725
1295
- msgid "Width"
1296
  msgstr ""
1297
 
1298
- #: ../app/admin/RTMediaFormHandler.php:726
1299
- msgid "Height"
1300
  msgstr ""
1301
 
1302
- #: ../app/admin/RTMediaFormHandler.php:727
1303
- msgid "Crop"
1304
  msgstr ""
1305
 
1306
- #: ../app/admin/RTMediaFormHandler.php:780
1307
- msgid "Number of thumbnails to generate on video upload"
1308
  msgstr ""
1309
 
1310
- #: ../app/admin/RTMediaFormHandler.php:786
1311
  msgid ""
1312
- " If you choose more than 1 thumbnail, your users will be able to change the "
1313
- "thumbnail by going to video 'edit' section. Maximum value is 10."
1314
- msgstr ""
1315
-
1316
- #: ../app/admin/RTMediaFormHandler.php:794
1317
- msgid "Encoding Settings"
1318
  msgstr ""
1319
 
1320
- #: ../app/admin/RTMediaFormHandler.php:801
1321
- msgid "JPEG/JPG image quality (1-100)"
 
 
 
1322
  msgstr ""
1323
 
1324
- #: ../app/admin/RTMediaFormHandler.php:807
1325
- msgid ""
1326
- "Enter JPEG/JPG Image Quality. Minimum value is 1. 100 is original quality."
1327
  msgstr ""
1328
 
1329
- #: ../app/admin/RTMediaFormHandler.php:815
1330
- msgid "Image Quality"
1331
  msgstr ""
1332
 
1333
- #: ../app/admin/RTMediaFormHandler.php:837
1334
- msgid "Custom CSS settings"
1335
  msgstr ""
1336
 
1337
- #: ../app/admin/RTMediaFormHandler.php:856
1338
- msgid "rtMedia default styles"
1339
  msgstr ""
1340
 
1341
- #: ../app/admin/RTMediaFormHandler.php:862
1342
- msgid ""
1343
- "Load default rtMedia styles. You need to write your own style for rtMedia if "
1344
- "you disable it."
1345
  msgstr ""
1346
 
1347
- #: ../app/admin/RTMediaFormHandler.php:867
1348
- msgid "Paste your CSS code"
1349
  msgstr ""
1350
 
1351
- #: ../app/admin/RTMediaFormHandler.php:873
1352
- msgid "Custom rtMedia CSS container"
 
1353
  msgstr ""
1354
 
1355
- #: ../app/admin/RTMediaFormHandler.php:896
1356
- msgid "Enable privacy"
1357
  msgstr ""
1358
 
1359
- #: ../app/admin/RTMediaFormHandler.php:902
1360
- msgid "Enable privacy in rtMedia"
1361
  msgstr ""
1362
 
1363
- #: ../app/admin/RTMediaFormHandler.php:907
1364
- msgid "Default privacy"
1365
  msgstr ""
1366
 
1367
- #: ../app/admin/RTMediaFormHandler.php:913
1368
- msgid "Set default privacy for media"
1369
  msgstr ""
1370
 
1371
- #: ../app/admin/RTMediaFormHandler.php:919
1372
- msgid "Allow users to set privacy for their content"
1373
  msgstr ""
1374
 
1375
- #: ../app/admin/RTMediaFormHandler.php:924
1376
- msgid ""
1377
- "If you choose this, users will be able to change privacy of their own "
1378
- "uploads."
1379
  msgstr ""
1380
 
1381
- #: ../app/admin/RTMediaFormHandler.php:928
1382
- msgid "For group uploads, BuddyPress groups privacy is used."
1383
  msgstr ""
1384
 
1385
- #: ../app/admin/RTMediaFormHandler.php:970
1386
- msgid "Enable media in profile"
1387
  msgstr ""
1388
 
1389
- #: ../app/admin/RTMediaFormHandler.php:975
1390
- msgid "Enable Media on BuddyPress Profile"
1391
  msgstr ""
1392
 
1393
- #: ../app/admin/RTMediaFormHandler.php:980
1394
- msgid "Enable media in group"
1395
  msgstr ""
1396
 
1397
- #: ../app/admin/RTMediaFormHandler.php:985
1398
- msgid "Enable Media on BuddyPress Groups"
1399
  msgstr ""
1400
 
1401
- #: ../app/admin/RTMediaFormHandler.php:990
1402
- msgid "Allow upload from activity stream"
1403
  msgstr ""
1404
 
1405
- #: ../app/admin/RTMediaFormHandler.php:995
1406
- msgid "Allow upload using status update box present on activity stream page"
1407
  msgstr ""
1408
 
1409
- #: ../app/admin/RTMediaFormHandler.php:1001
1410
- msgid "Number of media items to show in activity stream"
1411
  msgstr ""
1412
 
1413
- #: ../app/admin/RTMediaFormHandler.php:1006
1414
  msgid ""
1415
- "With bulk uploads activity, the stream may get flooded. You can control the "
1416
- "maximum number of media items or files per activity. This limit will not "
1417
- "affect the actual number of uploads. This is only for display. <em>0</em> "
1418
- "means unlimited."
1419
  msgstr ""
1420
 
1421
- #: ../app/admin/RTMediaFormHandler.php:1013
1422
- msgid "Organize media into albums"
1423
  msgstr ""
1424
 
1425
- #: ../app/admin/RTMediaFormHandler.php:1019
1426
  msgid ""
1427
- "This will add 'album' tab to BuddyPress profile and group depending on the "
1428
- "^above^ settings."
1429
  msgstr ""
1430
 
1431
- #: ../app/admin/RTMediaAdmin.php:125
1432
- #, php-format
1433
- msgid "View &#8220;%s&#8221;"
1434
  msgstr ""
1435
 
1436
- #: ../app/admin/RTMediaAdmin.php:125
1437
- msgid "View"
1438
  msgstr ""
1439
 
1440
- #: ../app/admin/RTMediaAdmin.php:367 ../app/admin/RTMediaAdmin.php:393
1441
- msgid "rtMedia:"
1442
  msgstr ""
1443
 
1444
- #: ../app/admin/RTMediaAdmin.php:367
1445
- msgid " You must "
1446
  msgstr ""
1447
 
1448
- #: ../app/admin/RTMediaAdmin.php:367
1449
- msgid "update permalink structure"
1450
  msgstr ""
1451
 
1452
- #: ../app/admin/RTMediaAdmin.php:367
1453
- msgid " to something other than the default for it to work."
1454
  msgstr ""
1455
 
1456
- #: ../app/admin/RTMediaAdmin.php:393
1457
- msgid ""
1458
- "Please update all premium add-ons that you have purchased from rtCamp from"
1459
  msgstr ""
1460
 
1461
- #: ../app/admin/RTMediaAdmin.php:393
1462
- msgid "your account"
1463
  msgstr ""
1464
 
1465
- #: ../app/admin/RTMediaAdmin.php:393
1466
- msgid "Dismiss"
1467
- msgstr ""
1468
-
1469
- #: ../app/admin/RTMediaAdmin.php:506
1470
- msgid "rtMedia Pro is released"
1471
  msgstr ""
1472
 
1473
- #: ../app/admin/RTMediaAdmin.php:527
1474
- msgid "Media Stats"
1475
  msgstr ""
1476
 
1477
- #: ../app/admin/RTMediaAdmin.php:554
1478
- msgid "Usage Stats"
1479
  msgstr ""
1480
 
1481
- #: ../app/admin/RTMediaAdmin.php:563
1482
- msgid "Total "
 
 
 
1483
  msgstr ""
1484
 
1485
- #: ../app/admin/RTMediaAdmin.php:571
1486
- msgid "With Media"
1487
  msgstr ""
1488
 
1489
- #: ../app/admin/RTMediaAdmin.php:579
1490
- msgid "Comments "
1491
  msgstr ""
1492
 
1493
- #: ../app/admin/RTMediaAdmin.php:598
1494
- msgid "rtMedia Links:"
 
 
 
 
1495
  msgstr ""
1496
 
1497
- #: ../app/admin/RTMediaAdmin.php:599
1498
- msgid "Homepage"
1499
  msgstr ""
1500
 
1501
- #: ../app/admin/RTMediaAdmin.php:600
1502
- msgid "Free Support"
 
 
 
1503
  msgstr ""
1504
 
1505
- #: ../app/admin/RTMediaAdmin.php:601
1506
- msgid "Premium Addons"
 
 
1507
  msgstr ""
1508
 
1509
- #: ../app/admin/RTMediaAdmin.php:617
1510
- msgid "Right Now in rtMedia"
1511
  msgstr ""
1512
 
1513
- #: ../app/admin/RTMediaAdmin.php:671 ../app/admin/RTMediaAdmin.php:873
1514
- msgid "Regenerate Thumbnail"
 
 
1515
  msgstr ""
1516
 
1517
- #: ../app/admin/RTMediaAdmin.php:712 ../app/admin/RTMediaAdmin.php:1359
1518
- #: ../app/admin/RTMediaAdmin.php:1360
1519
- msgid "rtMedia"
1520
  msgstr ""
1521
 
1522
- #: ../app/admin/RTMediaAdmin.php:719 ../app/admin/RTMediaAdmin.php:722
1523
- #: ../app/admin/RTMediaAdmin.php:861 ../app/admin/RTMediaAdmin.php:1389
1524
- msgid "Settings"
 
1525
  msgstr ""
1526
 
1527
- #: ../app/admin/RTMediaAdmin.php:730 ../app/admin/RTMediaAdmin.php:733
1528
- #: ../app/admin/RTMediaAdmin.php:862 ../app/admin/RTMediaAdmin.php:1393
1529
- msgid "Addons"
1530
  msgstr ""
1531
 
1532
- #: ../app/admin/RTMediaAdmin.php:741 ../app/admin/RTMediaAdmin.php:744
1533
- #: ../app/admin/RTMediaAdmin.php:863 ../app/admin/RTMediaAdmin.php:1405
1534
- #: ../app/helper/RTMediaSupport.php:51 ../app/helper/RTMediaSupport.php:52
1535
- #: ../app/helper/RTMediaSettings.php:207
1536
- msgid "Support"
1537
  msgstr ""
1538
 
1539
- #: ../app/admin/RTMediaAdmin.php:752 ../app/admin/RTMediaAdmin.php:755
1540
- #: ../app/admin/RTMediaAdmin.php:864 ../app/admin/RTMediaAdmin.php:1397
1541
- msgid "Themes"
1542
  msgstr ""
1543
 
1544
- #: ../app/admin/RTMediaAdmin.php:763 ../app/admin/RTMediaAdmin.php:766
1545
- #: ../app/admin/RTMediaAdmin.php:865 ../app/admin/RTMediaAdmin.php:1401
1546
- msgid "Hire Us"
1547
  msgstr ""
1548
 
1549
- #: ../app/admin/RTMediaAdmin.php:775 ../app/admin/RTMediaAdmin.php:778
1550
- #: ../app/admin/RTMediaAdmin.php:867 ../app/admin/RTMediaAdmin.php:1413
1551
- msgid "Licenses"
1552
  msgstr ""
1553
 
1554
- #: ../app/admin/RTMediaAdmin.php:822
1555
- msgid "ON"
 
 
1556
  msgstr ""
1557
 
1558
- #: ../app/admin/RTMediaAdmin.php:823
1559
- msgid "OFF"
1560
  msgstr ""
1561
 
1562
- #: ../app/admin/RTMediaAdmin.php:829
1563
- msgid "Please do not refresh this page."
 
 
 
 
 
 
1564
  msgstr ""
1565
 
1566
- #: ../app/admin/RTMediaAdmin.php:830
1567
  msgid ""
1568
- "Something went wrong. Please <a href onclick=\"location.reload();\">refresh</"
1569
- "a> page."
1570
  msgstr ""
1571
 
1572
- #: ../app/admin/RTMediaAdmin.php:831
1573
- msgid "This will subscribe you to the free plan."
1574
  msgstr ""
1575
 
1576
- #: ../app/admin/RTMediaAdmin.php:832
1577
- msgid "Are you sure you want to disable the encoding service?"
1578
  msgstr ""
1579
 
1580
- #: ../app/admin/RTMediaAdmin.php:833
1581
- msgid "Are you sure you want to enable the encoding service?"
1582
  msgstr ""
1583
 
1584
- #: ../app/admin/RTMediaAdmin.php:873
1585
- msgid "Regen. Thumbnail "
1586
  msgstr ""
1587
 
1588
- #: ../app/admin/RTMediaAdmin.php:891 ../app/admin/RTMediaAdmin.php:1870
1589
- msgid "Regenerate Video Thumbnails"
1590
  msgstr ""
1591
 
1592
- #: ../app/admin/RTMediaAdmin.php:909
1593
- msgid "Regenerate Pending Thumbnails"
1594
  msgstr ""
1595
 
1596
- #: ../app/admin/RTMediaAdmin.php:919
1597
- msgid "Total Videos"
1598
  msgstr ""
1599
 
1600
- #: ../app/admin/RTMediaAdmin.php:922
1601
- msgid "Sent of regenerate thumbails"
1602
  msgstr ""
1603
 
1604
- #: ../app/admin/RTMediaAdmin.php:924
1605
- msgid "Fail to regenerate thumbails"
1606
  msgstr ""
1607
 
1608
- #: ../app/admin/RTMediaAdmin.php:963
1609
- msgid "Regenerate Video Thumbnails Done"
1610
  msgstr ""
1611
 
1612
- #: ../app/admin/RTMediaAdmin.php:1007
1613
- #, php-format
1614
- msgid ""
1615
- "You have %s videos without thumbnails. Click <a href='%s'> here </a> to "
1616
- "generate thumbnails. <a href='#' onclick='rtmedia_hide_video_thumb_notice()' "
1617
- "style='float:right'>Hide</a>"
1618
  msgstr ""
1619
 
1620
- #: ../app/admin/RTMediaAdmin.php:1085
1621
- msgid "not a video ..."
1622
  msgstr ""
1623
 
1624
- #: ../app/admin/RTMediaAdmin.php:1250
1625
- msgid "Empowering The Web With WordPress"
1626
  msgstr ""
1627
 
1628
- #: ../app/admin/RTMediaAdmin.php:1270
1629
- msgid "Settings saved successfully!"
1630
  msgstr ""
1631
 
1632
- #: ../app/admin/RTMediaAdmin.php:1273 ../app/admin/RTMediaAdmin.php:1296
1633
- msgid "Save Settings"
1634
  msgstr ""
1635
 
1636
- #: ../app/admin/RTMediaAdmin.php:1495 ../app/admin/RTMediaAdmin.php:1496
1637
- msgid "Display"
 
 
1638
  msgstr ""
1639
 
1640
- #: ../app/admin/RTMediaAdmin.php:1504
1641
- msgid "rtMedia BuddyPress"
1642
  msgstr ""
1643
 
1644
- #: ../app/admin/RTMediaAdmin.php:1505
1645
- msgid "BuddyPress"
1646
  msgstr ""
1647
 
1648
- #: ../app/admin/RTMediaAdmin.php:1513
1649
- msgid "rtMedia Types"
1650
  msgstr ""
1651
 
1652
- #: ../app/admin/RTMediaAdmin.php:1514
1653
- msgid "Types"
 
 
1654
  msgstr ""
1655
 
1656
- #: ../app/admin/RTMediaAdmin.php:1521
1657
- msgid "rtMedia Sizes"
1658
  msgstr ""
1659
 
1660
- #: ../app/admin/RTMediaAdmin.php:1522
1661
- msgid "Media Sizes"
 
 
1662
  msgstr ""
1663
 
1664
- #: ../app/admin/RTMediaAdmin.php:1529
1665
- msgid "rtMedia Privacy"
 
 
1666
  msgstr ""
1667
 
1668
- #: ../app/admin/RTMediaAdmin.php:1536
1669
- msgid "rtMedia Custom CSS"
1670
  msgstr ""
1671
 
1672
- #: ../app/admin/RTMediaAdmin.php:1537
1673
- msgid "Custom CSS"
1674
  msgstr ""
1675
 
1676
- #: ../app/admin/RTMediaAdmin.php:1546 ../app/admin/RTMediaAdmin.php:1547
1677
- msgid "Other Settings"
1678
  msgstr ""
1679
 
1680
- #: ../app/admin/RTMediaAdmin.php:1642
1681
- #, php-format
1682
- msgid "I use @buddypressmedia http://rt.cx/rtmedia on %s"
1683
  msgstr ""
1684
 
1685
- #: ../app/admin/RTMediaAdmin.php:1644
1686
- msgid "Post to Twitter Now"
1687
  msgstr ""
1688
 
1689
- #: ../app/admin/RTMediaAdmin.php:1644
1690
- msgid "Post to Twitter"
 
 
1691
  msgstr ""
1692
 
1693
- #: ../app/admin/RTMediaAdmin.php:1645
1694
- msgid "Share on Facebook Now"
1695
  msgstr ""
1696
 
1697
- #: ../app/admin/RTMediaAdmin.php:1645
1698
- msgid "Share on Facebook"
1699
  msgstr ""
1700
 
1701
- #: ../app/admin/RTMediaAdmin.php:1646
1702
- msgid "Rate rtMedia on Wordpress.org"
1703
  msgstr ""
1704
 
1705
- #: ../app/admin/RTMediaAdmin.php:1646
1706
- msgid "Rate on Wordpress.org"
1707
  msgstr ""
1708
 
1709
- #: ../app/admin/RTMediaAdmin.php:1647
1710
- msgid "Subscribe to our Feeds"
1711
  msgstr ""
1712
 
1713
- #: ../app/admin/RTMediaAdmin.php:1650
1714
- msgid "Spread the Word"
1715
  msgstr ""
1716
 
1717
- #: ../app/admin/RTMediaAdmin.php:1656 ../app/admin/RTMediaAdmin.php:1663
1718
- msgid "Subscribe"
1719
  msgstr ""
1720
 
1721
- #: ../app/admin/RTMediaAdmin.php:1685
1722
- msgid "Thank you for your time."
1723
  msgstr ""
1724
 
1725
- #: ../app/admin/RTMediaAdmin.php:1697
1726
- msgid "Premium Add-ons"
1727
  msgstr ""
1728
 
1729
- #: ../app/admin/RTMediaAdmin.php:1713
1730
- #, php-format
1731
- msgid ""
1732
- "You have images enabled on rtMedia but your network allowed filetypes do not "
1733
- "permit uploading of %s. Click <a href=\"%s\">here</a> to change your "
1734
- "settings manually."
1735
  msgstr ""
1736
 
1737
- #: ../app/admin/RTMediaAdmin.php:1714 ../app/admin/RTMediaAdmin.php:1725
1738
- #: ../app/admin/RTMediaAdmin.php:1734
1739
- msgid "Recommended"
1740
  msgstr ""
1741
 
1742
- #: ../app/admin/RTMediaAdmin.php:1714 ../app/admin/RTMediaAdmin.php:1725
1743
- #: ../app/admin/RTMediaAdmin.php:1734
1744
- msgid "Update Network Settings Automatically"
1745
  msgstr ""
1746
 
1747
- #: ../app/admin/RTMediaAdmin.php:1724
1748
- #, php-format
1749
- msgid ""
1750
- "You have video enabled on BuddyPress Media but your network allowed "
1751
- "filetypes do not permit uploading of mp4. Click <a href=\"%s\">here</a> to "
1752
- "change your settings manually."
1753
  msgstr ""
1754
 
1755
- #: ../app/admin/RTMediaAdmin.php:1733
1756
- #, php-format
1757
- msgid ""
1758
- "You have audio enabled on BuddyPress Media but your network allowed "
1759
- "filetypes do not permit uploading of mp3. Click <a href=\"%s\">here</a> to "
1760
- "change your settings manually."
1761
  msgstr ""
1762
 
1763
- #: ../app/admin/RTMediaAdmin.php:1748
1764
- msgid "Network settings updated successfully."
1765
  msgstr ""
1766
 
1767
- #: ../app/admin/RTMediaAdmin.php:1854
1768
- msgid "Video is sent to generate thumbnails."
1769
  msgstr ""
1770
 
1771
- #: ../app/admin/RTMediaAdmin.php:1856
1772
- msgid "Video cannot be sent to generate thumbnails."
1773
  msgstr ""
1774
 
1775
- #: ../app/admin/RTMediaAdmin.php:1935
1776
- msgid ""
1777
- "Please update rtMedia template files if you have overridden the default "
1778
- "rtMedia templates in your theme. If not, you can ignore and hide this notice."
1779
  msgstr ""
1780
 
1781
- #: ../app/admin/RTMediaAdmin.php:1935
1782
- #: ../app/importers/RTMediaMediaSizeImporter.php:66
1783
- #: ../app/importers/RTMediaMigration.php:64
1784
- msgid "Hide"
1785
  msgstr ""
1786
 
1787
- #: ../app/helper/RTMediaSupport.php:58 ../app/helper/RTMediaSupport.php:59
1788
- #: ../app/helper/RTMediaSupport.php:305 ../app/helper/RTMediaSupport.php:560
1789
- msgid "Debug Info"
 
 
1790
  msgstr ""
1791
 
1792
- #: ../app/helper/RTMediaSupport.php:66 ../app/helper/RTMediaSupport.php:67
1793
- #: ../app/importers/RTMediaMigration.php:83
1794
- msgid "Migration"
1795
  msgstr ""
1796
 
1797
- #: ../app/helper/RTMediaSupport.php:128
1798
- msgid "Service"
 
 
1799
  msgstr ""
1800
 
1801
- #: ../app/helper/RTMediaSupport.php:135
1802
- msgid "Premium Support"
1803
  msgstr ""
1804
 
1805
- #: ../app/helper/RTMediaSupport.php:141
1806
- msgid "Bug Report"
1807
  msgstr ""
1808
 
1809
- #: ../app/helper/RTMediaSupport.php:147
1810
- msgid "New Feature"
1811
  msgstr ""
1812
 
1813
- #: ../app/helper/RTMediaSupport.php:149
1814
- msgid "Submit"
1815
  msgstr ""
1816
 
1817
- #: ../app/helper/RTMediaSupport.php:195
1818
- msgid "by"
1819
  msgstr ""
1820
 
1821
- #: ../app/helper/RTMediaSupport.php:195
1822
- msgid "version"
1823
  msgstr ""
1824
 
1825
- #: ../app/helper/RTMediaSupport.php:357
1826
- msgid "There is no media found to migrate."
1827
  msgstr ""
1828
 
1829
- #: ../app/helper/RTMediaSupport.php:363
1830
- msgid "Click"
1831
  msgstr ""
1832
 
1833
- #: ../app/helper/RTMediaSupport.php:363
1834
- msgid "here"
1835
  msgstr ""
1836
 
1837
- #: ../app/helper/RTMediaSupport.php:363
1838
- msgid "here to migrate media from rtMedia 2.x to rtMedia 3.0+."
1839
  msgstr ""
1840
 
1841
- #: ../app/helper/RTMediaSupport.php:392
1842
- msgid "Submit a Bug Report"
1843
  msgstr ""
1844
 
1845
- #: ../app/helper/RTMediaSupport.php:395
1846
- msgid "Submit a New Feature Request"
1847
  msgstr ""
1848
 
1849
- #: ../app/helper/RTMediaSupport.php:398
1850
- msgid "Submit Support Request"
1851
  msgstr ""
1852
 
1853
- #: ../app/helper/RTMediaSupport.php:405
1854
- msgid ""
1855
- "If your site has some issues due to rtMedia and you want support, feel free "
1856
- "to create a support topic on <a target=\"_blank\" href=\"http://community."
1857
- "rtcamp.com/c/rtmedia/?"
1858
- "utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media"
1859
- "\">Community Forum</a>."
1860
  msgstr ""
1861
 
1862
- #: ../app/helper/RTMediaSupport.php:406
1863
- msgid ""
1864
- "If you have any suggestions, enhancements or bug reports, you can open a new "
1865
- "issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-"
1866
- "media/issues/new\">GitHub</a>."
1867
  msgstr ""
1868
 
1869
- #: ../app/helper/RTMediaSupport.php:415
1870
- msgid "Name"
 
1871
  msgstr ""
1872
 
1873
- #: ../app/helper/RTMediaSupport.php:420
1874
- msgid "Use actual user name which used during purchased."
1875
  msgstr ""
1876
 
1877
- #: ../app/helper/RTMediaSupport.php:426
1878
- msgid "Email"
1879
  msgstr ""
1880
 
1881
- #: ../app/helper/RTMediaSupport.php:431
1882
- msgid "Use email id which used during purchased"
1883
  msgstr ""
1884
 
1885
- #: ../app/helper/RTMediaSupport.php:437
1886
- msgid "Website"
1887
  msgstr ""
1888
 
1889
- #: ../app/helper/RTMediaSupport.php:442
1890
- msgid "Subject"
1891
  msgstr ""
1892
 
1893
- #: ../app/helper/RTMediaSupport.php:490
1894
- msgid "rtMedia Premium Support Request from"
1895
  msgstr ""
1896
 
1897
- #: ../app/helper/RTMediaSupport.php:493
1898
- msgid "rtMedia New Feature Request from"
1899
  msgstr ""
1900
 
1901
- #: ../app/helper/RTMediaSupport.php:496
1902
- msgid "rtMedia Bug Report from"
1903
  msgstr ""
1904
 
1905
- #: ../app/helper/RTMediaSupport.php:499
1906
- msgid "rtMedia Contact from"
1907
  msgstr ""
1908
 
1909
- #: ../app/helper/RTMediaSupport.php:582
1910
- msgid "Thank you for your Feedback/Suggestion."
 
 
 
 
1911
  msgstr ""
1912
 
1913
- #: ../app/helper/RTMediaSupport.php:584
1914
- msgid "Thank you for posting your support request."
 
 
 
 
 
 
1915
  msgstr ""
1916
 
1917
- #: ../app/helper/RTMediaSupport.php:585
1918
- msgid "We will get back to you shortly."
1919
  msgstr ""
1920
 
1921
- #: ../app/helper/RTMediaSupport.php:590
1922
- msgid "Your server failed to send an email."
1923
  msgstr ""
1924
 
1925
- #: ../app/helper/RTMediaSupport.php:591
1926
- msgid "Kindly contact your server support to fix this."
1927
  msgstr ""
1928
 
1929
- #: ../app/helper/RTMediaSupport.php:592
1930
- #, php-format
1931
- msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
1932
  msgstr ""
1933
 
1934
- #: ../app/helper/RTMediaAddon.php:79 ../app/helper/RTMediaAddon.php:80
1935
- msgid "Plugins"
1936
  msgstr ""
1937
 
1938
- #: ../app/helper/RTMediaAddon.php:87 ../app/helper/RTMediaAddon.php:88
1939
- msgid "Audio/Video Encoding"
1940
  msgstr ""
1941
 
1942
- #: ../app/helper/RTMediaAddon.php:111
1943
- msgid "Moderation"
1944
  msgstr ""
1945
 
1946
- #: ../app/helper/RTMediaAddon.php:114
1947
- msgid ""
1948
- "Report media if they find offensive. Set number of reports to automatically "
1949
- "take down media from site."
1950
  msgstr ""
1951
 
1952
- #: ../app/helper/RTMediaAddon.php:122
1953
- msgid "Custom Attributes"
1954
  msgstr ""
1955
 
1956
- #: ../app/helper/RTMediaAddon.php:125
1957
- msgid ""
1958
- "Categories media based on attributes. Site owner need to create attributes. "
1959
- "When user upload a media, can select in which attribute that media can add."
1960
  msgstr ""
1961
 
1962
- #: ../app/helper/RTMediaAddon.php:133
1963
- msgid "Docs and Other files"
1964
  msgstr ""
1965
 
1966
- #: ../app/helper/RTMediaAddon.php:136
1967
- msgid ""
1968
- "Allow users to upload documents and other file type using rtMedia upload "
1969
- "box. This addon support all the file extensions which WordPress allows."
1970
  msgstr ""
1971
 
1972
- #: ../app/helper/RTMediaAddon.php:144
1973
- msgid "Default Albums"
 
1974
  msgstr ""
1975
 
1976
- #: ../app/helper/RTMediaAddon.php:147
1977
- msgid ""
1978
- "This plugin allows the creation of multiple default albums for rtMedia "
1979
- "uploads. One of these albums can be set as the default global album."
1980
  msgstr ""
1981
 
1982
- #: ../app/helper/RTMediaAddon.php:155
1983
- msgid "Podcast (RSS and Atom feeds)"
 
 
1984
  msgstr ""
1985
 
1986
- #: ../app/helper/RTMediaAddon.php:158
1987
- msgid ""
1988
- "Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting "
1989
- "software."
1990
  msgstr ""
1991
 
1992
- #: ../app/helper/RTMediaAddon.php:166
1993
- msgid "Playlists"
1994
  msgstr ""
1995
 
1996
- #: ../app/helper/RTMediaAddon.php:169
1997
- msgid ""
1998
- "Audio can be grouped into playlists. Once the user upload any audio file, "
1999
- "can create a playlist or use existing one to manage audio files."
2000
  msgstr ""
2001
 
2002
- #: ../app/helper/RTMediaAddon.php:177
2003
- msgid "Favorites"
2004
  msgstr ""
2005
 
2006
- #: ../app/helper/RTMediaAddon.php:180
2007
- msgid ""
2008
- "Users can create their list of favorite media in which they can add media "
2009
- "previously uploaded by any user."
2010
  msgstr ""
2011
 
2012
- #: ../app/helper/RTMediaAddon.php:188
2013
- msgid "Restrictions"
2014
  msgstr ""
2015
 
2016
- #: ../app/helper/RTMediaAddon.php:191
2017
- msgid ""
2018
- "Site admin can set an upload limit on the basis of time span, file size (MB) "
2019
- "and number of files user can upload."
2020
  msgstr ""
2021
 
2022
- #: ../app/helper/RTMediaAddon.php:199
2023
- msgid "bbPress Attachments"
2024
  msgstr ""
2025
 
2026
- #: ../app/helper/RTMediaAddon.php:202
2027
- msgid "Attach media files to bbPress forum topics and replies."
2028
  msgstr ""
2029
 
2030
- #: ../app/helper/RTMediaAddon.php:210
2031
- msgid "WordPress Sitewide Gallery"
2032
  msgstr ""
2033
 
2034
- #: ../app/helper/RTMediaAddon.php:213
2035
- msgid ""
2036
- "Site admin can create and upload media into WordPress album. Create album "
2037
- "without being dependent on BuddyPress."
2038
  msgstr ""
2039
 
2040
- #: ../app/helper/RTMediaAddon.php:221
2041
- msgid "WordPress Comment Attachments"
2042
  msgstr ""
2043
 
2044
- #: ../app/helper/RTMediaAddon.php:224
2045
- msgid ""
2046
- "Allow users to upload a media file in WordPress comment attachment box. It "
2047
- "will display a thumbnail of attached file."
2048
  msgstr ""
2049
 
2050
- #: ../app/helper/RTMediaAddon.php:232
2051
- msgid "Social Sharing"
2052
  msgstr ""
2053
 
2054
- #: ../app/helper/RTMediaAddon.php:235
 
 
 
 
2055
  msgid ""
2056
- "Share uploaded media on social network sites like Facebook, twitter, "
2057
- "linkedin, Google +. This addon integrate with rtSocial plugin."
2058
  msgstr ""
2059
 
2060
- #: ../app/helper/RTMediaAddon.php:243
2061
- msgid "Sidebar Widgets"
2062
  msgstr ""
2063
 
2064
- #: ../app/helper/RTMediaAddon.php:246
2065
- msgid ""
2066
- "This addon provide widgets to upload media and display gallery for rtMedia "
2067
- "plugin."
2068
  msgstr ""
2069
 
2070
- #: ../app/helper/RTMediaAddon.php:254
2071
- msgid "5 Star Ratings"
2072
  msgstr ""
2073
 
2074
- #: ../app/helper/RTMediaAddon.php:257
2075
- msgid ""
2076
- "Display 5 star rating for all the uploaded media. User can rate the media "
2077
- "files from 1 to 5 star."
2078
  msgstr ""
2079
 
2080
- #: ../app/helper/RTMediaAddon.php:265
2081
- msgid "Edit Mp3 Info (ID3 Tags)"
2082
  msgstr ""
2083
 
2084
- #: ../app/helper/RTMediaAddon.php:268
2085
- msgid "Allow user to edit MP3 FIle Audio tags (ID 3 tags)."
2086
  msgstr ""
2087
 
2088
- #: ../app/helper/RTMediaAddon.php:276
2089
- msgid "Media Sorting"
2090
  msgstr ""
2091
 
2092
- #: ../app/helper/RTMediaAddon.php:279
2093
- msgid ""
2094
- "Sort uploaded media based on file size, ascending/descending title, upload "
2095
- "date of media."
2096
  msgstr ""
2097
 
2098
- #: ../app/helper/RTMediaAddon.php:287
2099
- msgid "Bulk Edit"
2100
  msgstr ""
2101
 
2102
- #: ../app/helper/RTMediaAddon.php:290
2103
- msgid ""
2104
- "Bulk edit option will allow user to quickly select media files and do "
2105
- "required actions like move files from one album to another, change "
2106
- "attributes, change privacy, delete files."
2107
  msgstr ""
2108
 
2109
- #: ../app/helper/RTMediaAddon.php:298
2110
- msgid "BuddyPress Profile Picture"
2111
  msgstr ""
2112
 
2113
- #: ../app/helper/RTMediaAddon.php:301
2114
- msgid ""
2115
- "User can easily set his/her profile picture from media uploaded via rtMedia."
2116
  msgstr ""
2117
 
2118
- #: ../app/helper/RTMediaAddon.php:309
2119
- msgid "Album Cover Art"
2120
  msgstr ""
2121
 
2122
- #: ../app/helper/RTMediaAddon.php:312
2123
- msgid "User can easily set any of the image of the album as album cover photo"
2124
  msgstr ""
2125
 
2126
- #: ../app/helper/RTMediaAddon.php:320
2127
- msgid "Direct Download Link"
2128
  msgstr ""
2129
 
2130
- #: ../app/helper/RTMediaAddon.php:323
2131
- msgid ""
2132
- "User can download media from website. Site owner can restrict which media "
2133
- "type can be allowed to download."
2134
  msgstr ""
2135
 
2136
- #: ../app/helper/RTMediaAddon.php:331
2137
- msgid "Upload by URL"
2138
  msgstr ""
2139
 
2140
- #: ../app/helper/RTMediaAddon.php:334
2141
- msgid ""
2142
- "Users do not need to download media files from a URL and then upload it with "
2143
- "rtMedia. Just provide the absolute URL for the media and it will upload on "
2144
- "site."
2145
  msgstr ""
2146
 
2147
- #: ../app/helper/RTMediaAddon.php:342
2148
- msgid "Media Likes"
2149
  msgstr ""
2150
 
2151
- #: ../app/helper/RTMediaAddon.php:345
2152
- msgid ""
2153
- "This add-on let you know who liked the media. User can also see which media "
2154
- "they liked under their profile."
2155
  msgstr ""
2156
 
2157
- #: ../app/helper/RTMediaAddon.php:353
2158
- msgid "Activity URL Preview"
2159
  msgstr ""
2160
 
2161
- #: ../app/helper/RTMediaAddon.php:356
2162
- msgid ""
2163
- "This addon provides a preview of the URL that is shared in BuddyPress "
2164
- "activity. Just enter the URL you want to share on your site and see a "
2165
- "preview of it before it is shared."
2166
  msgstr ""
2167
 
2168
- #: ../app/helper/RTMediaAddon.php:364
2169
- msgid "View Counter"
2170
  msgstr ""
2171
 
2172
- #: ../app/helper/RTMediaAddon.php:367
2173
- msgid ""
2174
- "Enable view count for all the uploaded media. Whenever user open that media "
2175
- "file in lightbox or in single media view, that view count will be calculated "
2176
- "and display next to media file."
2177
  msgstr ""
2178
 
2179
- #: ../app/helper/RTMediaAddon.php:375
2180
- msgid "Shortcode Generator"
2181
  msgstr ""
2182
 
2183
- #: ../app/helper/RTMediaAddon.php:378
2184
- msgid ""
2185
- "This add-on will add shortcode generator button in WordPress post and page "
2186
- "editor for all the rtMedia shortcodes."
2187
  msgstr ""
2188
 
2189
- #: ../app/helper/RTMediaAddon.php:386
2190
- msgid "Album Privacy"
 
2191
  msgstr ""
2192
 
2193
- #: ../app/helper/RTMediaAddon.php:389
2194
- msgid ""
2195
- "Set album privacy when user create an album or change album privacy when "
2196
- "editing existing albums. The privacy levels are Public, Logged in user, "
2197
- "Friends and Private."
2198
  msgstr ""
2199
 
2200
- #: ../app/helper/RTMediaAddon.php:397
2201
- msgid "BuddyPress Group Media Control"
2202
  msgstr ""
2203
 
2204
- #: ../app/helper/RTMediaAddon.php:400
2205
- msgid ""
2206
- "This add-on allows group owner to manage media upload feature group wise."
2207
  msgstr ""
2208
 
2209
- #: ../app/helper/RTMediaAddon.php:408
2210
- msgid "Set Custom Thumbnail for Audio/Video"
2211
  msgstr ""
2212
 
2213
- #: ../app/helper/RTMediaAddon.php:411
2214
- msgid ""
2215
- "Allow media owner to change the thumbnail of uploaded audio/video files. The "
2216
- "File Upload box will be provided to change media thumbnail."
2217
  msgstr ""
2218
 
2219
- #: ../app/helper/RTMediaAddon.php:419
2220
- msgid "myCRED"
2221
  msgstr ""
2222
 
2223
- #: ../app/helper/RTMediaAddon.php:422
2224
- msgid ""
2225
- "This plugin integrates rtMedia and myCRED plugin, users can be can award "
2226
- "virtual points for various rtMedia activities, like media upload, likes, "
2227
- "deleted etc."
2228
  msgstr ""
2229
 
2230
- #: ../app/helper/RTMediaAddon.php:430
2231
- msgid "Upload terms"
2232
  msgstr ""
2233
 
2234
- #: ../app/helper/RTMediaAddon.php:433
2235
- msgid ""
2236
- "User must have to check the terms and conditions checkbox before uploading "
2237
- "the media."
2238
  msgstr ""
2239
 
2240
- #: ../app/helper/RTMediaAddon.php:441
2241
- msgid "CubePoints"
 
2242
  msgstr ""
2243
 
2244
- #: ../app/helper/RTMediaAddon.php:444
2245
- msgid ""
2246
- "If you are using CubePoints plugin on your website than rtMedia CubePoint "
2247
- "add-on can be integrate with that plugin to setup point management system "
2248
- "for rtMedia related activities."
2249
  msgstr ""
2250
 
2251
- #: ../app/helper/RTMediaAddon.php:452
2252
- msgid "Social Sync"
 
2253
  msgstr ""
2254
 
2255
- #: ../app/helper/RTMediaAddon.php:455
2256
- msgid ""
2257
- "rtMedia Social Sync allows you to import media from your Facebook account."
2258
  msgstr ""
2259
 
2260
- #: ../app/helper/RTMediaAddon.php:463
2261
- msgid "Photo Watermark"
 
2262
  msgstr ""
2263
 
2264
- #: ../app/helper/RTMediaAddon.php:466
2265
- msgid ""
2266
- "rtMedia Photo Watermark let you add watermark on your images uploaded using "
2267
- "rtMedia."
 
2268
  msgstr ""
2269
 
2270
- #: ../app/helper/RTMediaAddon.php:474
2271
- msgid "Photo Tagging"
2272
  msgstr ""
2273
 
2274
- #: ../app/helper/RTMediaAddon.php:477
 
 
 
 
2275
  msgid ""
2276
- "rtMedia Photo Tagging enable users to tag their friends on photos uploaded "
2277
- "using rtMedia."
 
2278
  msgstr ""
2279
 
2280
- #: ../app/helper/RTMediaAddon.php:485
2281
- msgid "Instagram"
 
 
 
 
 
 
2282
  msgstr ""
2283
 
2284
- #: ../app/helper/RTMediaAddon.php:488
2285
- msgid ""
2286
- "rtMedia Instagram adds Instagram like filters to images uploaded with "
2287
- "rtMedia."
2288
  msgstr ""
2289
 
2290
- #: ../app/helper/RTMediaAddon.php:496
2291
- msgid "Kaltura Add-on"
 
2292
  msgstr ""
2293
 
2294
- #: ../app/helper/RTMediaAddon.php:499
2295
- msgid ""
2296
- "Add support for more video formats using Kaltura video solution. It works "
2297
- "with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
2298
  msgstr ""
2299
 
2300
- #: ../app/helper/RTMediaAddon.php:507
2301
- msgid "FFMPEG Add-on"
2302
  msgstr ""
2303
 
2304
- #: ../app/helper/RTMediaAddon.php:510
2305
- msgid ""
2306
- "Add supports for more audio & video formats using open-source media-node. "
2307
- "Media node comes with automated setup script for Ubuntu/Debian."
2308
  msgstr ""
2309
 
2310
- #: ../app/helper/RTMediaAddon.php:518
2311
- msgid "Membership Add-on"
2312
  msgstr ""
2313
 
2314
- #: ../app/helper/RTMediaAddon.php:521
2315
- msgid ""
2316
- "rtMedia Membership add-on provides membership functionality in your site in "
2317
- "terms of media upload."
2318
  msgstr ""
2319
 
2320
- #: ../app/helper/RTMediaAddon.php:561
2321
- msgid "Coming Soon !!"
2322
  msgstr ""
2323
 
2324
- #: ../app/helper/RTMediaAddon.php:594
2325
- msgid "Purchased"
2326
  msgstr ""
2327
 
2328
- #: ../app/helper/RTMediaAddon.php:596 ../app/helper/RTMediaThemes.php:145
2329
- #: ../app/helper/RTMediaThemes.php:173 ../app/helper/RTMediaThemes.php:260
2330
- #: ../app/helper/RTMediaThemes.php:288
2331
- #: ../app/importers/BPMediaAlbumimporter.php:178
2332
- msgid "Buy Now"
2333
  msgstr ""
2334
 
2335
- #: ../app/helper/RTMediaAddon.php:625 ../app/helper/RTMediaThemes.php:144
2336
- #: ../app/helper/RTMediaThemes.php:172 ../app/helper/RTMediaThemes.php:259
2337
- #: ../app/helper/RTMediaThemes.php:287
2338
- #: ../app/importers/BPMediaAlbumimporter.php:179
2339
- msgid "Live Demo"
2340
  msgstr ""
2341
 
2342
- #: ../app/helper/rtFormInvalidArgumentsException.php:21
2343
- #, php-format
2344
- msgid ""
2345
- "Error on line %s in %s : <b>The method expects an array in arguments for %s "
2346
- "provided.</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2347
  msgstr ""
2348
 
2349
- #: ../app/helper/RTMediaAdminWidget.php:32
2350
- msgid "Argument missing. id is required."
2351
  msgstr ""
2352
 
2353
- #: ../app/helper/RTMediaFeed.php:52
2354
- msgid "No items"
2355
  msgstr ""
2356
 
2357
- #: ../app/helper/RTMediaFeed.php:58
2358
- msgid "Posted "
 
2359
  msgstr ""
2360
 
2361
- #: ../app/helper/RTMediaUploadException.php:41
2362
- msgid ""
2363
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
2364
- "the HTML form"
 
2365
  msgstr ""
2366
 
2367
- #: ../app/helper/RTMediaUploadException.php:44
2368
- msgid "No file was uploaded"
2369
  msgstr ""
2370
 
2371
- #: ../app/helper/RTMediaUploadException.php:49
2372
- msgid "Uploade failed due to internal server error."
2373
  msgstr ""
2374
 
2375
- #: ../app/helper/RTMediaUploadException.php:52
2376
- msgid "File type not allowed."
 
2377
  msgstr ""
2378
 
2379
- #: ../app/helper/RTMediaUploadException.php:56
2380
- msgid "Invalid Context for upload."
2381
  msgstr ""
2382
 
2383
- #: ../app/helper/RTMediaUploadException.php:59
2384
- msgid "Unknown file upload error."
2385
  msgstr ""
2386
 
2387
- #: ../app/helper/RTMediaSettings.php:205
2388
- msgid "BuddyPress Media Addons for Photos"
2389
  msgstr ""
2390
 
2391
- #: ../app/helper/RTMediaSettings.php:209
2392
- msgid "rtMedia Themes"
2393
  msgstr ""
2394
 
2395
- #: ../app/helper/RTMediaSettings.php:282
2396
- #, php-format
2397
- msgid ""
2398
- "Currently your network allows uploading of the following file types. You can "
2399
- "change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
2400
  msgstr ""
2401
 
2402
- #: ../app/helper/RTMediaSettings.php:300 ../app/helper/RTMediaSettings.php:302
2403
- msgid "Recounting of media files done successfully"
2404
  msgstr ""
2405
 
2406
- #: ../app/helper/RTMediaSettings.php:302
2407
- msgid "Recount Success"
2408
  msgstr ""
2409
 
2410
- #: ../app/helper/RTMediaSettings.php:306 ../app/helper/RTMediaSettings.php:308
2411
- msgid "Recounting Failed"
2412
  msgstr ""
2413
 
2414
- #: ../app/helper/RTMediaSettings.php:308
2415
- msgid "Recount Fail"
 
2416
  msgstr ""
2417
 
2418
- #: ../app/helper/RTMediaSettings.php:321 ../app/helper/RTMediaSettings.php:323
2419
- msgid "Atleast one Media Type Must be selected"
 
2420
  msgstr ""
2421
 
2422
- #: ../app/helper/RTMediaSettings.php:332 ../app/helper/RTMediaSettings.php:334
2423
- msgid "\"Number of media\" count value should be numeric and greater than 0."
2424
  msgstr ""
2425
 
2426
- #: ../app/helper/RTMediaSettings.php:334
2427
- msgid "Default Count"
 
2428
  msgstr ""
2429
 
2430
- #: ../app/helper/RTMediaSettings.php:339
2431
- msgid "Settings saved."
2432
  msgstr ""
2433
 
2434
- #: ../app/helper/RTMediaSettings.php:363
2435
- #, php-format
2436
- msgid ""
2437
- "If you make changes to width, height or crop settings, you must use \"<a "
2438
- "href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
2439
  msgstr ""
2440
 
2441
- #: ../app/helper/RTMediaSettings.php:384
2442
- msgid "BuddyPress Media 2.6 requires a database upgrade. "
2443
  msgstr ""
2444
 
2445
- #: ../app/helper/RTMediaSettings.php:384
2446
- msgid "Update Database"
2447
  msgstr ""
2448
 
2449
- #: ../app/helper/RTMediaSettings.php:401
2450
- msgid ""
2451
- "If your site has some issues due to BuddyPress Media and you want one on one "
2452
- "support then you can create a support topic on the <a target=\"_blank\" href="
2453
- "\"http://community.rtcamp.com/c/rtmedia?"
2454
- "utm_source=dashboard&utm_medium=plugin&utm_campaign=rtmedia\">rtCamp Support "
2455
- "Forum</a>."
2456
  msgstr ""
2457
 
2458
- #: ../app/helper/RTMediaSettings.php:402
2459
- msgid ""
2460
- "If you have any suggestions, enhancements or bug reports, then you can open "
2461
- "a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/rtmedia/"
2462
- "issues/new\">GitHub</a>."
2463
  msgstr ""
2464
 
2465
- #: ../app/helper/RTMediaThemes.php:60 ../app/helper/RTMediaThemes.php:61
2466
- msgid "Themes By rtCamp"
2467
  msgstr ""
2468
 
2469
- #: ../app/helper/RTMediaThemes.php:67 ../app/helper/RTMediaThemes.php:68
2470
- msgid "3rd Party Themes"
2471
  msgstr ""
2472
 
2473
- #: ../app/helper/RTMediaThemes.php:105
2474
- msgid "rtDating"
2475
  msgstr ""
2476
 
2477
- #: ../app/helper/RTMediaThemes.php:108 ../app/helper/RTMediaThemes.php:118
2478
- msgid "rtCamp"
2479
  msgstr ""
2480
 
2481
- #: ../app/helper/RTMediaThemes.php:111
2482
- msgid ""
2483
- "rtDating is a unique, clean and modern theme only for WordPress. This theme "
2484
- "is mostly useful for dating sites and community websites. It can also be use "
2485
- "for any other WordPress based website."
2486
  msgstr ""
2487
 
2488
- #: ../app/helper/RTMediaThemes.php:115
2489
- msgid "InspireBook"
2490
  msgstr ""
2491
 
2492
- #: ../app/helper/RTMediaThemes.php:121
2493
- msgid ""
2494
- "InspireBook is a premium WordPress theme, designed especially for BuddyPress "
2495
- "and rtMedia powered social-networks."
2496
  msgstr ""
2497
 
2498
- #: ../app/helper/RTMediaThemes.php:139 ../app/helper/RTMediaThemes.php:254
2499
- msgid "Theme Details"
2500
  msgstr ""
2501
 
2502
- #: ../app/helper/RTMediaThemes.php:151 ../app/helper/RTMediaThemes.php:266
2503
- msgid "Show previous theme"
2504
  msgstr ""
2505
 
2506
- #: ../app/helper/RTMediaThemes.php:152 ../app/helper/RTMediaThemes.php:267
2507
- msgid "Show next theme"
2508
  msgstr ""
2509
 
2510
- #: ../app/helper/RTMediaThemes.php:153 ../app/helper/RTMediaThemes.php:268
2511
- msgid "Close overlay"
2512
  msgstr ""
2513
 
2514
- #: ../app/helper/RTMediaThemes.php:166 ../app/helper/RTMediaThemes.php:281
2515
- msgid "Read More"
2516
  msgstr ""
2517
 
2518
- #: ../app/helper/RTMediaThemes.php:167 ../app/helper/RTMediaThemes.php:282
2519
- msgid "Tags:"
2520
  msgstr ""
2521
 
2522
- #: ../app/helper/RTMediaThemes.php:199
2523
- msgid "(M) SOCIAL NETWORK BUDDYPRESS THEME"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2524
  msgstr ""
2525
 
2526
- #: ../app/helper/RTMediaThemes.php:202
2527
- msgid "gavick"
2528
  msgstr ""
2529
 
2530
- #: ../app/helper/RTMediaThemes.php:205
2531
- msgid ""
2532
- "(M)Social is a sophisticated, vibrant community theme that offers incredible "
2533
- "grid layouts, with full BuddyPress support so your users can interact with "
2534
- "each other, create their own pages, and share their thoughts and images with "
2535
- "the community. "
2536
  msgstr ""
2537
 
2538
- #: ../app/helper/RTMediaThemes.php:209
2539
- msgid "Klein"
2540
  msgstr ""
2541
 
2542
- #: ../app/helper/RTMediaThemes.php:212
2543
- msgid "dunhakdis"
2544
  msgstr ""
2545
 
2546
- #: ../app/helper/RTMediaThemes.php:215
2547
- msgid ""
2548
- "Klein is an innovative WordPress theme built to support BuddyPress, bbPress, "
2549
- "and WooCommerce out of the box. Perfect for websites that interacts with "
2550
- "many users."
2551
  msgstr ""
2552
 
2553
- #: ../app/helper/RTMediaThemes.php:219
2554
- msgid "SweetDate"
 
 
2555
  msgstr ""
2556
 
2557
- #: ../app/helper/RTMediaThemes.php:222 ../app/helper/RTMediaThemes.php:232
2558
- msgid "SeventhQueen"
2559
  msgstr ""
2560
 
2561
- #: ../app/helper/RTMediaThemes.php:225
2562
- msgid ""
2563
- "SweetDate is a unique, clean and modern Premium Wordpress theme. It is "
2564
- "perfect for a dating or community website but can be used as well for any "
2565
- "other domain. They added all the things you need to create a perfect "
2566
- "community system."
2567
  msgstr ""
2568
 
2569
- #: ../app/helper/RTMediaThemes.php:229
2570
- msgid "KLEO"
2571
  msgstr ""
2572
 
2573
- #: ../app/helper/RTMediaThemes.php:235
2574
- msgid ""
2575
- "You no longer need to be a professional developer or designer to create an "
2576
- "awesome website. Let your imagination run wild and create the site of your "
2577
- "dreams. KLEO has all the tools to get you started."
2578
  msgstr ""
2579
 
2580
- #: ../app/helper/RTMediaThemes.php:298
2581
- msgid ""
2582
- "These are the third party themes. For any issues or queries regarding these "
2583
- "themes please contact theme developers."
2584
  msgstr ""
2585
 
2586
- #: ../app/helper/RTMediaThemes.php:301
2587
- msgid "Are you a developer?"
2588
  msgstr ""
2589
 
2590
- #: ../app/helper/RTMediaThemes.php:304
2591
- msgid ""
2592
- "If you have developed a rtMedia compatible theme and would like it to list "
2593
- "here, please email us at"
2594
  msgstr ""
2595
 
2596
- #: ../app/helper/RTMediaThemes.php:305
2597
- msgid "product@rtcamp.com"
2598
  msgstr ""
2599
 
2600
- #: ../app/helper/RTMediaLicense.php:56
2601
- msgid "Activated"
 
 
 
2602
  msgstr ""
2603
 
2604
- #: ../app/helper/RTMediaLicense.php:59
2605
- msgid "Deactivated"
2606
  msgstr ""
2607
 
2608
- #: ../app/helper/RTMediaLicense.php:68
2609
- msgid "Status: "
2610
  msgstr ""
2611
 
2612
- #: ../app/helper/RTMediaLicense.php:77
2613
- msgid "License Key"
 
 
 
2614
  msgstr ""
2615
 
2616
- #: ../app/helper/RTMediaLicense.php:88
2617
- msgid "Activate / Deactivate License"
2618
  msgstr ""
2619
 
2620
- #: ../app/helper/RTMediaLicense.php:96
2621
- msgid "Deactivate License"
 
 
2622
  msgstr ""
2623
 
2624
- #: ../app/helper/RTMediaLicense.php:99
2625
- msgid "Activate License"
2626
  msgstr ""
2627
 
2628
- #: ../app/services/RTMediaEncoding.php:156
2629
  msgid "rtMedia Encoding: Nearing quota limit."
2630
  msgstr ""
2631
 
2632
- #: ../app/services/RTMediaEncoding.php:157
2633
- #, php-format
2634
  msgid ""
2635
- "<p>You are nearing the quota limit for your rtMedia encoding service.</"
2636
- "p><p>Following are the details:</p><p><strong>Used:</strong> %s</"
2637
- "p><p><strong>Remaining</strong>: %s</p><p><strong>Total:</strong> %s</p>"
2638
  msgstr ""
2639
 
2640
- #: ../app/services/RTMediaEncoding.php:171
2641
  msgid "rtMedia Encoding: Usage quota over."
2642
  msgstr ""
2643
 
2644
- #: ../app/services/RTMediaEncoding.php:172
2645
- #, php-format
2646
  msgid ""
2647
  "<p>Your usage quota is over. Upgrade your plan</p><p>Following are the "
2648
  "details:</p><p><strong>Used:</strong> %s</p><p><strong>Remaining</strong>: "
2649
  "%s</p><p><strong>Total:</strong> %s</p>"
2650
  msgstr ""
2651
 
2652
- #: ../app/services/RTMediaEncoding.php:233
2653
- #, php-format
2654
  msgid "You have successfully subscribed for the <strong>%s</strong> plan"
2655
  msgstr ""
2656
 
2657
- #: ../app/services/RTMediaEncoding.php:245
2658
  msgid "Unsubscribe"
2659
  msgstr ""
2660
 
2661
- #: ../app/services/RTMediaEncoding.php:247
2662
  msgid ""
2663
  "Just to improve our service we would like to know the reason for you to "
2664
  "leave us."
2665
  msgstr ""
2666
 
2667
- #: ../app/services/RTMediaEncoding.php:296
2668
- #: ../app/services/RTMediaEncoding.php:398
2669
  msgid "Current Plan"
2670
  msgstr ""
2671
 
2672
- #: ../app/services/RTMediaEncoding.php:296
2673
  msgid "Unsubscribed"
2674
  msgstr ""
2675
 
2676
- #: ../app/services/RTMediaEncoding.php:298
2677
  msgid "Used"
2678
  msgstr ""
2679
 
2680
- #: ../app/services/RTMediaEncoding.php:300
2681
  msgid "Remaining"
2682
  msgstr ""
2683
 
2684
- #: ../app/services/RTMediaEncoding.php:302
2685
  msgid "Total"
2686
  msgstr ""
2687
 
2688
- #: ../app/services/RTMediaEncoding.php:306
2689
  msgid "Your usage limit has been reached. Upgrade your plan."
2690
  msgstr ""
2691
 
2692
- #: ../app/services/RTMediaEncoding.php:308
2693
  msgid "Your API key is not valid or is expired."
2694
  msgstr ""
2695
 
2696
- #: ../app/services/RTMediaEncoding.php:310
2697
  msgid "Encoding Usage"
2698
  msgstr ""
2699
 
2700
- #: ../app/services/RTMediaEncoding.php:316
2701
  msgid "Audio/Video encoding service"
2702
  msgstr ""
2703
 
2704
- #: ../app/services/RTMediaEncoding.php:318
2705
  msgid "rtMedia team has started offering an audio/video encoding service."
2706
  msgstr ""
2707
 
2708
- #: ../app/services/RTMediaEncoding.php:321
2709
  msgid "Enter API KEY"
2710
  msgstr ""
2711
 
2712
- #: ../app/services/RTMediaEncoding.php:323
2713
  msgid "Save Key"
2714
  msgstr ""
2715
 
2716
- #: ../app/services/RTMediaEncoding.php:344
2717
  msgid "Feature\\Plan"
2718
  msgstr ""
2719
 
2720
- #: ../app/services/RTMediaEncoding.php:345
2721
- #: ../app/services/RTMediaEncoding.php:388
2722
  msgid "Free"
2723
  msgstr ""
2724
 
2725
- #: ../app/services/RTMediaEncoding.php:346
2726
  msgid "Silver"
2727
  msgstr ""
2728
 
2729
- #: ../app/services/RTMediaEncoding.php:347
2730
  msgid "Gold"
2731
  msgstr ""
2732
 
2733
- #: ../app/services/RTMediaEncoding.php:348
2734
  msgid "Platinum"
2735
  msgstr ""
2736
 
2737
- #: ../app/services/RTMediaEncoding.php:354
2738
  msgid "File Size Limit"
2739
  msgstr ""
2740
 
2741
- #: ../app/services/RTMediaEncoding.php:359
2742
  msgid "Bandwidth (monthly)"
2743
  msgstr ""
2744
 
2745
- #: ../app/services/RTMediaEncoding.php:366
2746
  msgid "Overage Bandwidth"
2747
  msgstr ""
2748
 
2749
- #: ../app/services/RTMediaEncoding.php:367
2750
- #: ../app/services/RTMediaEncoding.php:374
2751
- #: ../app/services/RTMediaEncoding.php:379
2752
  msgid "Not Available"
2753
  msgstr ""
2754
 
2755
- #: ../app/services/RTMediaEncoding.php:373
2756
  msgid "Amazon S3 Support"
2757
  msgstr ""
2758
 
2759
- #: ../app/services/RTMediaEncoding.php:375
2760
- #: ../app/services/RTMediaEncoding.php:380
2761
- #: ../app/services/RTMediaEncoding.php:384
2762
  msgid "Coming Soon"
2763
  msgstr ""
2764
 
2765
- #: ../app/services/RTMediaEncoding.php:378
2766
  msgid "HD Profile"
2767
  msgstr ""
2768
 
2769
- #: ../app/services/RTMediaEncoding.php:383
2770
  msgid "Webcam Recording"
2771
  msgstr ""
2772
 
2773
- #: ../app/services/RTMediaEncoding.php:387
2774
  msgid "Pricing"
2775
  msgstr ""
2776
 
2777
- #: ../app/services/RTMediaEncoding.php:389
2778
  msgid "$9/month"
2779
  msgstr ""
2780
 
2781
- #: ../app/services/RTMediaEncoding.php:390
2782
  msgid "$99/month"
2783
  msgstr ""
2784
 
2785
- #: ../app/services/RTMediaEncoding.php:391
2786
  msgid "$999/month"
2787
  msgstr ""
2788
 
2789
- #: ../app/services/RTMediaEncoding.php:402
2790
  msgid "Try Now"
2791
  msgstr ""
2792
 
2793
- #: ../app/services/RTMediaEncoding.php:550
2794
  msgid "Could not read file."
2795
  msgstr ""
2796
 
2797
- #: ../app/services/RTMediaEncoding.php:554
2798
  msgid ""
2799
  "Something went wrong. The required attachment id does not exists. It must "
2800
  "have been deleted."
2801
  msgstr ""
2802
 
2803
- #: ../app/services/RTMediaEncoding.php:569
2804
  msgid "rtMedia Encoding: Download Failed"
2805
  msgstr ""
2806
 
2807
- #: ../app/services/RTMediaEncoding.php:570
2808
- #, php-format
2809
  msgid ""
2810
  "<p><a href=\"%s\">Media</a> was successfully encoded but there was an error "
2811
  "while downloading:</p>\n"
2812
  " <p><code>%s</code></p>\n"
2813
- " <p>You can <a href=\"%s\">retry the download</a>.</p>"
 
2814
  msgstr ""
2815
 
2816
- #: ../app/services/RTMediaEncoding.php:584
2817
  msgid "Done"
2818
  msgstr ""
2819
 
2820
- #: ../app/services/RTMediaEncoding.php:609
2821
- #: ../app/services/RTMediaEncoding.php:631
2822
  msgid "Something went wrong please try again."
2823
  msgstr ""
2824
 
2825
- #: ../app/services/RTMediaEncoding.php:628
2826
  msgid "Your subscription was cancelled successfully"
2827
  msgstr ""
2828
 
2829
- #: ../app/services/RTMediaEncoding.php:640
2830
  msgid "Please enter the api key."
2831
  msgstr ""
2832
 
2833
- #: ../app/services/RTMediaEncoding.php:647
2834
  msgid "Encoding disabled successfully."
2835
  msgstr ""
2836
 
2837
- #: ../app/services/RTMediaEncoding.php:653
2838
  msgid "Encoding enabled successfully."
2839
  msgstr ""
2840
 
2841
- #: ../app/importers/BPMediaAlbumimporter.php:71
2842
- msgid "Warning!"
2843
- msgstr ""
2844
-
2845
- #: ../app/importers/BPMediaAlbumimporter.php:71
2846
- #, php-format
2847
- msgid ""
2848
- "This import process is irreversible. Although everything is tested, please "
2849
- "take a <a target=\"_blank\" href=\"http://codex.wordpress.org/"
2850
- "WordPress_Backups\">backup of your database and files</a>, before "
2851
- "proceeding. If you don't know your way around databases and files, consider "
2852
- "<a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
2853
- msgstr ""
2854
-
2855
- #: ../app/importers/BPMediaAlbumimporter.php:72
2856
- msgid ""
2857
- "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it "
2858
- "is set to \"false\", so that it doesn't conflict with the import process."
2859
- msgstr ""
2860
-
2861
- #: ../app/importers/BPMediaAlbumimporter.php:73
2862
- msgid "I have taken a backup of the database and files of this site."
2863
  msgstr ""
2864
 
2865
- #: ../app/importers/BPMediaAlbumimporter.php:75
2866
- msgid "Start Import"
2867
  msgstr ""
2868
 
2869
- #: ../app/importers/BPMediaAlbumimporter.php:80
2870
- msgid "Users"
 
2871
  msgstr ""
2872
 
2873
- #: ../app/importers/BPMediaAlbumimporter.php:110
2874
- msgid "Comments"
 
2875
  msgstr ""
2876
 
2877
- #: ../app/importers/BPMediaAlbumimporter.php:116
2878
- msgid "Comments: 0/0 (No comments to import)"
 
2879
  msgstr ""
2880
 
2881
- #: ../app/importers/BPMediaAlbumimporter.php:123
2882
- msgid "User's Favorites"
 
2883
  msgstr ""
2884
 
2885
- #: ../app/importers/BPMediaAlbumimporter.php:132
2886
- msgid ""
2887
- "BP-Album is active on your site and will cause problems with the import."
2888
  msgstr ""
2889
 
2890
- #: ../app/importers/BPMediaAlbumimporter.php:133
2891
- msgid "Click here to deactivate BP-Album and continue importing"
 
2892
  msgstr ""
2893
 
2894
- #: ../app/importers/BPMediaAlbumimporter.php:139
2895
- msgid ""
2896
- "Some of the media failed to import. The file might be corrupt or deleted."
2897
  msgstr ""
2898
 
2899
- #: ../app/importers/BPMediaAlbumimporter.php:140
2900
- #, php-format
2901
- msgid "The following %d BP Album Media id's could not be imported"
2902
  msgstr ""
2903
 
2904
- #: ../app/importers/BPMediaAlbumimporter.php:149
2905
- #, php-format
2906
- msgid "I just imported bp-album to @buddypressmedia http://rt.cx/rtmedia on %s"
2907
  msgstr ""
2908
 
2909
- #: ../app/importers/BPMediaAlbumimporter.php:150
2910
- msgid "Congratulations!"
 
2911
  msgstr ""
2912
 
2913
- #: ../app/importers/BPMediaAlbumimporter.php:150
2914
- msgid "All media from BP Album has been imported."
 
2915
  msgstr ""
2916
 
2917
- #: ../app/importers/BPMediaAlbumimporter.php:151
2918
- msgid "Tweet this"
 
2919
  msgstr ""
2920
 
2921
- #: ../app/importers/BPMediaAlbumimporter.php:155
2922
- msgid ""
2923
- "However, a lot of unnecessary files and a database table are still eating up "
2924
- "your resources. If everything seems fine, you can clean this data up."
2925
  msgstr ""
2926
 
2927
- #: ../app/importers/BPMediaAlbumimporter.php:158
2928
- msgid "Clean up Now"
 
2929
  msgstr ""
2930
 
2931
- #: ../app/importers/BPMediaAlbumimporter.php:161
2932
- msgid "Clean up Later"
2933
  msgstr ""
2934
 
2935
- #: ../app/importers/BPMediaAlbumimporter.php:166
2936
- msgid "Why don't you try adding some instagram like effects to your images?"
2937
  msgstr ""
2938
 
2939
- #: ../app/importers/BPMediaAlbumimporter.php:173
2940
- msgid ""
2941
- "BuddyPress Media Instagram adds Instagram like filters to images uploaded "
2942
- "with BuddyPress Media."
2943
  msgstr ""
2944
 
2945
- #: ../app/importers/BPMediaAlbumimporter.php:174
2946
- msgid "Important"
2947
  msgstr ""
2948
 
2949
- #: ../app/importers/BPMediaAlbumimporter.php:174
2950
  msgid ""
2951
- "You need to have ImageMagick installed on your server for this addon to work."
 
2952
  msgstr ""
2953
 
2954
- #: ../app/importers/BPMediaAlbumimporter.php:184
2955
  msgid ""
2956
- "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you "
2957
- "want an importer for?"
2958
- msgstr ""
2959
-
2960
- #: ../app/importers/BPMediaAlbumimporter.php:185
2961
- #, php-format
2962
- msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
2963
- msgstr ""
2964
-
2965
- #: ../app/importers/RTMediaMediaSizeImporter.php:25
2966
- msgid "Media Size Import"
2967
- msgstr ""
2968
-
2969
- #: ../app/importers/RTMediaActivityUpgrade.php:20
2970
- msgid "Media activity upgrade"
2971
- msgstr ""
2972
-
2973
- #: ../app/importers/RTMediaMigration.php:64
2974
- msgid "Please Migrate your Database"
2975
- msgstr ""
2976
-
2977
- #: ../app/importers/RTMediaMigration.php:64
2978
- msgid "Click Here"
2979
  msgstr ""
2980
 
2981
- #: ../app/importers/RTMediaMigration.php:375
2982
  msgid ""
2983
- "Please Backup your <strong>DATABASE</strong> and <strong>UPLOAD</strong> "
2984
- "folder before Migration."
2985
- msgstr ""
2986
-
2987
- #: ../app/importers/RTMediaMigration.php:383
2988
- msgid "rtMedia Migration"
2989
- msgstr ""
2990
-
2991
- #: ../app/importers/RTMediaMigration.php:385
2992
- msgid "It will migrate following things"
2993
- msgstr ""
2994
-
2995
- #: ../app/importers/RTMediaMigration.php:453
2996
- msgid "Error During Migration, Please Refresh Page then try again"
2997
- msgstr ""
2998
-
2999
- #: ../app/importers/RTMediaMigration.php:473
3000
- msgid "Start"
3001
  msgstr ""
3002
 
3003
- #: ../app/importers/RTMediaMigration.php:1024
3004
- msgid " day"
3005
- msgstr ""
3006
-
3007
- #: ../app/importers/RTMediaMigration.php:1028
3008
- msgid " hour"
3009
- msgstr ""
3010
-
3011
- #: ../app/importers/RTMediaMigration.php:1032
3012
- msgid " minute"
3013
- msgstr ""
3014
-
3015
- #: ../app/importers/RTMediaMigration.php:1036
3016
- msgid " second"
3017
  msgstr ""
3018
 
3019
- #: ../app/importers/RTMediaMigration.php:1042
3020
- msgid "No time remaining."
3021
- msgstr ""
 
1
+ # Copyright (C) 2015 rtCamp
2
+ # This file is distributed under the same license as the rtMedia for WordPress, BuddyPress and bbPress package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 3.8.11\n"
6
+ "Report-Msgid-Bugs-To: http://community.rtcamp.com/c/rtmedia/\n"
7
+ "POT-Creation-Date: 2015-07-29 12:52: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"
11
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: rtMedia <rtmedia@rtcamp.com>\n"
13
+ "Language-Team: rtMedia <rtmedia@rtcamp.com>\n"
14
+ "X-Generator: grunt-wp-i18n 0.5.2\n"
15
+ "X-Poedit-KeywordsList: "
16
+ "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
17
+ "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
18
+ "Language: en\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Poedit-Country: United States\n"
21
+ "X-Poedit-SourceCharset: UTF-8\n"
22
+ "X-Poedit-Basepath: ../\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-Bookmarks: \n"
25
+ "X-Textdomain-Support: yes\n"
26
 
27
+ #: app/admin/RTMediaAdmin.php:125
28
+ msgid "View &#8220;%s&#8221;"
29
  msgstr ""
30
 
31
+ #: app/admin/RTMediaAdmin.php:125
32
+ msgid "View"
 
 
33
  msgstr ""
34
 
35
+ #: app/admin/RTMediaAdmin.php:367
36
+ msgid " You must"
 
 
37
  msgstr ""
38
 
39
+ #: app/admin/RTMediaAdmin.php:367
40
+ msgid "update permalink structure"
 
41
  msgstr ""
42
 
43
+ #: app/admin/RTMediaAdmin.php:367
44
+ msgid "to something other than the default for it to work."
45
  msgstr ""
46
 
47
+ #: app/admin/RTMediaAdmin.php:393
48
+ msgid "rtMedia:"
49
  msgstr ""
50
 
51
+ #: app/admin/RTMediaAdmin.php:393
52
+ msgid "Please update all premium add-ons that you have purchased from rtCamp from"
 
 
53
  msgstr ""
54
 
55
+ #: app/admin/RTMediaAdmin.php:393
56
+ msgid "your account"
 
57
  msgstr ""
58
 
59
+ #: app/admin/RTMediaAdmin.php:393
60
+ msgid "Dismiss"
 
61
  msgstr ""
62
 
63
+ #: app/admin/RTMediaAdmin.php:506
64
+ msgid "rtMedia Pro is released"
65
  msgstr ""
66
 
67
+ #: app/admin/RTMediaAdmin.php:527
68
+ msgid "Media Stats"
69
  msgstr ""
70
 
71
+ #: app/admin/RTMediaAdmin.php:554
72
+ msgid "Usage Stats"
73
  msgstr ""
74
 
75
+ #: app/admin/RTMediaAdmin.php:563
76
+ msgid "Total "
77
  msgstr ""
78
 
79
+ #: app/admin/RTMediaAdmin.php:571
80
+ msgid "With Media"
 
 
81
  msgstr ""
82
 
83
+ #: app/admin/RTMediaAdmin.php:579
84
+ msgid "Comments "
85
  msgstr ""
86
 
87
+ #: app/admin/RTMediaAdmin.php:587 app/main/controllers/media/RTMediaLike.php:19
88
+ msgid "Likes"
89
  msgstr ""
90
 
91
+ #: app/admin/RTMediaAdmin.php:598
92
+ msgid "rtMedia Links:"
 
 
93
  msgstr ""
94
 
95
+ #: app/admin/RTMediaAdmin.php:599
96
+ msgid "Homepage"
97
  msgstr ""
98
 
99
+ #: app/admin/RTMediaAdmin.php:600
100
+ msgid "Free Support"
101
  msgstr ""
102
 
103
+ #: app/admin/RTMediaAdmin.php:601
104
+ msgid "Premium Addons"
105
  msgstr ""
106
 
107
+ #: app/admin/RTMediaAdmin.php:617
108
+ msgid "Right Now in rtMedia"
109
  msgstr ""
110
 
111
+ #: app/admin/RTMediaAdmin.php:671 app/admin/RTMediaAdmin.php:880
112
+ msgid "Regenerate Thumbnail"
 
 
 
 
113
  msgstr ""
114
 
115
+ #: app/admin/RTMediaAdmin.php:712 app/admin/RTMediaAdmin.php:1366
116
+ #: app/admin/RTMediaAdmin.php:1367
117
+ msgid "rtMedia"
118
  msgstr ""
119
 
120
+ #: app/admin/RTMediaAdmin.php:719 app/admin/RTMediaAdmin.php:722
121
+ #: app/admin/RTMediaAdmin.php:868 app/admin/RTMediaAdmin.php:1396
122
+ msgid "Settings"
123
  msgstr ""
124
 
125
+ #: app/admin/RTMediaAdmin.php:730 app/admin/RTMediaAdmin.php:733
126
+ #: app/admin/RTMediaAdmin.php:869 app/admin/RTMediaAdmin.php:1400
127
+ msgid "Addons"
128
  msgstr ""
129
 
130
+ #: app/admin/RTMediaAdmin.php:741 app/admin/RTMediaAdmin.php:744
131
+ #: app/admin/RTMediaAdmin.php:870 app/admin/RTMediaAdmin.php:1412
132
+ #: app/helper/RTMediaSettings.php:207 app/helper/RTMediaSupport.php:51
133
+ #: app/helper/RTMediaSupport.php:52
134
+ msgid "Support"
135
  msgstr ""
136
 
137
+ #: app/admin/RTMediaAdmin.php:752 app/admin/RTMediaAdmin.php:755
138
+ #: app/admin/RTMediaAdmin.php:871 app/admin/RTMediaAdmin.php:1404
139
+ msgid "Themes"
140
  msgstr ""
141
 
142
+ #: app/admin/RTMediaAdmin.php:763 app/admin/RTMediaAdmin.php:766
143
+ #: app/admin/RTMediaAdmin.php:872 app/admin/RTMediaAdmin.php:1408
144
+ msgid "Hire Us"
145
  msgstr ""
146
 
147
+ #: app/admin/RTMediaAdmin.php:775 app/admin/RTMediaAdmin.php:778
148
+ #: app/admin/RTMediaAdmin.php:874 app/admin/RTMediaAdmin.php:1420
149
+ msgid "Licenses"
150
  msgstr ""
151
 
152
+ #: app/admin/RTMediaAdmin.php:829
153
+ msgid "ON"
154
  msgstr ""
155
 
156
+ #: app/admin/RTMediaAdmin.php:830
157
+ msgid "OFF"
158
  msgstr ""
159
 
160
+ #: app/admin/RTMediaAdmin.php:836
161
+ msgid "Please do not refresh this page."
162
  msgstr ""
163
 
164
+ #: app/admin/RTMediaAdmin.php:837
165
+ msgid ""
166
+ "Something went wrong. Please <a href "
167
+ "onclick=\"location.reload();\">refresh</a> page."
168
  msgstr ""
169
 
170
+ #: app/admin/RTMediaAdmin.php:838
171
+ msgid "This will subscribe you to the free plan."
172
  msgstr ""
173
 
174
+ #: app/admin/RTMediaAdmin.php:839
175
+ msgid "Are you sure you want to disable the encoding service?"
176
  msgstr ""
177
 
178
+ #: app/admin/RTMediaAdmin.php:840
179
+ msgid "Are you sure you want to enable the encoding service?"
180
  msgstr ""
181
 
182
+ #: app/admin/RTMediaAdmin.php:880
183
+ msgid "Regen. Thumbnail "
184
  msgstr ""
185
 
186
+ #: app/admin/RTMediaAdmin.php:898 app/admin/RTMediaAdmin.php:1877
187
+ msgid "Regenerate Video Thumbnails"
188
  msgstr ""
189
 
190
+ #: app/admin/RTMediaAdmin.php:916
191
+ msgid "Regenerate Pending Thumbnails"
 
 
192
  msgstr ""
193
 
194
+ #: app/admin/RTMediaAdmin.php:926
195
+ msgid "Total Videos"
 
 
 
 
196
  msgstr ""
197
 
198
+ #: app/admin/RTMediaAdmin.php:929
199
+ msgid "Sent of regenerate thumbails"
 
 
 
200
  msgstr ""
201
 
202
+ #: app/admin/RTMediaAdmin.php:931
203
+ msgid "Fail to regenerate thumbails"
 
 
 
204
  msgstr ""
205
 
206
+ #: app/admin/RTMediaAdmin.php:970
207
+ msgid "Regenerate Video Thumbnails Done"
208
  msgstr ""
209
 
210
+ #: app/admin/RTMediaAdmin.php:1014
211
+ msgid ""
212
+ "You have %s videos without thumbnails. Click <a href='%s'> here </a> to "
213
+ "generate thumbnails. <a href='#' "
214
+ "onclick='rtmedia_hide_video_thumb_notice()' style='float:right'>Hide</a>"
215
  msgstr ""
216
 
217
+ #: app/admin/RTMediaAdmin.php:1092
218
+ msgid "not a video ..."
219
  msgstr ""
220
 
221
+ #: app/admin/RTMediaAdmin.php:1257
222
+ msgid "Empowering The Web With WordPress"
223
  msgstr ""
224
 
225
+ #: app/admin/RTMediaAdmin.php:1277
226
+ msgid "Settings saved successfully!"
227
  msgstr ""
228
 
229
+ #: app/admin/RTMediaAdmin.php:1280 app/admin/RTMediaAdmin.php:1303
230
+ msgid "Save Settings"
231
  msgstr ""
232
 
233
+ #: app/admin/RTMediaAdmin.php:1502 app/admin/RTMediaAdmin.php:1503
234
+ msgid "Display"
235
  msgstr ""
236
 
237
+ #: app/admin/RTMediaAdmin.php:1511
238
+ msgid "rtMedia BuddyPress"
239
  msgstr ""
240
 
241
+ #: app/admin/RTMediaAdmin.php:1512
242
+ msgid "BuddyPress"
243
  msgstr ""
244
 
245
+ #: app/admin/RTMediaAdmin.php:1520
246
+ msgid "rtMedia Types"
247
  msgstr ""
248
 
249
+ #: app/admin/RTMediaAdmin.php:1521
250
+ msgid "Types"
251
  msgstr ""
252
 
253
+ #: app/admin/RTMediaAdmin.php:1528
254
+ msgid "rtMedia Sizes"
255
  msgstr ""
256
 
257
+ #: app/admin/RTMediaAdmin.php:1529
258
+ msgid "Media Sizes"
259
  msgstr ""
260
 
261
+ #: app/admin/RTMediaAdmin.php:1536
262
+ msgid "rtMedia Privacy"
263
  msgstr ""
264
 
265
+ #: app/admin/RTMediaAdmin.php:1537
266
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:284
267
+ msgid "Privacy"
268
  msgstr ""
269
 
270
+ #: app/admin/RTMediaAdmin.php:1543
271
+ msgid "rtMedia Custom CSS"
272
  msgstr ""
273
 
274
+ #: app/admin/RTMediaAdmin.php:1544
275
+ msgid "Custom CSS"
276
  msgstr ""
277
 
278
+ #: app/admin/RTMediaAdmin.php:1553 app/admin/RTMediaAdmin.php:1554
279
+ msgid "Other Settings"
280
  msgstr ""
281
 
282
+ #: app/admin/RTMediaAdmin.php:1649
283
+ msgid "I use @buddypressmedia http://rt.cx/rtmedia on %s"
284
  msgstr ""
285
 
286
+ #: app/admin/RTMediaAdmin.php:1651
287
+ msgid "Post to Twitter Now"
288
  msgstr ""
289
 
290
+ #: app/admin/RTMediaAdmin.php:1651
291
+ msgid "Post to Twitter"
292
  msgstr ""
293
 
294
+ #: app/admin/RTMediaAdmin.php:1652
295
+ msgid "Share on Facebook Now"
296
  msgstr ""
297
 
298
+ #: app/admin/RTMediaAdmin.php:1652
299
+ msgid "Share on Facebook"
300
  msgstr ""
301
 
302
+ #: app/admin/RTMediaAdmin.php:1653
303
+ msgid "Rate rtMedia on Wordpress.org"
304
  msgstr ""
305
 
306
+ #: app/admin/RTMediaAdmin.php:1653
307
+ msgid "Rate on Wordpress.org"
 
 
 
 
308
  msgstr ""
309
 
310
+ #: app/admin/RTMediaAdmin.php:1654
311
+ msgid "Subscribe to our Feeds"
312
  msgstr ""
313
 
314
+ #: app/admin/RTMediaAdmin.php:1657
315
+ msgid "Spread the Word"
316
  msgstr ""
317
 
318
+ #: app/admin/RTMediaAdmin.php:1663 app/admin/RTMediaAdmin.php:1670
319
+ msgid "Subscribe"
320
  msgstr ""
321
 
322
+ #: app/admin/RTMediaAdmin.php:1692
323
+ msgid "Thank you for your time."
324
  msgstr ""
325
 
326
+ #: app/admin/RTMediaAdmin.php:1704
327
+ msgid "Premium Add-ons"
328
  msgstr ""
329
 
330
+ #: app/admin/RTMediaAdmin.php:1720
331
+ msgid ""
332
+ "You have images enabled on rtMedia but your network allowed filetypes do "
333
+ "not permit uploading of %s. Click <a href=\"%s\">here</a> to change your "
334
+ "settings manually."
335
  msgstr ""
336
 
337
+ #: app/admin/RTMediaAdmin.php:1721 app/admin/RTMediaAdmin.php:1732
338
+ #: app/admin/RTMediaAdmin.php:1741
339
+ msgid "Recommended"
340
  msgstr ""
341
 
342
+ #: app/admin/RTMediaAdmin.php:1721 app/admin/RTMediaAdmin.php:1732
343
+ #: app/admin/RTMediaAdmin.php:1741
344
+ msgid "Update Network Settings Automatically"
345
  msgstr ""
346
 
347
+ #: app/admin/RTMediaAdmin.php:1731
348
+ msgid ""
349
+ "You have video enabled on BuddyPress Media but your network allowed "
350
+ "filetypes do not permit uploading of mp4. Click <a href=\"%s\">here</a> to "
351
+ "change your settings manually."
352
  msgstr ""
353
 
354
+ #: app/admin/RTMediaAdmin.php:1740
355
+ msgid ""
356
+ "You have audio enabled on BuddyPress Media but your network allowed "
357
+ "filetypes do not permit uploading of mp3. Click <a href=\"%s\">here</a> to "
358
+ "change your settings manually."
359
  msgstr ""
360
 
361
+ #: app/admin/RTMediaAdmin.php:1755
362
+ msgid "Network settings updated successfully."
363
  msgstr ""
364
 
365
+ #: app/admin/RTMediaAdmin.php:1861
366
+ msgid "Video is sent to generate thumbnails."
367
  msgstr ""
368
 
369
+ #: app/admin/RTMediaAdmin.php:1863
370
+ msgid "Video cannot be sent to generate thumbnails."
371
  msgstr ""
372
 
373
+ #: app/admin/RTMediaAdmin.php:1942
374
+ msgid ""
375
+ "Please update rtMedia template files if you have overridden the default "
376
+ "rtMedia templates in your theme. If not, you can ignore and hide this "
377
+ "notice."
378
  msgstr ""
379
 
380
+ #: app/admin/RTMediaAdmin.php:1942
381
+ #: app/importers/RTMediaMediaSizeImporter.php:66
382
+ #: app/importers/RTMediaMigration.php:64
383
+ msgid "Hide"
384
  msgstr ""
385
 
386
+ #: app/admin/RTMediaFormHandler.php:65 app/admin/RTMediaFormHandler.php:107
387
+ #: app/admin/RTMediaFormHandler.php:202 app/admin/RTMediaFormHandler.php:237
388
+ msgid "Please provide a \"value\" in the argument."
389
  msgstr ""
390
 
391
+ #: app/admin/RTMediaFormHandler.php:150
392
+ msgid "Need to specify atleast two radios, else use a checkbox instead"
393
  msgstr ""
394
 
395
+ #: app/admin/RTMediaFormHandler.php:285 templates/media/album-gallery.php:56
396
+ #: templates/media/media-gallery.php:65
397
+ msgid "Load More"
398
  msgstr ""
399
 
400
+ #: app/admin/RTMediaFormHandler.php:286
401
+ msgid "Pagination"
402
  msgstr ""
403
 
404
+ #: app/admin/RTMediaFormHandler.php:298
405
+ msgid "Allow user to comment on uploaded media"
406
  msgstr ""
407
 
408
+ #: app/admin/RTMediaFormHandler.php:303
409
  msgid ""
410
+ "This will display the comment form and comment listing on single media "
411
+ "pages as well as inside lightbox (if lightbox is enabled)."
412
  msgstr ""
413
 
414
+ #: app/admin/RTMediaFormHandler.php:308
415
+ msgid "Use lightbox to display media"
 
416
  msgstr ""
417
 
418
+ #: app/admin/RTMediaFormHandler.php:313
419
+ msgid "View single media in facebook style lightbox."
 
 
420
  msgstr ""
421
 
422
+ #: app/admin/RTMediaFormHandler.php:318
423
+ msgid "Number of media per page"
 
424
  msgstr ""
425
 
426
+ #: app/admin/RTMediaFormHandler.php:324
427
+ msgid "Number of media items you want to show per page on front end."
428
  msgstr ""
429
 
430
+ #: app/admin/RTMediaFormHandler.php:330
431
+ msgid "Media display pagination option"
432
  msgstr ""
433
 
434
+ #: app/admin/RTMediaFormHandler.php:336
435
+ msgid "Choose whether you want the load more button or pagination buttons."
436
  msgstr ""
437
 
438
+ #: app/admin/RTMediaFormHandler.php:341
439
+ msgid "Enable"
440
  msgstr ""
441
 
442
+ #: app/admin/RTMediaFormHandler.php:341
443
+ msgid "Cascading grid layout"
444
  msgstr ""
445
 
446
+ #: app/admin/RTMediaFormHandler.php:346
447
+ msgid "If you enable masonry view, it is advisable to"
448
  msgstr ""
449
 
450
+ #: app/admin/RTMediaFormHandler.php:346
451
+ msgid "for masonry view."
452
  msgstr ""
453
 
454
+ #: app/admin/RTMediaFormHandler.php:350
455
+ msgid "You might need to"
456
  msgstr ""
457
 
458
+ #: app/admin/RTMediaFormHandler.php:350
459
+ msgid "change thumbnail size"
460
  msgstr ""
461
 
462
+ #: app/admin/RTMediaFormHandler.php:350
463
+ msgid "and uncheck the crop box for thumbnails."
464
  msgstr ""
465
 
466
+ #: app/admin/RTMediaFormHandler.php:350
467
+ msgid ""
468
+ "To set gallery for fixed width, set image height to 0 and width as per your "
469
+ "requirement and vice-versa."
470
  msgstr ""
471
 
472
+ #: app/admin/RTMediaFormHandler.php:353
473
+ msgid "Enable Direct Upload"
474
  msgstr ""
475
 
476
+ #: app/admin/RTMediaFormHandler.php:358
477
+ msgid "Uploading media directly as soon as it gets selected."
478
  msgstr ""
479
 
480
+ #: app/admin/RTMediaFormHandler.php:384
481
+ msgid "Single Media View"
482
  msgstr ""
483
 
484
+ #: app/admin/RTMediaFormHandler.php:385
485
+ msgid "List Media View"
486
  msgstr ""
487
 
488
+ #: app/admin/RTMediaFormHandler.php:386
489
+ msgid "Masonry View"
490
  msgstr ""
491
 
492
+ #: app/admin/RTMediaFormHandler.php:387
493
+ msgid "Direct Upload"
494
  msgstr ""
495
 
496
+ #: app/admin/RTMediaFormHandler.php:405
497
+ msgid "Allow usage data tracking"
498
  msgstr ""
499
 
500
+ #: app/admin/RTMediaFormHandler.php:410
501
+ msgid ""
502
+ "To make rtMedia better compatible with your sites, you can help the rtMedia "
503
+ "team learn what themes and plugins you are using. No private information "
504
+ "about your setup will be sent during tracking."
505
  msgstr ""
506
 
507
+ #: app/admin/RTMediaFormHandler.php:414
508
+ msgid "Admin bar menu integration"
509
  msgstr ""
510
 
511
+ #: app/admin/RTMediaFormHandler.php:419
512
+ msgid ""
513
+ "Add rtMedia menu to WordPress admin bar for easy access to settings and "
514
+ "moderation page (if enabled)."
515
  msgstr ""
516
 
517
+ #: app/admin/RTMediaFormHandler.php:424
518
+ msgid "Add a link to rtMedia in footer"
519
  msgstr ""
520
 
521
+ #: app/admin/RTMediaFormHandler.php:429
522
+ msgid "Help us promote rtMedia."
523
  msgstr ""
524
 
525
+ #: app/admin/RTMediaFormHandler.php:434
526
+ msgid "Also add my affiliate-id to rtMedia footer link"
527
  msgstr ""
528
 
529
+ #: app/admin/RTMediaFormHandler.php:439
530
+ msgid ""
531
+ "Add your affiliate-id along with footer link and get rewarded by our "
532
+ "affiliation program."
533
  msgstr ""
534
 
535
+ #: app/admin/RTMediaFormHandler.php:443
536
+ msgid "Signup for"
 
537
  msgstr ""
538
 
539
+ #: app/admin/RTMediaFormHandler.php:443
540
+ msgid "affiliate program"
541
  msgstr ""
542
 
543
+ #: app/admin/RTMediaFormHandler.php:443 app/admin/RTMediaFormHandler.php:454
544
+ #: app/helper/RTMediaSupport.php:363
545
+ msgid "here"
546
  msgstr ""
547
 
548
+ #: app/admin/RTMediaFormHandler.php:446
549
+ msgid "Enable JSON API"
550
  msgstr ""
551
 
552
+ #: app/admin/RTMediaFormHandler.php:451
553
+ msgid ""
554
+ "This will allow handling API requests for rtMedia sent through any mobile "
555
+ "app."
556
  msgstr ""
557
 
558
+ #: app/admin/RTMediaFormHandler.php:454
559
+ msgid "You can refer to the API document from"
560
  msgstr ""
561
 
562
+ #: app/admin/RTMediaFormHandler.php:477
563
+ msgid "Admin Settings"
564
  msgstr ""
565
 
566
+ #: app/admin/RTMediaFormHandler.php:478
567
+ msgid "API Settings"
568
  msgstr ""
569
 
570
+ #: app/admin/RTMediaFormHandler.php:479
571
+ msgid "Miscellaneous"
572
  msgstr ""
573
 
574
+ #: app/admin/RTMediaFormHandler.php:480
575
+ msgid "Footer Link"
576
  msgstr ""
577
 
578
+ #: app/admin/RTMediaFormHandler.php:563
579
+ msgid "Media Types Settings"
 
 
 
580
  msgstr ""
581
 
582
+ #: app/admin/RTMediaFormHandler.php:571 app/helper/RTMediaSettings.php:323
583
+ msgid "Media Type"
584
  msgstr ""
585
 
586
+ #: app/admin/RTMediaFormHandler.php:576
587
+ msgid "Allow Upload"
 
 
588
  msgstr ""
589
 
590
+ #: app/admin/RTMediaFormHandler.php:578
591
+ msgid "Allows you to upload a particular media type on your post."
592
  msgstr ""
593
 
594
+ #: app/admin/RTMediaFormHandler.php:586
595
+ msgid "Set Featured"
596
  msgstr ""
597
 
598
+ #: app/admin/RTMediaFormHandler.php:588
599
+ msgid "Place a specific media as a featured content on the post."
600
  msgstr ""
601
 
602
+ #: app/admin/RTMediaFormHandler.php:630
603
+ msgid "File Extensions"
604
  msgstr ""
605
 
606
+ #: app/admin/RTMediaFormHandler.php:718
607
+ msgid "Media Size Settings"
608
  msgstr ""
609
 
610
+ #: app/admin/RTMediaFormHandler.php:723
611
+ msgid "Category"
612
  msgstr ""
613
 
614
+ #: app/admin/RTMediaFormHandler.php:724
615
+ msgid "Entity"
616
  msgstr ""
617
 
618
+ #: app/admin/RTMediaFormHandler.php:725
619
+ msgid "Width"
620
  msgstr ""
621
 
622
+ #: app/admin/RTMediaFormHandler.php:726
623
+ msgid "Height"
 
 
 
624
  msgstr ""
625
 
626
+ #: app/admin/RTMediaFormHandler.php:727
627
+ msgid "Crop"
628
  msgstr ""
629
 
630
+ #: app/admin/RTMediaFormHandler.php:780
631
+ msgid "Number of thumbnails to generate on video upload"
632
  msgstr ""
633
 
634
+ #: app/admin/RTMediaFormHandler.php:786
 
635
  msgid ""
636
+ " If you choose more than 1 thumbnail, your users will be able to change the "
637
+ "thumbnail by going to video 'edit' section. Maximum value is 10."
638
  msgstr ""
639
 
640
+ #: app/admin/RTMediaFormHandler.php:794
641
+ msgid "Encoding Settings"
642
  msgstr ""
643
 
644
+ #: app/admin/RTMediaFormHandler.php:801
645
+ msgid "JPEG/JPG image quality (1-100)"
 
 
646
  msgstr ""
647
 
648
+ #: app/admin/RTMediaFormHandler.php:807
649
+ msgid "Enter JPEG/JPG Image Quality. Minimum value is 1. 100 is original quality."
650
  msgstr ""
651
 
652
+ #: app/admin/RTMediaFormHandler.php:815
653
+ msgid "Image Quality"
 
654
  msgstr ""
655
 
656
+ #: app/admin/RTMediaFormHandler.php:837
657
+ msgid "Custom CSS settings"
658
  msgstr ""
659
 
660
+ #: app/admin/RTMediaFormHandler.php:856
661
+ msgid "rtMedia default styles"
 
 
662
  msgstr ""
663
 
664
+ #: app/admin/RTMediaFormHandler.php:862
665
+ msgid ""
666
+ "Load default rtMedia styles. You need to write your own style for rtMedia "
667
+ "if you disable it."
668
  msgstr ""
669
 
670
+ #: app/admin/RTMediaFormHandler.php:867
671
+ msgid "Paste your CSS code"
 
672
  msgstr ""
673
 
674
+ #: app/admin/RTMediaFormHandler.php:873
675
+ msgid "Custom rtMedia CSS container"
 
676
  msgstr ""
677
 
678
+ #: app/admin/RTMediaFormHandler.php:896
679
+ msgid "Enable privacy"
 
680
  msgstr ""
681
 
682
+ #: app/admin/RTMediaFormHandler.php:902
683
+ msgid "Enable privacy in rtMedia"
 
684
  msgstr ""
685
 
686
+ #: app/admin/RTMediaFormHandler.php:907
687
+ msgid "Default privacy"
 
688
  msgstr ""
689
 
690
+ #: app/admin/RTMediaFormHandler.php:913
691
+ msgid "Set default privacy for media"
 
 
692
  msgstr ""
693
 
694
+ #: app/admin/RTMediaFormHandler.php:919
695
+ msgid "Allow users to set privacy for their content"
696
  msgstr ""
697
 
698
+ #: app/admin/RTMediaFormHandler.php:924
699
+ msgid ""
700
+ "If you choose this, users will be able to change privacy of their own "
701
+ "uploads."
702
  msgstr ""
703
 
704
+ #: app/admin/RTMediaFormHandler.php:928
705
+ msgid "For group uploads, BuddyPress groups privacy is used."
706
  msgstr ""
707
 
708
+ #: app/admin/RTMediaFormHandler.php:970
709
+ msgid "Enable media in profile"
710
  msgstr ""
711
 
712
+ #: app/admin/RTMediaFormHandler.php:975
713
+ msgid "Enable Media on BuddyPress Profile"
714
  msgstr ""
715
 
716
+ #: app/admin/RTMediaFormHandler.php:980
717
+ msgid "Enable media in group"
718
  msgstr ""
719
 
720
+ #: app/admin/RTMediaFormHandler.php:985
721
+ msgid "Enable Media on BuddyPress Groups"
 
722
  msgstr ""
723
 
724
+ #: app/admin/RTMediaFormHandler.php:990
725
+ msgid "Allow upload from activity stream"
726
+ msgstr ""
 
 
 
727
 
728
+ #: app/admin/RTMediaFormHandler.php:995
729
+ msgid "Allow upload using status update box present on activity stream page"
730
  msgstr ""
731
 
732
+ #: app/admin/RTMediaFormHandler.php:1001
733
+ msgid "Number of media items to show in activity stream"
 
734
  msgstr ""
735
 
736
+ #: app/admin/RTMediaFormHandler.php:1006
737
+ msgid ""
738
+ "With bulk uploads activity, the stream may get flooded. You can control the "
739
+ "maximum number of media items or files per activity. This limit will not "
740
+ "affect the actual number of uploads. This is only for display. <em>0</em> "
741
+ "means unlimited."
742
  msgstr ""
743
 
744
+ #: app/admin/RTMediaFormHandler.php:1013
745
+ msgid "Organize media into albums"
746
  msgstr ""
747
 
748
+ #: app/admin/RTMediaFormHandler.php:1019
749
+ msgid ""
750
+ "This will add 'album' tab to BuddyPress profile and group depending on the "
751
+ "^above^ settings."
752
  msgstr ""
753
 
754
+ #: app/helper/RTMediaAddon.php:79 app/helper/RTMediaAddon.php:80
755
+ msgid "Plugins"
756
  msgstr ""
757
 
758
+ #: app/helper/RTMediaAddon.php:87 app/helper/RTMediaAddon.php:88
759
+ msgid "Audio/Video Encoding"
760
  msgstr ""
761
 
762
+ #: app/helper/RTMediaAddon.php:111
763
+ msgid "Moderation"
764
  msgstr ""
765
 
766
+ #: app/helper/RTMediaAddon.php:114
767
+ msgid ""
768
+ "Report media if they find offensive. Set number of reports to automatically "
769
+ "take down media from site."
770
  msgstr ""
771
 
772
+ #: app/helper/RTMediaAddon.php:122
773
+ msgid "Custom Attributes"
774
  msgstr ""
775
 
776
+ #: app/helper/RTMediaAddon.php:125
777
+ msgid ""
778
+ "Categories media based on attributes. Site owner need to create attributes. "
779
+ "When user upload a media, can select in which attribute that media can add."
780
  msgstr ""
781
 
782
+ #: app/helper/RTMediaAddon.php:133
783
+ msgid "Docs and Other files"
784
  msgstr ""
785
 
786
+ #: app/helper/RTMediaAddon.php:136
787
+ msgid ""
788
+ "Allow users to upload documents and other file type using rtMedia upload "
789
+ "box. This addon support all the file extensions which WordPress allows."
790
  msgstr ""
791
 
792
+ #: app/helper/RTMediaAddon.php:144
793
+ msgid "Default Albums"
 
794
  msgstr ""
795
 
796
+ #: app/helper/RTMediaAddon.php:147
797
+ msgid ""
798
+ "This plugin allows the creation of multiple default albums for rtMedia "
799
+ "uploads. One of these albums can be set as the default global album."
800
  msgstr ""
801
 
802
+ #: app/helper/RTMediaAddon.php:155
803
+ msgid "Podcast (RSS and Atom feeds)"
 
804
  msgstr ""
805
 
806
+ #: app/helper/RTMediaAddon.php:158
807
+ msgid ""
808
+ "Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting "
809
+ "software."
810
  msgstr ""
811
 
812
+ #: app/helper/RTMediaAddon.php:166
813
+ msgid "Playlists"
814
  msgstr ""
815
 
816
+ #: app/helper/RTMediaAddon.php:169
817
+ msgid ""
818
+ "Audio can be grouped into playlists. Once the user upload any audio file, "
819
+ "can create a playlist or use existing one to manage audio files."
820
  msgstr ""
821
 
822
+ #: app/helper/RTMediaAddon.php:177
823
+ msgid "Favorites"
 
824
  msgstr ""
825
 
826
+ #: app/helper/RTMediaAddon.php:180
827
+ msgid ""
828
+ "Users can create their list of favorite media in which they can add media "
829
+ "previously uploaded by any user."
830
  msgstr ""
831
 
832
+ #: app/helper/RTMediaAddon.php:188
833
+ msgid "Restrictions"
 
 
 
834
  msgstr ""
835
 
836
+ #: app/helper/RTMediaAddon.php:191
837
+ msgid ""
838
+ "Site admin can set an upload limit on the basis of time span, file size "
839
+ "(MB) and number of files user can upload."
840
  msgstr ""
841
 
842
+ #: app/helper/RTMediaAddon.php:199
843
+ msgid "bbPress Attachments"
844
  msgstr ""
845
 
846
+ #: app/helper/RTMediaAddon.php:202
847
+ msgid "Attach media files to bbPress forum topics and replies."
 
848
  msgstr ""
849
 
850
+ #: app/helper/RTMediaAddon.php:210
851
+ msgid "WordPress Sitewide Gallery"
 
852
  msgstr ""
853
 
854
+ #: app/helper/RTMediaAddon.php:213
855
+ msgid ""
856
+ "Site admin can create and upload media into WordPress album. Create album "
857
+ "without being dependent on BuddyPress."
858
  msgstr ""
859
 
860
+ #: app/helper/RTMediaAddon.php:221
861
+ msgid "WordPress Comment Attachments"
862
  msgstr ""
863
 
864
+ #: app/helper/RTMediaAddon.php:224
865
+ msgid ""
866
+ "Allow users to upload a media file in WordPress comment attachment box. It "
867
+ "will display a thumbnail of attached file."
868
  msgstr ""
869
 
870
+ #: app/helper/RTMediaAddon.php:232
871
+ msgid "Social Sharing"
872
  msgstr ""
873
 
874
+ #: app/helper/RTMediaAddon.php:235
875
+ msgid ""
876
+ "Share uploaded media on social network sites like Facebook, twitter, "
877
+ "linkedin, Google +. This addon integrate with rtSocial plugin."
878
  msgstr ""
879
 
880
+ #: app/helper/RTMediaAddon.php:243
881
+ msgid "Sidebar Widgets"
882
  msgstr ""
883
 
884
+ #: app/helper/RTMediaAddon.php:246
885
+ msgid ""
886
+ "This addon provide widgets to upload media and display gallery for rtMedia "
887
+ "plugin."
888
  msgstr ""
889
 
890
+ #: app/helper/RTMediaAddon.php:254
891
+ msgid "5 Star Ratings"
892
  msgstr ""
893
 
894
+ #: app/helper/RTMediaAddon.php:257
895
+ msgid ""
896
+ "Display 5 star rating for all the uploaded media. User can rate the media "
897
+ "files from 1 to 5 star."
898
  msgstr ""
899
 
900
+ #: app/helper/RTMediaAddon.php:265
901
+ msgid "Edit Mp3 Info (ID3 Tags)"
 
902
  msgstr ""
903
 
904
+ #: app/helper/RTMediaAddon.php:268
905
+ msgid "Allow user to edit MP3 FIle Audio tags (ID 3 tags)."
906
  msgstr ""
907
 
908
+ #: app/helper/RTMediaAddon.php:276
909
+ msgid "Media Sorting"
 
910
  msgstr ""
911
 
912
+ #: app/helper/RTMediaAddon.php:279
913
+ msgid ""
914
+ "Sort uploaded media based on file size, ascending/descending title, upload "
915
+ "date of media."
916
  msgstr ""
917
 
918
+ #: app/helper/RTMediaAddon.php:287
919
+ msgid "Bulk Edit"
920
  msgstr ""
921
 
922
+ #: app/helper/RTMediaAddon.php:290
923
+ msgid ""
924
+ "Bulk edit option will allow user to quickly select media files and do "
925
+ "required actions like move files from one album to another, change "
926
+ "attributes, change privacy, delete files."
927
  msgstr ""
928
 
929
+ #: app/helper/RTMediaAddon.php:298
930
+ msgid "BuddyPress Profile Picture"
931
  msgstr ""
932
 
933
+ #: app/helper/RTMediaAddon.php:301
934
+ msgid "User can easily set his/her profile picture from media uploaded via rtMedia."
 
 
935
  msgstr ""
936
 
937
+ #: app/helper/RTMediaAddon.php:309
938
+ msgid "Album Cover Art"
939
  msgstr ""
940
 
941
+ #: app/helper/RTMediaAddon.php:312
942
+ msgid "User can easily set any of the image of the album as album cover photo"
943
  msgstr ""
944
 
945
+ #: app/helper/RTMediaAddon.php:320
946
+ msgid "Direct Download Link"
947
  msgstr ""
948
 
949
+ #: app/helper/RTMediaAddon.php:323
950
+ msgid ""
951
+ "User can download media from website. Site owner can restrict which media "
952
+ "type can be allowed to download."
953
  msgstr ""
954
 
955
+ #: app/helper/RTMediaAddon.php:331
956
+ msgid "Upload by URL"
957
  msgstr ""
958
 
959
+ #: app/helper/RTMediaAddon.php:334
960
+ msgid ""
961
+ "Users do not need to download media files from a URL and then upload it "
962
+ "with rtMedia. Just provide the absolute URL for the media and it will "
963
+ "upload on site."
964
  msgstr ""
965
 
966
+ #: app/helper/RTMediaAddon.php:342
967
+ msgid "Media Likes"
968
  msgstr ""
969
 
970
+ #: app/helper/RTMediaAddon.php:345
971
+ msgid ""
972
+ "This add-on let you know who liked the media. User can also see which media "
973
+ "they liked under their profile."
974
  msgstr ""
975
 
976
+ #: app/helper/RTMediaAddon.php:353
977
+ msgid "Activity URL Preview"
978
  msgstr ""
979
 
980
+ #: app/helper/RTMediaAddon.php:356
981
+ msgid ""
982
+ "This addon provides a preview of the URL that is shared in BuddyPress "
983
+ "activity. Just enter the URL you want to share on your site and see a "
984
+ "preview of it before it is shared."
985
  msgstr ""
986
 
987
+ #: app/helper/RTMediaAddon.php:364
988
+ msgid "View Counter"
989
  msgstr ""
990
 
991
+ #: app/helper/RTMediaAddon.php:367
992
+ msgid ""
993
+ "Enable view count for all the uploaded media. Whenever user open that media "
994
+ "file in lightbox or in single media view, that view count will be "
995
+ "calculated and display next to media file."
996
  msgstr ""
997
 
998
+ #: app/helper/RTMediaAddon.php:375
999
+ msgid "Shortcode Generator"
1000
  msgstr ""
1001
 
1002
+ #: app/helper/RTMediaAddon.php:378
1003
+ msgid ""
1004
+ "This add-on will add shortcode generator button in WordPress post and page "
1005
+ "editor for all the rtMedia shortcodes."
1006
  msgstr ""
1007
 
1008
+ #: app/helper/RTMediaAddon.php:386
1009
+ msgid "Album Privacy"
1010
+ msgstr ""
 
 
 
1011
 
1012
+ #: app/helper/RTMediaAddon.php:389
1013
+ msgid ""
1014
+ "Set album privacy when user create an album or change album privacy when "
1015
+ "editing existing albums. The privacy levels are Public, Logged in user, "
1016
+ "Friends and Private."
1017
+ msgstr ""
1018
 
1019
+ #: app/helper/RTMediaAddon.php:397
1020
+ msgid "BuddyPress Group Media Control"
1021
+ msgstr ""
 
 
 
1022
 
1023
+ #: app/helper/RTMediaAddon.php:400
1024
+ msgid "This add-on allows group owner to manage media upload feature group wise."
1025
  msgstr ""
1026
 
1027
+ #: app/helper/RTMediaAddon.php:408
1028
+ msgid "Set Custom Thumbnail for Audio/Video"
1029
  msgstr ""
1030
 
1031
+ #: app/helper/RTMediaAddon.php:411
1032
+ msgid ""
1033
+ "Allow media owner to change the thumbnail of uploaded audio/video files. "
1034
+ "The File Upload box will be provided to change media thumbnail."
1035
  msgstr ""
1036
 
1037
+ #: app/helper/RTMediaAddon.php:419
1038
+ msgid "myCRED"
1039
  msgstr ""
1040
 
1041
+ #: app/helper/RTMediaAddon.php:422
1042
+ msgid ""
1043
+ "This plugin integrates rtMedia and myCRED plugin, users can be can award "
1044
+ "virtual points for various rtMedia activities, like media upload, likes, "
1045
+ "deleted etc."
1046
  msgstr ""
1047
 
1048
+ #: app/helper/RTMediaAddon.php:430
1049
+ msgid "Upload terms"
 
1050
  msgstr ""
1051
 
1052
+ #: app/helper/RTMediaAddon.php:433
1053
+ msgid ""
1054
+ "User must have to check the terms and conditions checkbox before uploading "
1055
+ "the media."
1056
  msgstr ""
1057
 
1058
+ #: app/helper/RTMediaAddon.php:441
1059
+ msgid "CubePoints"
 
1060
  msgstr ""
1061
 
1062
+ #: app/helper/RTMediaAddon.php:444
1063
+ msgid ""
1064
+ "If you are using CubePoints plugin on your website than rtMedia CubePoint "
1065
+ "add-on can be integrate with that plugin to setup point management system "
1066
+ "for rtMedia related activities."
1067
  msgstr ""
1068
 
1069
+ #: app/helper/RTMediaAddon.php:452
1070
+ msgid "Social Sync"
 
1071
  msgstr ""
1072
 
1073
+ #: app/helper/RTMediaAddon.php:455
1074
+ msgid "rtMedia Social Sync allows you to import media from your Facebook account."
1075
  msgstr ""
1076
 
1077
+ #: app/helper/RTMediaAddon.php:463
1078
+ msgid "Photo Watermark"
1079
  msgstr ""
1080
 
1081
+ #: app/helper/RTMediaAddon.php:466
1082
  msgid ""
1083
+ "rtMedia Photo Watermark let you add watermark on your images uploaded using "
1084
+ "rtMedia."
 
1085
  msgstr ""
1086
 
1087
+ #: app/helper/RTMediaAddon.php:474
1088
+ msgid "Photo Tagging"
 
1089
  msgstr ""
1090
 
1091
+ #: app/helper/RTMediaAddon.php:477
1092
+ msgid ""
1093
+ "rtMedia Photo Tagging enable users to tag their friends on photos uploaded "
1094
+ "using rtMedia."
 
1095
  msgstr ""
1096
 
1097
+ #: app/helper/RTMediaAddon.php:485
1098
+ msgid "Instagram"
1099
  msgstr ""
1100
 
1101
+ #: app/helper/RTMediaAddon.php:488
1102
+ msgid ""
1103
+ "rtMedia Instagram adds Instagram like filters to images uploaded with "
1104
+ "rtMedia."
1105
  msgstr ""
1106
 
1107
+ #: app/helper/RTMediaAddon.php:496
1108
+ msgid "Kaltura Add-on"
1109
  msgstr ""
1110
 
1111
+ #: app/helper/RTMediaAddon.php:499
1112
  msgid ""
1113
+ "Add support for more video formats using Kaltura video solution. It works "
1114
+ "with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
 
 
 
 
1115
  msgstr ""
1116
 
1117
+ #: app/helper/RTMediaAddon.php:507
1118
+ msgid "FFMPEG Add-on"
1119
  msgstr ""
1120
 
1121
+ #: app/helper/RTMediaAddon.php:510
1122
+ msgid ""
1123
+ "Add supports for more audio & video formats using open-source media-node. "
1124
+ "Media node comes with automated setup script for Ubuntu/Debian."
1125
  msgstr ""
1126
 
1127
+ #: app/helper/RTMediaAddon.php:518
1128
+ msgid "Membership Add-on"
1129
  msgstr ""
1130
 
1131
+ #: app/helper/RTMediaAddon.php:521
1132
+ msgid ""
1133
+ "rtMedia Membership add-on provides membership functionality in your site in "
1134
+ "terms of media upload."
1135
  msgstr ""
1136
 
1137
+ #: app/helper/RTMediaAddon.php:561
1138
+ msgid "Coming Soon !!"
1139
  msgstr ""
1140
 
1141
+ #: app/helper/RTMediaAddon.php:594
1142
+ msgid "Purchased"
1143
  msgstr ""
1144
 
1145
+ #: app/helper/RTMediaAddon.php:596 app/helper/RTMediaThemes.php:145
1146
+ #: app/helper/RTMediaThemes.php:173 app/helper/RTMediaThemes.php:260
1147
+ #: app/helper/RTMediaThemes.php:288 app/importers/BPMediaAlbumimporter.php:178
1148
+ msgid "Buy Now"
1149
  msgstr ""
1150
 
1151
+ #: app/helper/RTMediaAddon.php:625 app/helper/RTMediaThemes.php:144
1152
+ #: app/helper/RTMediaThemes.php:172 app/helper/RTMediaThemes.php:259
1153
+ #: app/helper/RTMediaThemes.php:287 app/importers/BPMediaAlbumimporter.php:179
1154
+ msgid "Live Demo"
1155
  msgstr ""
1156
 
1157
+ #: app/helper/RTMediaAdminWidget.php:32
1158
+ msgid "Argument missing. id is required."
1159
  msgstr ""
1160
 
1161
+ #: app/helper/RTMediaFeed.php:52
1162
+ msgid "No items"
1163
  msgstr ""
1164
 
1165
+ #: app/helper/RTMediaFeed.php:58
1166
+ msgid "Posted "
1167
  msgstr ""
1168
 
1169
+ #: app/helper/RTMediaLicense.php:56
1170
+ msgid "Activated"
1171
  msgstr ""
1172
 
1173
+ #: app/helper/RTMediaLicense.php:59
1174
+ msgid "Deactivated"
 
 
1175
  msgstr ""
1176
 
1177
+ #: app/helper/RTMediaLicense.php:68
1178
+ msgid "Status: "
1179
  msgstr ""
1180
 
1181
+ #: app/helper/RTMediaLicense.php:77
1182
+ msgid "License Key"
1183
  msgstr ""
1184
 
1185
+ #: app/helper/RTMediaLicense.php:88
1186
+ msgid "Activate / Deactivate License"
1187
  msgstr ""
1188
 
1189
+ #: app/helper/RTMediaLicense.php:96
1190
+ msgid "Deactivate License"
1191
  msgstr ""
1192
 
1193
+ #: app/helper/RTMediaLicense.php:99
1194
+ msgid "Activate License"
1195
  msgstr ""
1196
 
1197
+ #: app/helper/RTMediaSettings.php:205
1198
+ msgid "BuddyPress Media Addons for Photos"
1199
  msgstr ""
1200
 
1201
+ #: app/helper/RTMediaSettings.php:209
1202
+ msgid "rtMedia Themes"
1203
  msgstr ""
1204
 
1205
+ #: app/helper/RTMediaSettings.php:282
1206
  msgid ""
1207
+ "Currently your network allows uploading of the following file types. You "
1208
+ "can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
 
1209
  msgstr ""
1210
 
1211
+ #: app/helper/RTMediaSettings.php:300 app/helper/RTMediaSettings.php:302
1212
+ msgid "Recounting of media files done successfully"
1213
  msgstr ""
1214
 
1215
+ #: app/helper/RTMediaSettings.php:302
1216
+ msgid "Recount Success"
 
 
1217
  msgstr ""
1218
 
1219
+ #: app/helper/RTMediaSettings.php:306 app/helper/RTMediaSettings.php:308
1220
+ msgid "Recounting Failed"
1221
  msgstr ""
1222
 
1223
+ #: app/helper/RTMediaSettings.php:308
1224
+ msgid "Recount Fail"
1225
  msgstr ""
1226
 
1227
+ #: app/helper/RTMediaSettings.php:321 app/helper/RTMediaSettings.php:323
1228
+ msgid "Atleast one Media Type Must be selected"
1229
  msgstr ""
1230
 
1231
+ #: app/helper/RTMediaSettings.php:332 app/helper/RTMediaSettings.php:334
1232
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
 
 
1233
  msgstr ""
1234
 
1235
+ #: app/helper/RTMediaSettings.php:334
1236
+ msgid "Default Count"
 
 
1237
  msgstr ""
1238
 
1239
+ #: app/helper/RTMediaSettings.php:339
1240
+ msgid "Settings saved."
1241
  msgstr ""
1242
 
1243
+ #: app/helper/RTMediaSettings.php:363
1244
  msgid ""
1245
+ "If you make changes to width, height or crop settings, you must use \"<a "
1246
+ "href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
1247
  msgstr ""
1248
 
1249
+ #: app/helper/RTMediaSettings.php:384
1250
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
 
 
1251
  msgstr ""
1252
 
1253
+ #: app/helper/RTMediaSettings.php:384
1254
+ msgid "Update Database"
1255
  msgstr ""
1256
 
1257
+ #: app/helper/RTMediaSettings.php:401
1258
+ msgid ""
1259
+ "If your site has some issues due to BuddyPress Media and you want one on "
1260
+ "one support then you can create a support topic on the <a target=\"_blank\" "
1261
+ "href=\"http://community.rtcamp.com/c/rtmedia?utm_source=dashboard&utm_"
1262
+ "medium=plugin&utm_campaign=rtmedia\">rtCamp Support Forum</a>."
1263
  msgstr ""
1264
 
1265
+ #: app/helper/RTMediaSettings.php:402
1266
+ msgid ""
1267
+ "If you have any suggestions, enhancements or bug reports, then you can open "
1268
+ "a new issue on <a target=\"_blank\" "
1269
+ "href=\"https://github.com/rtCamp/rtmedia/issues/new\">GitHub</a>."
1270
  msgstr ""
1271
 
1272
+ #: app/helper/RTMediaSupport.php:58 app/helper/RTMediaSupport.php:59
1273
+ #: app/helper/RTMediaSupport.php:305 app/helper/RTMediaSupport.php:560
1274
+ msgid "Debug Info"
1275
  msgstr ""
1276
 
1277
+ #: app/helper/RTMediaSupport.php:66 app/helper/RTMediaSupport.php:67
1278
+ #: app/importers/RTMediaMigration.php:83
1279
+ msgid "Migration"
1280
  msgstr ""
1281
 
1282
+ #: app/helper/RTMediaSupport.php:128
1283
+ msgid "Service"
 
1284
  msgstr ""
1285
 
1286
+ #: app/helper/RTMediaSupport.php:135
1287
+ msgid "Premium Support"
1288
  msgstr ""
1289
 
1290
+ #: app/helper/RTMediaSupport.php:141
1291
+ msgid "Bug Report"
1292
  msgstr ""
1293
 
1294
+ #: app/helper/RTMediaSupport.php:147
1295
+ msgid "New Feature"
1296
  msgstr ""
1297
 
1298
+ #: app/helper/RTMediaSupport.php:149
1299
+ msgid "Submit"
1300
  msgstr ""
1301
 
1302
+ #: app/helper/RTMediaSupport.php:195
1303
+ msgid "by"
1304
  msgstr ""
1305
 
1306
+ #: app/helper/RTMediaSupport.php:195
1307
+ msgid "version"
1308
  msgstr ""
1309
 
1310
+ #: app/helper/RTMediaSupport.php:357
1311
+ msgid "There is no media found to migrate."
1312
  msgstr ""
1313
 
1314
+ #: app/helper/RTMediaSupport.php:363
1315
+ #: app/main/controllers/media/RTMediaLoginPopup.php:52
1316
+ msgid "Click"
1317
  msgstr ""
1318
 
1319
+ #: app/helper/RTMediaSupport.php:363
1320
+ msgid "here to migrate media from rtMedia 2.x to rtMedia 3.0+."
1321
  msgstr ""
1322
 
1323
+ #: app/helper/RTMediaSupport.php:392
1324
+ msgid "Submit a Bug Report"
1325
  msgstr ""
1326
 
1327
+ #: app/helper/RTMediaSupport.php:395
1328
+ msgid "Submit a New Feature Request"
1329
  msgstr ""
1330
 
1331
+ #: app/helper/RTMediaSupport.php:398
1332
+ msgid "Submit Support Request"
1333
  msgstr ""
1334
 
1335
+ #: app/helper/RTMediaSupport.php:405
1336
  msgid ""
1337
+ "If your site has some issues due to rtMedia and you want support, feel free "
1338
+ "to create a support topic on <a target=\"_blank\" "
1339
+ "href=\"http://community.rtcamp.com/c/rtmedia/?utm_source=dashboard&utm_"
1340
+ "medium=plugin&utm_campaign=buddypress-media\">Community Forum</a>."
 
 
1341
  msgstr ""
1342
 
1343
+ #: app/helper/RTMediaSupport.php:406
1344
+ msgid ""
1345
+ "If you have any suggestions, enhancements or bug reports, you can open a "
1346
+ "new issue on <a target=\"_blank\" "
1347
+ "href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
1348
  msgstr ""
1349
 
1350
+ #: app/helper/RTMediaSupport.php:415
1351
+ msgid "Name"
 
1352
  msgstr ""
1353
 
1354
+ #: app/helper/RTMediaSupport.php:420
1355
+ msgid "Use actual user name which used during purchased."
1356
  msgstr ""
1357
 
1358
+ #: app/helper/RTMediaSupport.php:426
1359
+ msgid "Email"
1360
  msgstr ""
1361
 
1362
+ #: app/helper/RTMediaSupport.php:431
1363
+ msgid "Use email id which used during purchased"
1364
  msgstr ""
1365
 
1366
+ #: app/helper/RTMediaSupport.php:437
1367
+ msgid "Website"
 
 
1368
  msgstr ""
1369
 
1370
+ #: app/helper/RTMediaSupport.php:442
1371
+ msgid "Subject"
1372
  msgstr ""
1373
 
1374
+ #: app/helper/RTMediaSupport.php:447 templates/media/album-single-edit.php:16
1375
+ #: templates/media/media-single-edit.php:14
1376
+ msgid "Details"
1377
  msgstr ""
1378
 
1379
+ #: app/helper/RTMediaSupport.php:490
1380
+ msgid "rtMedia Premium Support Request from"
1381
  msgstr ""
1382
 
1383
+ #: app/helper/RTMediaSupport.php:493
1384
+ msgid "rtMedia New Feature Request from"
1385
  msgstr ""
1386
 
1387
+ #: app/helper/RTMediaSupport.php:496
1388
+ msgid "rtMedia Bug Report from"
1389
  msgstr ""
1390
 
1391
+ #: app/helper/RTMediaSupport.php:499
1392
+ msgid "rtMedia Contact from"
1393
  msgstr ""
1394
 
1395
+ #: app/helper/RTMediaSupport.php:582
1396
+ msgid "Thank you for your Feedback/Suggestion."
1397
  msgstr ""
1398
 
1399
+ #: app/helper/RTMediaSupport.php:584
1400
+ msgid "Thank you for posting your support request."
 
 
1401
  msgstr ""
1402
 
1403
+ #: app/helper/RTMediaSupport.php:585
1404
+ msgid "We will get back to you shortly."
1405
  msgstr ""
1406
 
1407
+ #: app/helper/RTMediaSupport.php:590
1408
+ msgid "Your server failed to send an email."
1409
  msgstr ""
1410
 
1411
+ #: app/helper/RTMediaSupport.php:591
1412
+ msgid "Kindly contact your server support to fix this."
1413
  msgstr ""
1414
 
1415
+ #: app/helper/RTMediaSupport.php:592
1416
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
1417
  msgstr ""
1418
 
1419
+ #: app/helper/RTMediaThemes.php:60 app/helper/RTMediaThemes.php:61
1420
+ msgid "Themes By rtCamp"
1421
  msgstr ""
1422
 
1423
+ #: app/helper/RTMediaThemes.php:67 app/helper/RTMediaThemes.php:68
1424
+ msgid "3rd Party Themes"
1425
  msgstr ""
1426
 
1427
+ #: app/helper/RTMediaThemes.php:105
1428
+ msgid "rtDating"
1429
  msgstr ""
1430
 
1431
+ #. Author of the plugin/theme
1432
+ msgid "rtCamp"
1433
  msgstr ""
1434
 
1435
+ #: app/helper/RTMediaThemes.php:111
1436
  msgid ""
1437
+ "rtDating is a unique, clean and modern theme only for WordPress. This theme "
1438
+ "is mostly useful for dating sites and community websites. It can also be "
1439
+ "use for any other WordPress based website."
 
1440
  msgstr ""
1441
 
1442
+ #: app/helper/RTMediaThemes.php:115
1443
+ msgid "InspireBook"
1444
  msgstr ""
1445
 
1446
+ #: app/helper/RTMediaThemes.php:121
1447
  msgid ""
1448
+ "InspireBook is a premium WordPress theme, designed especially for "
1449
+ "BuddyPress and rtMedia powered social-networks."
1450
  msgstr ""
1451
 
1452
+ #: app/helper/RTMediaThemes.php:139 app/helper/RTMediaThemes.php:254
1453
+ msgid "Theme Details"
 
1454
  msgstr ""
1455
 
1456
+ #: app/helper/RTMediaThemes.php:151 app/helper/RTMediaThemes.php:266
1457
+ msgid "Show previous theme"
1458
  msgstr ""
1459
 
1460
+ #: app/helper/RTMediaThemes.php:152 app/helper/RTMediaThemes.php:267
1461
+ msgid "Show next theme"
1462
  msgstr ""
1463
 
1464
+ #: app/helper/RTMediaThemes.php:153 app/helper/RTMediaThemes.php:268
1465
+ msgid "Close overlay"
1466
  msgstr ""
1467
 
1468
+ #: app/helper/RTMediaThemes.php:166 app/helper/RTMediaThemes.php:281
1469
+ msgid "Read More"
1470
  msgstr ""
1471
 
1472
+ #: app/helper/RTMediaThemes.php:167 app/helper/RTMediaThemes.php:282
1473
+ msgid "Tags:"
1474
  msgstr ""
1475
 
1476
+ #: app/helper/RTMediaThemes.php:199
1477
+ msgid "(M) SOCIAL NETWORK BUDDYPRESS THEME"
 
1478
  msgstr ""
1479
 
1480
+ #: app/helper/RTMediaThemes.php:202
1481
+ msgid "gavick"
1482
  msgstr ""
1483
 
1484
+ #: app/helper/RTMediaThemes.php:205
1485
+ msgid ""
1486
+ "(M)Social is a sophisticated, vibrant community theme that offers "
1487
+ "incredible grid layouts, with full BuddyPress support so your users can "
1488
+ "interact with each other, create their own pages, and share their thoughts "
1489
+ "and images with the community. "
1490
  msgstr ""
1491
 
1492
+ #: app/helper/RTMediaThemes.php:209
1493
+ msgid "Klein"
1494
  msgstr ""
1495
 
1496
+ #: app/helper/RTMediaThemes.php:212
1497
+ msgid "dunhakdis"
1498
  msgstr ""
1499
 
1500
+ #: app/helper/RTMediaThemes.php:215
1501
+ msgid ""
1502
+ "Klein is an innovative WordPress theme built to support BuddyPress, "
1503
+ "bbPress, and WooCommerce out of the box. Perfect for websites that "
1504
+ "interacts with many users."
1505
  msgstr ""
1506
 
1507
+ #: app/helper/RTMediaThemes.php:219
1508
+ msgid "SweetDate"
1509
  msgstr ""
1510
 
1511
+ #: app/helper/RTMediaThemes.php:222 app/helper/RTMediaThemes.php:232
1512
+ msgid "SeventhQueen"
1513
  msgstr ""
1514
 
1515
+ #: app/helper/RTMediaThemes.php:225
1516
+ msgid ""
1517
+ "SweetDate is a unique, clean and modern Premium Wordpress theme. It is "
1518
+ "perfect for a dating or community website but can be used as well for any "
1519
+ "other domain. They added all the things you need to create a perfect "
1520
+ "community system."
1521
  msgstr ""
1522
 
1523
+ #: app/helper/RTMediaThemes.php:229
1524
+ msgid "KLEO"
1525
  msgstr ""
1526
 
1527
+ #: app/helper/RTMediaThemes.php:235
1528
+ msgid ""
1529
+ "You no longer need to be a professional developer or designer to create an "
1530
+ "awesome website. Let your imagination run wild and create the site of your "
1531
+ "dreams. KLEO has all the tools to get you started."
1532
  msgstr ""
1533
 
1534
+ #: app/helper/RTMediaThemes.php:298
1535
+ msgid ""
1536
+ "These are the third party themes. For any issues or queries regarding these "
1537
+ "themes please contact theme developers."
1538
  msgstr ""
1539
 
1540
+ #: app/helper/RTMediaThemes.php:301
1541
+ msgid "Are you a developer?"
1542
  msgstr ""
1543
 
1544
+ #: app/helper/RTMediaThemes.php:304
1545
+ msgid ""
1546
+ "If you have developed a rtMedia compatible theme and would like it to list "
1547
+ "here, please email us at"
1548
  msgstr ""
1549
 
1550
+ #: app/helper/RTMediaThemes.php:305
1551
+ msgid "product@rtcamp.com"
 
1552
  msgstr ""
1553
 
1554
+ #: app/helper/RTMediaUploadException.php:41
1555
+ msgid ""
1556
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
1557
+ "the HTML form"
1558
  msgstr ""
1559
 
1560
+ #: app/helper/RTMediaUploadException.php:44
1561
+ msgid "No file was uploaded"
 
1562
  msgstr ""
1563
 
1564
+ #: app/helper/RTMediaUploadException.php:49
1565
+ msgid "Uploade failed due to internal server error."
 
 
 
1566
  msgstr ""
1567
 
1568
+ #: app/helper/RTMediaUploadException.php:52
1569
+ msgid "File type not allowed."
 
1570
  msgstr ""
1571
 
1572
+ #: app/helper/RTMediaUploadException.php:56
1573
+ msgid "Invalid Context for upload."
 
1574
  msgstr ""
1575
 
1576
+ #: app/helper/RTMediaUploadException.php:59
1577
+ msgid "Unknown file upload error."
 
1578
  msgstr ""
1579
 
1580
+ #: app/helper/rtFormInvalidArgumentsException.php:21
1581
+ msgid ""
1582
+ "Error on line %s in %s : <b>The method expects an array in arguments for %s "
1583
+ "provided.</b>"
1584
  msgstr ""
1585
 
1586
+ #: app/importers/BPMediaAlbumimporter.php:71
1587
+ msgid "Warning!"
1588
  msgstr ""
1589
 
1590
+ #: app/importers/BPMediaAlbumimporter.php:71
1591
+ msgid ""
1592
+ "This import process is irreversible. Although everything is tested, please "
1593
+ "take a <a target=\"_blank\" "
1594
+ "href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your "
1595
+ "database and files</a>, before proceeding. If you don't know your way "
1596
+ "around databases and files, consider <a target=\"_blank\" "
1597
+ "href=\"%s\">hiring us</a>, or another professional."
1598
  msgstr ""
1599
 
1600
+ #: app/importers/BPMediaAlbumimporter.php:72
1601
  msgid ""
1602
+ "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it "
1603
+ "is set to \"false\", so that it doesn't conflict with the import process."
1604
  msgstr ""
1605
 
1606
+ #: app/importers/BPMediaAlbumimporter.php:73
1607
+ msgid "I have taken a backup of the database and files of this site."
1608
  msgstr ""
1609
 
1610
+ #: app/importers/BPMediaAlbumimporter.php:75
1611
+ msgid "Start Import"
1612
  msgstr ""
1613
 
1614
+ #: app/importers/BPMediaAlbumimporter.php:80
1615
+ msgid "Users"
1616
  msgstr ""
1617
 
1618
+ #: app/importers/BPMediaAlbumimporter.php:90 app/main/RTMedia.php:562
1619
+ msgid "Media"
1620
  msgstr ""
1621
 
1622
+ #: app/importers/BPMediaAlbumimporter.php:110
1623
+ msgid "Comments"
1624
  msgstr ""
1625
 
1626
+ #: app/importers/BPMediaAlbumimporter.php:116
1627
+ msgid "Comments: 0/0 (No comments to import)"
1628
  msgstr ""
1629
 
1630
+ #: app/importers/BPMediaAlbumimporter.php:123
1631
+ msgid "User's Favorites"
1632
  msgstr ""
1633
 
1634
+ #: app/importers/BPMediaAlbumimporter.php:132
1635
+ msgid "BP-Album is active on your site and will cause problems with the import."
1636
  msgstr ""
1637
 
1638
+ #: app/importers/BPMediaAlbumimporter.php:133
1639
+ msgid "Click here to deactivate BP-Album and continue importing"
1640
  msgstr ""
1641
 
1642
+ #: app/importers/BPMediaAlbumimporter.php:139
1643
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
1644
  msgstr ""
1645
 
1646
+ #: app/importers/BPMediaAlbumimporter.php:140
1647
+ msgid "The following %d BP Album Media id's could not be imported"
 
 
 
 
1648
  msgstr ""
1649
 
1650
+ #: app/importers/BPMediaAlbumimporter.php:149
1651
+ msgid "I just imported bp-album to @buddypressmedia http://rt.cx/rtmedia on %s"
1652
  msgstr ""
1653
 
1654
+ #: app/importers/BPMediaAlbumimporter.php:150
1655
+ msgid "Congratulations!"
1656
  msgstr ""
1657
 
1658
+ #: app/importers/BPMediaAlbumimporter.php:150
1659
+ msgid "All media from BP Album has been imported."
1660
  msgstr ""
1661
 
1662
+ #: app/importers/BPMediaAlbumimporter.php:151
1663
+ msgid "Tweet this"
1664
  msgstr ""
1665
 
1666
+ #: app/importers/BPMediaAlbumimporter.php:155
1667
+ msgid ""
1668
+ "However, a lot of unnecessary files and a database table are still eating "
1669
+ "up your resources. If everything seems fine, you can clean this data up."
1670
  msgstr ""
1671
 
1672
+ #: app/importers/BPMediaAlbumimporter.php:158
1673
+ msgid "Clean up Now"
1674
  msgstr ""
1675
 
1676
+ #: app/importers/BPMediaAlbumimporter.php:161
1677
+ msgid "Clean up Later"
1678
  msgstr ""
1679
 
1680
+ #: app/importers/BPMediaAlbumimporter.php:166
1681
+ msgid "Why don't you try adding some instagram like effects to your images?"
1682
  msgstr ""
1683
 
1684
+ #: app/importers/BPMediaAlbumimporter.php:173
1685
+ msgid ""
1686
+ "BuddyPress Media Instagram adds Instagram like filters to images uploaded "
1687
+ "with BuddyPress Media."
1688
  msgstr ""
1689
 
1690
+ #: app/importers/BPMediaAlbumimporter.php:174
1691
+ msgid "Important"
1692
  msgstr ""
1693
 
1694
+ #: app/importers/BPMediaAlbumimporter.php:174
1695
+ msgid ""
1696
+ "You need to have ImageMagick installed on your server for this addon to "
1697
+ "work."
1698
  msgstr ""
1699
 
1700
+ #: app/importers/BPMediaAlbumimporter.php:184
1701
+ msgid ""
1702
+ "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you "
1703
+ "want an importer for?"
1704
  msgstr ""
1705
 
1706
+ #: app/importers/BPMediaAlbumimporter.php:185
1707
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
1708
  msgstr ""
1709
 
1710
+ #: app/importers/RTMediaActivityUpgrade.php:20
1711
+ msgid "Media activity upgrade"
1712
  msgstr ""
1713
 
1714
+ #: app/importers/RTMediaMediaSizeImporter.php:25
1715
+ msgid "Media Size Import"
1716
  msgstr ""
1717
 
1718
+ #: app/importers/RTMediaMigration.php:64
1719
+ msgid "Please Migrate your Database"
 
1720
  msgstr ""
1721
 
1722
+ #: app/importers/RTMediaMigration.php:64
1723
+ msgid "Click Here"
1724
  msgstr ""
1725
 
1726
+ #: app/importers/RTMediaMigration.php:375
1727
+ msgid ""
1728
+ "Please Backup your <strong>DATABASE</strong> and <strong>UPLOAD</strong> "
1729
+ "folder before Migration."
1730
  msgstr ""
1731
 
1732
+ #: app/importers/RTMediaMigration.php:383
1733
+ msgid "rtMedia Migration"
1734
  msgstr ""
1735
 
1736
+ #: app/importers/RTMediaMigration.php:385
1737
+ msgid "It will migrate following things"
1738
  msgstr ""
1739
 
1740
+ #: app/importers/RTMediaMigration.php:453
1741
+ msgid "Error During Migration, Please Refresh Page then try again"
1742
  msgstr ""
1743
 
1744
+ #: app/importers/RTMediaMigration.php:473
1745
+ msgid "Start"
1746
  msgstr ""
1747
 
1748
+ #: app/importers/RTMediaMigration.php:1024
1749
+ msgid " day"
1750
  msgstr ""
1751
 
1752
+ #: app/importers/RTMediaMigration.php:1028
1753
+ msgid " hour"
1754
  msgstr ""
1755
 
1756
+ #: app/importers/RTMediaMigration.php:1032
1757
+ msgid " minute"
1758
  msgstr ""
1759
 
1760
+ #: app/importers/RTMediaMigration.php:1036
1761
+ msgid " second"
1762
  msgstr ""
1763
 
1764
+ #: app/importers/RTMediaMigration.php:1042
1765
+ msgid "No time remaining."
1766
  msgstr ""
1767
 
1768
+ #: app/main/RTMedia.php:302
1769
+ msgid "Photo"
 
 
 
 
1770
  msgstr ""
1771
 
1772
+ #: app/main/RTMedia.php:303
1773
+ msgid "Photos"
 
1774
  msgstr ""
1775
 
1776
+ #: app/main/RTMedia.php:311
1777
+ msgid "Video"
 
1778
  msgstr ""
1779
 
1780
+ #: app/main/RTMedia.php:312
1781
+ msgid "Videos"
 
 
 
 
1782
  msgstr ""
1783
 
1784
+ #: app/main/RTMedia.php:320 app/main/RTMedia.php:321
1785
+ msgid "Music"
 
 
 
 
1786
  msgstr ""
1787
 
1788
+ #: app/main/RTMedia.php:408
1789
+ msgid "Private - Visible only to the user"
1790
  msgstr ""
1791
 
1792
+ #: app/main/RTMedia.php:409
1793
+ msgid "Friends - Visible to user's friends"
1794
  msgstr ""
1795
 
1796
+ #: app/main/RTMedia.php:410
1797
+ msgid "Logged in Users - Visible to registered users"
1798
  msgstr ""
1799
 
1800
+ #: app/main/RTMedia.php:411
1801
+ msgid "Public - Visible to the world"
 
 
1802
  msgstr ""
1803
 
1804
+ #: app/main/RTMedia.php:568 app/main/controllers/template/RTMediaNav.php:175
1805
+ #: app/main/controllers/template/rt-template-functions.php:83
1806
+ msgid "All"
 
1807
  msgstr ""
1808
 
1809
+ #: app/main/RTMedia.php:577 app/main/controllers/media/RTMediaAlbum.php:49
1810
+ #: app/main/controllers/template/rt-template-functions.php:1385
1811
+ #: app/main/controllers/upload/RTMediaUploadView.php:51
1812
+ #: app/main/controllers/upload/RTMediaUploadView.php:54
1813
+ msgid "Album"
1814
  msgstr ""
1815
 
1816
+ #: app/main/RTMedia.php:580 app/main/controllers/media/RTMediaAlbum.php:48
1817
+ #: app/main/controllers/media/RTMediaAlbum.php:60
1818
+ msgid "Albums"
1819
  msgstr ""
1820
 
1821
+ #: app/main/RTMedia.php:588 app/main/controllers/media/RTMediaLoginPopup.php:38
1822
+ #: app/main/controllers/template/rt-template-functions.php:2154
1823
+ #: app/main/controllers/template/rt-template-functions.php:2158
1824
+ msgid "Upload"
1825
  msgstr ""
1826
 
1827
+ #: app/main/RTMedia.php:592
1828
+ msgid "Wall Post"
1829
  msgstr ""
1830
 
1831
+ #: app/main/RTMedia.php:803 app/main/RTMedia.php:812
1832
+ msgid "Wall Posts"
1833
  msgstr ""
1834
 
1835
+ #: app/main/RTMedia.php:855
1836
+ msgid ": Can't Create Database table. Please check create table permission."
1837
  msgstr ""
1838
 
1839
+ #: app/main/RTMedia.php:899
1840
+ msgid "Loading media"
1841
  msgstr ""
1842
 
1843
+ #: app/main/RTMedia.php:900
1844
+ msgid "Please enter some content to post."
1845
  msgstr ""
1846
 
1847
+ #: app/main/RTMedia.php:901
1848
+ msgid "Empty Comment is not allowed."
1849
  msgstr ""
1850
 
1851
+ #: app/main/RTMedia.php:902
1852
+ msgid "Are you sure you want to delete this media?"
1853
  msgstr ""
1854
 
1855
+ #: app/main/RTMedia.php:903
1856
+ msgid "Are you sure you want to delete this comment?"
1857
  msgstr ""
1858
 
1859
+ #: app/main/RTMedia.php:904
1860
+ msgid "Are you sure you want to delete this Album?"
1861
  msgstr ""
1862
 
1863
+ #: app/main/RTMedia.php:905
1864
+ msgid "Drop files here"
1865
  msgstr ""
1866
 
1867
+ #: app/main/RTMedia.php:906
1868
+ msgid "album created successfully."
1869
  msgstr ""
1870
 
1871
+ #: app/main/RTMedia.php:907
1872
+ msgid "Something went wrong. Please try again."
1873
  msgstr ""
1874
 
1875
+ #: app/main/RTMedia.php:908
1876
+ msgid "Enter an album name."
1877
  msgstr ""
1878
 
1879
+ #: app/main/RTMedia.php:909
1880
+ msgid "Max file Size Limit : "
 
 
 
 
 
1881
  msgstr ""
1882
 
1883
+ #: app/main/RTMedia.php:910
1884
+ msgid "Allowed File Formats"
 
 
 
1885
  msgstr ""
1886
 
1887
+ #: app/main/RTMedia.php:911 templates/media/album-single-edit.php:65
1888
+ #: templates/media/media-single-edit.php:63
1889
+ msgid "Select All Visible"
1890
  msgstr ""
1891
 
1892
+ #: app/main/RTMedia.php:912
1893
+ msgid "Unselect All Visible"
1894
  msgstr ""
1895
 
1896
+ #: app/main/RTMedia.php:913
1897
+ msgid "Please select some media."
1898
  msgstr ""
1899
 
1900
+ #: app/main/RTMedia.php:914
1901
+ msgid "Are you sure you want to delete the selected media?"
1902
  msgstr ""
1903
 
1904
+ #: app/main/RTMedia.php:915
1905
+ msgid "Are you sure you want to move the selected media?"
1906
  msgstr ""
1907
 
1908
+ #: app/main/RTMedia.php:916
1909
+ msgid "Waiting"
1910
  msgstr ""
1911
 
1912
+ #: app/main/RTMedia.php:917
1913
+ msgid "Uploaded"
1914
  msgstr ""
1915
 
1916
+ #: app/main/RTMedia.php:918
1917
+ msgid "Uploading"
1918
  msgstr ""
1919
 
1920
+ #: app/main/RTMedia.php:919
1921
+ msgid "Failed"
1922
  msgstr ""
1923
 
1924
+ #: app/main/RTMedia.php:920
1925
+ msgid "Close"
1926
  msgstr ""
1927
 
1928
+ #: app/main/RTMedia.php:921
1929
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:61
1930
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
1931
+ #: app/main/controllers/template/rt-template-functions.php:729
1932
+ #: app/main/controllers/template/rt-template-functions.php:750
1933
+ msgid "Edit"
1934
  msgstr ""
1935
 
1936
+ #: app/main/RTMedia.php:922
1937
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:64
1938
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
1939
+ #: app/main/controllers/template/rt-template-functions.php:1465
1940
+ #: app/main/controllers/template/rt-template-functions.php:1472
1941
+ #: templates/media/album-single-edit.php:68
1942
+ #: templates/media/media-single-edit.php:66
1943
+ msgid "Delete"
1944
  msgstr ""
1945
 
1946
+ #: app/main/RTMedia.php:923
1947
+ msgid "Edit Media"
1948
  msgstr ""
1949
 
1950
+ #: app/main/RTMedia.php:924
1951
+ msgid "Remove from queue"
1952
  msgstr ""
1953
 
1954
+ #: app/main/RTMedia.php:925
1955
+ msgid "Add more files"
1956
  msgstr ""
1957
 
1958
+ #: app/main/RTMedia.php:926
1959
+ msgid "File not supported"
 
1960
  msgstr ""
1961
 
1962
+ #: app/main/RTMedia.php:927
1963
+ msgid "more"
1964
  msgstr ""
1965
 
1966
+ #: app/main/RTMedia.php:928
1967
+ msgid "less"
1968
  msgstr ""
1969
 
1970
+ #: app/main/RTMedia.php:929
1971
+ msgid "This media is uploaded. Are you sure you want to delete this media?"
1972
  msgstr ""
1973
 
1974
+ #: app/main/RTMedia.php:937
1975
+ msgid "Featured media set successfully."
 
 
1976
  msgstr ""
1977
 
1978
+ #: app/main/RTMedia.php:938
1979
+ msgid "Featured media removed successfully."
1980
  msgstr ""
1981
 
1982
+ #: app/main/RTMedia.php:975
1983
+ msgid "There are some uploads in progress. Do you want to cancel them?"
 
 
1984
  msgstr ""
1985
 
1986
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:180
1987
+ msgid "Media Files"
1988
  msgstr ""
1989
 
1990
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:204
1991
+ #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:103
1992
+ #: app/main/controllers/template/rt-template-functions.php:1499
1993
+ msgid "You are not allowed to upload/attach media."
1994
  msgstr ""
1995
 
1996
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:333
1997
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:348
1998
+ msgid "media"
1999
  msgstr ""
2000
 
2001
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:340
2002
+ msgid "%s added a %s"
 
 
2003
  msgstr ""
2004
 
2005
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:346
2006
+ #: app/main/controllers/activity/RTMediaBuddyPressActivity.php:348
2007
+ #: app/main/controllers/upload/RTMediaUploadEndpoint.php:99
2008
+ msgid "%s added %d %s"
2009
  msgstr ""
2010
 
2011
+ #: app/main/controllers/api/RTMediaJsonApi.php:166
2012
+ msgid "username/password empty"
 
 
2013
  msgstr ""
2014
 
2015
+ #: app/main/controllers/api/RTMediaJsonApi.php:169
2016
+ msgid "incorrect username"
2017
  msgstr ""
2018
 
2019
+ #: app/main/controllers/api/RTMediaJsonApi.php:172
2020
+ msgid "incorrect password"
 
 
2021
  msgstr ""
2022
 
2023
+ #: app/main/controllers/api/RTMediaJsonApi.php:175
2024
+ msgid "login success"
2025
  msgstr ""
2026
 
2027
+ #: app/main/controllers/api/RTMediaJsonApi.php:221
2028
+ msgid "fields empty"
 
 
2029
  msgstr ""
2030
 
2031
+ #: app/main/controllers/api/RTMediaJsonApi.php:224
2032
+ msgid "invalid email"
2033
  msgstr ""
2034
 
2035
+ #: app/main/controllers/api/RTMediaJsonApi.php:227
2036
+ msgid "password do not match"
 
 
2037
  msgstr ""
2038
 
2039
+ #: app/main/controllers/api/RTMediaJsonApi.php:230
2040
+ msgid "username already registered"
2041
  msgstr ""
2042
 
2043
+ #: app/main/controllers/api/RTMediaJsonApi.php:233
2044
+ msgid "email already exists"
2045
  msgstr ""
2046
 
2047
+ #: app/main/controllers/api/RTMediaJsonApi.php:236
2048
+ msgid "new user created"
2049
  msgstr ""
2050
 
2051
+ #: app/main/controllers/api/RTMediaJsonApi.php:297
2052
+ msgid "email empty"
 
 
2053
  msgstr ""
2054
 
2055
+ #: app/main/controllers/api/RTMediaJsonApi.php:300
2056
+ msgid "username/email not registered"
2057
  msgstr ""
2058
 
2059
+ #: app/main/controllers/api/RTMediaJsonApi.php:303
2060
+ msgid "reset link sent"
 
 
2061
  msgstr ""
2062
 
2063
+ #: app/main/controllers/api/RTMediaJsonApi.php:335
2064
+ msgid "Someone has asked to reset the password for the following site and username."
2065
  msgstr ""
2066
 
2067
+ #: app/main/controllers/api/RTMediaJsonApi.php:337
2068
+ msgid "Username: %s"
2069
+ msgstr ""
2070
+
2071
+ #: app/main/controllers/api/RTMediaJsonApi.php:338
2072
  msgid ""
2073
+ "To reset your password visit the following address, otherwise just ignore "
2074
+ "this email and nothing will happen."
2075
  msgstr ""
2076
 
2077
+ #: app/main/controllers/api/RTMediaJsonApi.php:341
2078
+ msgid "[%s] Password Reset"
2079
  msgstr ""
2080
 
2081
+ #: app/main/controllers/api/RTMediaJsonApi.php:356
2082
+ msgid "bp activities"
 
 
2083
  msgstr ""
2084
 
2085
+ #: app/main/controllers/api/RTMediaJsonApi.php:359
2086
+ msgid "user activities"
2087
  msgstr ""
2088
 
2089
+ #: app/main/controllers/api/RTMediaJsonApi.php:389
2090
+ msgid "comment content missing"
 
 
2091
  msgstr ""
2092
 
2093
+ #: app/main/controllers/api/RTMediaJsonApi.php:392
2094
+ msgid "comment posted"
2095
  msgstr ""
2096
 
2097
+ #: app/main/controllers/api/RTMediaJsonApi.php:439
2098
+ msgid "unliked media"
2099
  msgstr ""
2100
 
2101
+ #: app/main/controllers/api/RTMediaJsonApi.php:442
2102
+ msgid "liked media"
2103
  msgstr ""
2104
 
2105
+ #: app/main/controllers/api/RTMediaJsonApi.php:526
2106
+ msgid "no comments"
 
 
2107
  msgstr ""
2108
 
2109
+ #: app/main/controllers/api/RTMediaJsonApi.php:529
2110
+ msgid "media comments"
2111
  msgstr ""
2112
 
2113
+ #: app/main/controllers/api/RTMediaJsonApi.php:532
2114
+ msgid "my comments"
 
 
 
2115
  msgstr ""
2116
 
2117
+ #: app/main/controllers/api/RTMediaJsonApi.php:582
2118
+ msgid "no likes"
2119
  msgstr ""
2120
 
2121
+ #: app/main/controllers/api/RTMediaJsonApi.php:585
2122
+ msgid "media likes"
 
2123
  msgstr ""
2124
 
2125
+ #: app/main/controllers/api/RTMediaJsonApi.php:627
2126
+ msgid "invalid comment/media id"
2127
  msgstr ""
2128
 
2129
+ #: app/main/controllers/api/RTMediaJsonApi.php:630
2130
+ msgid "no comment id"
2131
  msgstr ""
2132
 
2133
+ #: app/main/controllers/api/RTMediaJsonApi.php:633
2134
+ msgid "comment deleted"
2135
  msgstr ""
2136
 
2137
+ #: app/main/controllers/api/RTMediaJsonApi.php:676
2138
+ msgid "no profile found"
 
 
2139
  msgstr ""
2140
 
2141
+ #: app/main/controllers/api/RTMediaJsonApi.php:679
2142
+ msgid "profile fields"
2143
  msgstr ""
2144
 
2145
+ #: app/main/controllers/api/RTMediaJsonApi.php:773
2146
+ msgid "follow user id missing"
 
 
 
2147
  msgstr ""
2148
 
2149
+ #: app/main/controllers/api/RTMediaJsonApi.php:776
2150
+ msgid "started following"
2151
  msgstr ""
2152
 
2153
+ #: app/main/controllers/api/RTMediaJsonApi.php:779
2154
+ msgid "already following"
 
 
2155
  msgstr ""
2156
 
2157
+ #: app/main/controllers/api/RTMediaJsonApi.php:811
2158
+ msgid "unfollow id missing"
2159
  msgstr ""
2160
 
2161
+ #: app/main/controllers/api/RTMediaJsonApi.php:814
2162
+ msgid "stopped following"
 
 
 
2163
  msgstr ""
2164
 
2165
+ #: app/main/controllers/api/RTMediaJsonApi.php:817
2166
+ msgid "not following"
2167
  msgstr ""
2168
 
2169
+ #: app/main/controllers/api/RTMediaJsonApi.php:849
2170
+ msgid "name/location empty"
 
 
 
2171
  msgstr ""
2172
 
2173
+ #: app/main/controllers/api/RTMediaJsonApi.php:852
2174
+ msgid "profile updated"
2175
  msgstr ""
2176
 
2177
+ #: app/main/controllers/api/RTMediaJsonApi.php:878
2178
+ #: app/main/controllers/api/RTMediaJsonApi.php:905
2179
+ msgid "no file"
 
2180
  msgstr ""
2181
 
2182
+ #: app/main/controllers/api/RTMediaJsonApi.php:881
2183
+ #: app/main/controllers/api/RTMediaJsonApi.php:917
2184
+ msgid "upload failed, check size and file type"
2185
  msgstr ""
2186
 
2187
+ #: app/main/controllers/api/RTMediaJsonApi.php:884
2188
+ msgid "avatar updated"
 
 
 
2189
  msgstr ""
2190
 
2191
+ #: app/main/controllers/api/RTMediaJsonApi.php:908
2192
+ msgid "invalid file string"
2193
  msgstr ""
2194
 
2195
+ #: app/main/controllers/api/RTMediaJsonApi.php:911
2196
+ msgid "image type missing"
 
2197
  msgstr ""
2198
 
2199
+ #: app/main/controllers/api/RTMediaJsonApi.php:914
2200
+ msgid "no title"
2201
  msgstr ""
2202
 
2203
+ #: app/main/controllers/api/RTMediaJsonApi.php:920
2204
+ msgid "media updated"
 
 
2205
  msgstr ""
2206
 
2207
+ #: app/main/controllers/api/RTMediaJsonApi.php:1050
2208
+ msgid "media list"
2209
  msgstr ""
2210
 
2211
+ #: app/main/controllers/api/RTMediaJsonApi.php:1053
2212
+ msgid "no media found for requested media type"
 
 
 
2213
  msgstr ""
2214
 
2215
+ #: app/main/controllers/api/RTMediaJsonApi.php:1056
2216
+ msgid "media_type not allowed"
2217
  msgstr ""
2218
 
2219
+ #: app/main/controllers/api/RTMediaJsonApi.php:1146
2220
+ msgid "single media"
 
 
2221
  msgstr ""
2222
 
2223
+ #: app/main/controllers/group/RTMediaGroupExtension.php:30
2224
+ #: app/main/controllers/group/RTMediaGroupExtension.php:92
2225
+ msgid "Album Creation Control"
2226
  msgstr ""
2227
 
2228
+ #: app/main/controllers/group/RTMediaGroupExtension.php:31
2229
+ #: app/main/controllers/group/RTMediaGroupExtension.php:93
2230
+ msgid "Who can create Albums in this group?"
 
 
2231
  msgstr ""
2232
 
2233
+ #: app/main/controllers/group/RTMediaGroupExtension.php:35
2234
+ #: app/main/controllers/group/RTMediaGroupExtension.php:97
2235
+ msgid "All Group Members"
2236
  msgstr ""
2237
 
2238
+ #: app/main/controllers/group/RTMediaGroupExtension.php:39
2239
+ #: app/main/controllers/group/RTMediaGroupExtension.php:101
2240
+ msgid "Group Admins and Mods only"
2241
  msgstr ""
2242
 
2243
+ #: app/main/controllers/group/RTMediaGroupExtension.php:43
2244
+ #: app/main/controllers/group/RTMediaGroupExtension.php:105
2245
+ msgid "Group Admin only"
2246
  msgstr ""
2247
 
2248
+ #: app/main/controllers/group/RTMediaGroupExtension.php:113
2249
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:277
2250
+ #: templates/media/album-single-edit.php:50
2251
+ #: templates/media/media-single-edit.php:48
2252
+ msgid "Save Changes"
2253
  msgstr ""
2254
 
2255
+ #: app/main/controllers/group/RTMediaGroupExtension.php:142
2256
+ msgid "There was an error saving, please try again"
2257
  msgstr ""
2258
 
2259
+ #: app/main/controllers/group/RTMediaGroupExtension.php:144
2260
+ msgid "Settings saved successfully"
2261
+ msgstr ""
2262
+
2263
+ #: app/main/controllers/group/RTMediaGroupExtension.php:164
2264
  msgid ""
2265
+ "You could display a small snippet of information from your group extension "
2266
+ "here. It will show on the group\n"
2267
+ "\t home screen."
2268
  msgstr ""
2269
 
2270
+ #: app/main/controllers/media/RTMediaAlbum.php:35
2271
+ msgid "Hidden (%s)"
2272
+ msgid_plural "Hidden (%s)"
2273
+ msgstr[0] ""
2274
+ msgstr[1] ""
2275
+
2276
+ #: app/main/controllers/media/RTMediaAlbum.php:50
2277
+ msgid "Create"
2278
  msgstr ""
2279
 
2280
+ #: app/main/controllers/media/RTMediaAlbum.php:51
2281
+ #: app/main/controllers/template/rt-template-functions.php:1780
2282
+ msgid "Create Album"
 
2283
  msgstr ""
2284
 
2285
+ #: app/main/controllers/media/RTMediaAlbum.php:52
2286
+ #: app/main/controllers/template/rt-template-functions.php:1860
2287
+ msgid "Edit Album"
2288
  msgstr ""
2289
 
2290
+ #: app/main/controllers/media/RTMediaAlbum.php:53
2291
+ msgid "New Album"
 
 
2292
  msgstr ""
2293
 
2294
+ #: app/main/controllers/media/RTMediaAlbum.php:54
2295
+ msgid "All Albums"
2296
  msgstr ""
2297
 
2298
+ #: app/main/controllers/media/RTMediaAlbum.php:55
2299
+ msgid "View Album"
 
 
2300
  msgstr ""
2301
 
2302
+ #: app/main/controllers/media/RTMediaAlbum.php:56
2303
+ msgid "Search Albums"
2304
  msgstr ""
2305
 
2306
+ #: app/main/controllers/media/RTMediaAlbum.php:57
2307
+ msgid "No album found"
 
 
2308
  msgstr ""
2309
 
2310
+ #: app/main/controllers/media/RTMediaAlbum.php:58
2311
+ msgid "No album found in Trash"
2312
  msgstr ""
2313
 
2314
+ #: app/main/controllers/media/RTMediaAlbum.php:59
2315
+ msgid "Parent"
2316
  msgstr ""
2317
 
2318
+ #: app/main/controllers/media/RTMediaAlbum.php:145
2319
+ msgid "Untitled Album"
 
 
 
2320
  msgstr ""
2321
 
2322
+ #: app/main/controllers/media/RTMediaFeatured.php:25
2323
+ #: app/main/controllers/media/RTMediaGroupFeatured.php:17
2324
+ msgid "Set as Featured"
 
 
2325
  msgstr ""
2326
 
2327
+ #: app/main/controllers/media/RTMediaFeatured.php:27
2328
+ #: app/main/controllers/media/RTMediaGroupFeatured.php:19
2329
+ msgid "Unset Featured"
2330
+ msgstr ""
2331
+
2332
+ #: app/main/controllers/media/RTMediaFeatured.php:184
2333
+ #: app/main/controllers/media/RTMediaGroupFeatured.php:194
2334
+ msgid "Media type is not allowed"
2335
+ msgstr ""
2336
+
2337
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:60
2338
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2339
+ msgid "Edit this media"
2340
+ msgstr ""
2341
+
2342
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:63
2343
+ #: app/main/controllers/media/RTMediaGalleryItemAction.php:80
2344
+ msgid "Delete this media"
2345
+ msgstr ""
2346
+
2347
+ #: app/main/controllers/media/RTMediaLike.php:18
2348
+ msgid "Like"
2349
+ msgstr ""
2350
+
2351
+ #: app/main/controllers/media/RTMediaLike.php:20
2352
+ msgid "Unlike"
2353
+ msgstr ""
2354
+
2355
+ #: app/main/controllers/media/RTMediaLoginPopup.php:38
2356
+ #: app/main/controllers/template/rt-template-functions.php:2154
2357
+ #: app/main/controllers/template/rt-template-functions.php:2158
2358
+ msgid "Upload Media"
2359
+ msgstr ""
2360
+
2361
+ #: app/main/controllers/media/RTMediaLoginPopup.php:47
2362
+ msgid "Please login"
2363
+ msgstr ""
2364
+
2365
+ #: app/main/controllers/media/RTMediaLoginPopup.php:49
2366
+ msgid "You need to be logged in to upload Media or to create Album."
2367
+ msgstr ""
2368
+
2369
+ #: app/main/controllers/media/RTMediaLoginPopup.php:52
2370
+ msgid "Login"
2371
+ msgstr ""
2372
+
2373
+ #: app/main/controllers/media/RTMediaLoginPopup.php:52
2374
+ msgid "HERE"
2375
+ msgstr ""
2376
+
2377
+ #: app/main/controllers/media/RTMediaLoginPopup.php:52
2378
+ msgid " to login."
2379
+ msgstr ""
2380
+
2381
+ #: app/main/controllers/media/RTMediaMedia.php:483
2382
+ msgid "Error creating attachment for the media file, please try again"
2383
+ msgstr ""
2384
+
2385
+ #: app/main/controllers/media/RTMediaMedia.php:585
2386
+ msgid "%1$s added a %2$s"
2387
+ msgstr ""
2388
+
2389
+ #: app/main/controllers/media/RTMediaMedia.php:585
2390
+ msgid "%1$s added %4$d %3$s"
2391
+ msgstr ""
2392
+
2393
+ #: app/main/controllers/privacy/RTMediaPrivacy.php:268
2394
+ msgid "Default Privacy"
2395
+ msgstr ""
2396
+
2397
+ #: app/main/controllers/shortcodes/RTMediaGalleryShortcode.php:182
2398
+ msgid "You do not have sufficient privileges to view this gallery"
2399
+ msgstr ""
2400
+
2401
+ #: app/main/controllers/shortcodes/RTMediaUploadShortcode.php:91
2402
+ msgid "The web browser on your device cannot be used to upload files."
2403
+ msgstr ""
2404
+
2405
+ #: app/main/controllers/template/RTMediaAJAX.php:33
2406
+ msgid "You can not create album in this group."
2407
+ msgstr ""
2408
+
2409
+ #: app/main/controllers/template/RTMediaAJAX.php:39
2410
+ msgid "You can not create album."
2411
  msgstr ""
2412
 
2413
+ #: app/main/controllers/template/RTMediaAJAX.php:44
2414
+ msgid "You can not create more albums, you exceed your album limit."
2415
  msgstr ""
2416
 
2417
+ #: app/main/controllers/template/RTMediaAJAX.php:89
2418
+ msgid "Data mismatch, Please insert data properly."
2419
  msgstr ""
2420
 
2421
+ #: app/main/controllers/template/RTMediaTemplate.php:97
2422
+ #: app/main/controllers/template/RTMediaTemplate.php:149
2423
+ msgid "Invalid attribute passed for rtmedia_gallery shortcode."
2424
  msgstr ""
2425
 
2426
+ #: app/main/controllers/template/RTMediaTemplate.php:327
2427
+ #: app/main/controllers/template/RTMediaTemplate.php:401
2428
+ #: app/main/controllers/template/RTMediaTemplate.php:490
2429
+ #: app/main/controllers/template/RTMediaTemplate.php:616
2430
+ msgid "Ooops !!! Invalid access. No nonce was found !!"
2431
  msgstr ""
2432
 
2433
+ #: app/main/controllers/template/RTMediaTemplate.php:334
2434
+ msgid "Media updated Sucessfully"
2435
  msgstr ""
2436
 
2437
+ #: app/main/controllers/template/RTMediaTemplate.php:340
2438
+ msgid "Error in updating Media"
2439
  msgstr ""
2440
 
2441
+ #: app/main/controllers/template/rt-template-functions.php:705
2442
+ #: app/main/controllers/template/rt-template-functions.php:1691
2443
+ msgid "Options"
2444
  msgstr ""
2445
 
2446
+ #: app/main/controllers/template/rt-template-functions.php:830
2447
+ msgid "Delete Comment"
2448
  msgstr ""
2449
 
2450
+ #: app/main/controllers/template/rt-template-functions.php:1026
2451
+ msgid "Go to page no : "
2452
  msgstr ""
2453
 
2454
+ #: app/main/controllers/template/rt-template-functions.php:1031
2455
+ msgid "Go"
2456
  msgstr ""
2457
 
2458
+ #: app/main/controllers/template/rt-template-functions.php:1204
2459
+ msgid "Video Thumbnail"
2460
  msgstr ""
2461
 
2462
+ #: app/main/controllers/template/rt-template-functions.php:1253
2463
+ msgid "Video Thumbnail:"
 
 
 
2464
  msgstr ""
2465
 
2466
+ #: app/main/controllers/template/rt-template-functions.php:1336
2467
+ msgid "Image"
2468
  msgstr ""
2469
 
2470
+ #: app/main/controllers/template/rt-template-functions.php:1353
2471
+ msgid "Modify Image"
2472
  msgstr ""
2473
 
2474
+ #: app/main/controllers/template/rt-template-functions.php:1428
2475
+ msgid "Type Comment..."
2476
  msgstr ""
2477
 
2478
+ #: app/main/controllers/template/rt-template-functions.php:1429
2479
+ #: templates/media/media-single.php:82 templates/media/media-single.php:122
2480
+ msgid "Comment"
2481
  msgstr ""
2482
 
2483
+ #: app/main/controllers/template/rt-template-functions.php:1465
2484
+ #: app/main/controllers/template/rt-template-functions.php:1472
2485
+ msgid "Delete Media"
2486
  msgstr ""
2487
 
2488
+ #: app/main/controllers/template/rt-template-functions.php:1633
2489
+ msgid "Profile Albums"
2490
  msgstr ""
2491
 
2492
+ #: app/main/controllers/template/rt-template-functions.php:1636
2493
+ #: app/main/controllers/template/rt-template-functions.php:1670
2494
+ msgid "Group Albums"
2495
  msgstr ""
2496
 
2497
+ #: app/main/controllers/template/rt-template-functions.php:1754
2498
+ msgid "Create New Album"
2499
  msgstr ""
2500
 
2501
+ #: app/main/controllers/template/rt-template-functions.php:1754
2502
+ msgid "Add Album"
 
 
 
2503
  msgstr ""
2504
 
2505
+ #: app/main/controllers/template/rt-template-functions.php:1770
2506
+ msgid "Create an Album"
2507
  msgstr ""
2508
 
2509
+ #: app/main/controllers/template/rt-template-functions.php:1772
2510
+ msgid "Album Title : "
2511
  msgstr ""
2512
 
2513
+ #: app/main/controllers/template/rt-template-functions.php:1811
2514
+ #: app/main/controllers/template/rt-template-functions.php:1818
2515
+ #: app/main/controllers/template/rt-template-functions.php:1870
2516
+ msgid "Merge Album"
 
 
 
2517
  msgstr ""
2518
 
2519
+ #: app/main/controllers/template/rt-template-functions.php:1814
2520
+ msgid "Select Album to merge with : "
 
 
 
2521
  msgstr ""
2522
 
2523
+ #: app/main/controllers/template/rt-template-functions.php:1861
2524
+ msgid "Delete Album"
2525
  msgstr ""
2526
 
2527
+ #: app/main/controllers/template/rt-template-functions.php:1898
2528
+ msgid "Merge"
2529
  msgstr ""
2530
 
2531
+ #: app/main/controllers/template/rt-template-functions.php:1951
2532
+ msgid "Privacy : "
2533
  msgstr ""
2534
 
2535
+ #: app/main/controllers/template/rt-template-functions.php:2142
2536
+ msgid "people like this"
2537
  msgstr ""
2538
 
2539
+ #: app/main/controllers/template/rt-template-functions.php:2215
2540
+ msgid "Empowering your community with "
 
 
 
2541
  msgstr ""
2542
 
2543
+ #: app/main/controllers/template/rt-template-functions.php:2217
2544
+ msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2545
  msgstr ""
2546
 
2547
+ #: app/main/controllers/template/rt-template-functions.php:2232
2548
+ msgid "Close (Esc)"
 
 
2549
  msgstr ""
2550
 
2551
+ #: app/main/controllers/template/rt-template-functions.php:2246
2552
+ msgid "Public"
2553
  msgstr ""
2554
 
2555
+ #: app/main/controllers/template/rt-template-functions.php:2250
2556
+ msgid "All members"
2557
  msgstr ""
2558
 
2559
+ #: app/main/controllers/template/rt-template-functions.php:2254
2560
+ msgid "Your friends"
2561
  msgstr ""
2562
 
2563
+ #: app/main/controllers/template/rt-template-functions.php:2258
2564
+ msgid "Only you"
2565
  msgstr ""
2566
 
2567
+ #: app/main/controllers/template/rt-template-functions.php:2262
2568
+ msgid "Blocked temporarily"
2569
  msgstr ""
2570
 
2571
+ #: app/main/controllers/template/rt-template-functions.php:2299
2572
+ msgid "%s ago "
2573
  msgstr ""
2574
 
2575
+ #: app/main/controllers/template/rt-template-functions.php:2312
2576
+ msgid "1 second"
2577
+ msgid_plural "%s seconds"
2578
+ msgstr[0] ""
2579
+ msgstr[1] ""
2580
+
2581
+ #: app/main/controllers/template/rt-template-functions.php:2315
2582
+ msgid "1 minute"
2583
+ msgid_plural "%s minutes"
2584
+ msgstr[0] ""
2585
+ msgstr[1] ""
2586
+
2587
+ #: app/main/controllers/template/rt-template-functions.php:2318
2588
+ msgid "1 hour"
2589
+ msgid_plural "%s hours"
2590
+ msgstr[0] ""
2591
+ msgstr[1] ""
2592
+
2593
+ #: app/main/controllers/template/rt-template-functions.php:2673
2594
+ #. translators: date format, see http:php.net/date
2595
+ msgid "You can consider rtMedia Team for following :"
2596
  msgstr ""
2597
 
2598
+ #: app/main/controllers/template/rt-template-functions.php:2676
2599
+ msgid "rtMedia Customization ( in Upgrade Safe manner )"
2600
  msgstr ""
2601
 
2602
+ #: app/main/controllers/template/rt-template-functions.php:2677
2603
+ msgid "WordPress/BuddyPress Theme Design and Development"
 
 
 
 
2604
  msgstr ""
2605
 
2606
+ #: app/main/controllers/template/rt-template-functions.php:2678
2607
+ msgid "WordPress/BuddyPress Plugin Development"
2608
  msgstr ""
2609
 
2610
+ #: app/main/controllers/template/rt-template-functions.php:2682
2611
+ msgid "Contact Us"
2612
  msgstr ""
2613
 
2614
+ #: app/main/controllers/upload/RTMediaUploadView.php:70
2615
+ msgid "Privacy: "
 
 
 
2616
  msgstr ""
2617
 
2618
+ #: app/main/controllers/upload/RTMediaUploadView.php:77
2619
+ #: app/main/controllers/upload/RTMediaUploadView.php:111
2620
+ #: app/main/controllers/upload/RTMediaUploadView.php:128
2621
+ msgid "File Upload"
2622
  msgstr ""
2623
 
2624
+ #: app/main/controllers/upload/RTMediaUploadView.php:81
2625
+ msgid "Select your files"
2626
  msgstr ""
2627
 
2628
+ #: app/main/controllers/upload/RTMediaUploadView.php:82
2629
+ msgid "or"
 
 
 
 
2630
  msgstr ""
2631
 
2632
+ #: app/main/controllers/upload/RTMediaUploadView.php:82
2633
+ msgid "Drop your files here"
2634
  msgstr ""
2635
 
2636
+ #: app/main/controllers/upload/RTMediaUploadView.php:119
2637
+ msgid "Start upload"
 
 
 
2638
  msgstr ""
2639
 
2640
+ #: app/main/controllers/upload/RTMediaUploadView.php:135
2641
+ msgid "Attach Media"
 
 
2642
  msgstr ""
2643
 
2644
+ #: app/main/controllers/upload/RTMediaUploadView.php:150
2645
+ msgid "Insert from URL"
2646
  msgstr ""
2647
 
2648
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:59
2649
+ msgid "Error Uploading File"
 
 
2650
  msgstr ""
2651
 
2652
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:213
2653
+ msgid "MP4 file you have uploaded is corrupt."
2654
  msgstr ""
2655
 
2656
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:220
2657
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:225
2658
+ msgid ""
2659
+ "The MP4 file you have uploaded is using an unsupported video codec. "
2660
+ "Supported video codec is H.264."
2661
  msgstr ""
2662
 
2663
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:230
2664
+ msgid "The MP4 file you have uploaded is not a video file."
2665
  msgstr ""
2666
 
2667
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:243
2668
+ msgid "MP3 file you have uploaded is currupt."
2669
  msgstr ""
2670
 
2671
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:250
2672
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:255
2673
+ msgid ""
2674
+ "The MP3 file you have uploaded is using an unsupported audio format. "
2675
+ "Supported audio format is MP3."
2676
  msgstr ""
2677
 
2678
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:260
2679
+ msgid "The MP3 file you have uploaded is not an audio file."
2680
  msgstr ""
2681
 
2682
+ #: app/main/controllers/upload/processors/RTMediaUploadFile.php:268
2683
+ msgid ""
2684
+ "Media File you have tried to upload is not supported. Supported media files "
2685
+ "are .jpg, .png, .gif, .mp3, .mov and .mp4."
2686
  msgstr ""
2687
 
2688
+ #: app/main/deprecated/RTMediaDeprecated.php:27
2689
+ msgid "Deprecated %s. Please use %s."
2690
  msgstr ""
2691
 
2692
+ #: app/services/RTMediaEncoding.php:156
2693
  msgid "rtMedia Encoding: Nearing quota limit."
2694
  msgstr ""
2695
 
2696
+ #: app/services/RTMediaEncoding.php:157
 
2697
  msgid ""
2698
+ "<p>You are nearing the quota limit for your rtMedia encoding "
2699
+ "service.</p><p>Following are the details:</p><p><strong>Used:</strong> "
2700
+ "%s</p><p><strong>Remaining</strong>: %s</p><p><strong>Total:</strong> %s</p>"
2701
  msgstr ""
2702
 
2703
+ #: app/services/RTMediaEncoding.php:171
2704
  msgid "rtMedia Encoding: Usage quota over."
2705
  msgstr ""
2706
 
2707
+ #: app/services/RTMediaEncoding.php:172
 
2708
  msgid ""
2709
  "<p>Your usage quota is over. Upgrade your plan</p><p>Following are the "
2710
  "details:</p><p><strong>Used:</strong> %s</p><p><strong>Remaining</strong>: "
2711
  "%s</p><p><strong>Total:</strong> %s</p>"
2712
  msgstr ""
2713
 
2714
+ #: app/services/RTMediaEncoding.php:233
 
2715
  msgid "You have successfully subscribed for the <strong>%s</strong> plan"
2716
  msgstr ""
2717
 
2718
+ #: app/services/RTMediaEncoding.php:245
2719
  msgid "Unsubscribe"
2720
  msgstr ""
2721
 
2722
+ #: app/services/RTMediaEncoding.php:247
2723
  msgid ""
2724
  "Just to improve our service we would like to know the reason for you to "
2725
  "leave us."
2726
  msgstr ""
2727
 
2728
+ #: app/services/RTMediaEncoding.php:296 app/services/RTMediaEncoding.php:398
 
2729
  msgid "Current Plan"
2730
  msgstr ""
2731
 
2732
+ #: app/services/RTMediaEncoding.php:296
2733
  msgid "Unsubscribed"
2734
  msgstr ""
2735
 
2736
+ #: app/services/RTMediaEncoding.php:298
2737
  msgid "Used"
2738
  msgstr ""
2739
 
2740
+ #: app/services/RTMediaEncoding.php:300
2741
  msgid "Remaining"
2742
  msgstr ""
2743
 
2744
+ #: app/services/RTMediaEncoding.php:302
2745
  msgid "Total"
2746
  msgstr ""
2747
 
2748
+ #: app/services/RTMediaEncoding.php:306
2749
  msgid "Your usage limit has been reached. Upgrade your plan."
2750
  msgstr ""
2751
 
2752
+ #: app/services/RTMediaEncoding.php:308
2753
  msgid "Your API key is not valid or is expired."
2754
  msgstr ""
2755
 
2756
+ #: app/services/RTMediaEncoding.php:310
2757
  msgid "Encoding Usage"
2758
  msgstr ""
2759
 
2760
+ #: app/services/RTMediaEncoding.php:316
2761
  msgid "Audio/Video encoding service"
2762
  msgstr ""
2763
 
2764
+ #: app/services/RTMediaEncoding.php:318
2765
  msgid "rtMedia team has started offering an audio/video encoding service."
2766
  msgstr ""
2767
 
2768
+ #: app/services/RTMediaEncoding.php:321
2769
  msgid "Enter API KEY"
2770
  msgstr ""
2771
 
2772
+ #: app/services/RTMediaEncoding.php:323
2773
  msgid "Save Key"
2774
  msgstr ""
2775
 
2776
+ #: app/services/RTMediaEncoding.php:344
2777
  msgid "Feature\\Plan"
2778
  msgstr ""
2779
 
2780
+ #: app/services/RTMediaEncoding.php:345 app/services/RTMediaEncoding.php:388
 
2781
  msgid "Free"
2782
  msgstr ""
2783
 
2784
+ #: app/services/RTMediaEncoding.php:346
2785
  msgid "Silver"
2786
  msgstr ""
2787
 
2788
+ #: app/services/RTMediaEncoding.php:347
2789
  msgid "Gold"
2790
  msgstr ""
2791
 
2792
+ #: app/services/RTMediaEncoding.php:348
2793
  msgid "Platinum"
2794
  msgstr ""
2795
 
2796
+ #: app/services/RTMediaEncoding.php:354
2797
  msgid "File Size Limit"
2798
  msgstr ""
2799
 
2800
+ #: app/services/RTMediaEncoding.php:359
2801
  msgid "Bandwidth (monthly)"
2802
  msgstr ""
2803
 
2804
+ #: app/services/RTMediaEncoding.php:366
2805
  msgid "Overage Bandwidth"
2806
  msgstr ""
2807
 
2808
+ #: app/services/RTMediaEncoding.php:367 app/services/RTMediaEncoding.php:374
2809
+ #: app/services/RTMediaEncoding.php:379
 
2810
  msgid "Not Available"
2811
  msgstr ""
2812
 
2813
+ #: app/services/RTMediaEncoding.php:373
2814
  msgid "Amazon S3 Support"
2815
  msgstr ""
2816
 
2817
+ #: app/services/RTMediaEncoding.php:375 app/services/RTMediaEncoding.php:380
2818
+ #: app/services/RTMediaEncoding.php:384
 
2819
  msgid "Coming Soon"
2820
  msgstr ""
2821
 
2822
+ #: app/services/RTMediaEncoding.php:378
2823
  msgid "HD Profile"
2824
  msgstr ""
2825
 
2826
+ #: app/services/RTMediaEncoding.php:383
2827
  msgid "Webcam Recording"
2828
  msgstr ""
2829
 
2830
+ #: app/services/RTMediaEncoding.php:387
2831
  msgid "Pricing"
2832
  msgstr ""
2833
 
2834
+ #: app/services/RTMediaEncoding.php:389
2835
  msgid "$9/month"
2836
  msgstr ""
2837
 
2838
+ #: app/services/RTMediaEncoding.php:390
2839
  msgid "$99/month"
2840
  msgstr ""
2841
 
2842
+ #: app/services/RTMediaEncoding.php:391
2843
  msgid "$999/month"
2844
  msgstr ""
2845
 
2846
+ #: app/services/RTMediaEncoding.php:402
2847
  msgid "Try Now"
2848
  msgstr ""
2849
 
2850
+ #: app/services/RTMediaEncoding.php:550
2851
  msgid "Could not read file."
2852
  msgstr ""
2853
 
2854
+ #: app/services/RTMediaEncoding.php:554
2855
  msgid ""
2856
  "Something went wrong. The required attachment id does not exists. It must "
2857
  "have been deleted."
2858
  msgstr ""
2859
 
2860
+ #: app/services/RTMediaEncoding.php:569
2861
  msgid "rtMedia Encoding: Download Failed"
2862
  msgstr ""
2863
 
2864
+ #: app/services/RTMediaEncoding.php:570
 
2865
  msgid ""
2866
  "<p><a href=\"%s\">Media</a> was successfully encoded but there was an error "
2867
  "while downloading:</p>\n"
2868
  " <p><code>%s</code></p>\n"
2869
+ " <p>You can <a href=\"%s\">retry the "
2870
+ "download</a>.</p>"
2871
  msgstr ""
2872
 
2873
+ #: app/services/RTMediaEncoding.php:584
2874
  msgid "Done"
2875
  msgstr ""
2876
 
2877
+ #: app/services/RTMediaEncoding.php:609 app/services/RTMediaEncoding.php:631
 
2878
  msgid "Something went wrong please try again."
2879
  msgstr ""
2880
 
2881
+ #: app/services/RTMediaEncoding.php:628
2882
  msgid "Your subscription was cancelled successfully"
2883
  msgstr ""
2884
 
2885
+ #: app/services/RTMediaEncoding.php:640
2886
  msgid "Please enter the api key."
2887
  msgstr ""
2888
 
2889
+ #: app/services/RTMediaEncoding.php:647
2890
  msgid "Encoding disabled successfully."
2891
  msgstr ""
2892
 
2893
+ #: app/services/RTMediaEncoding.php:653
2894
  msgid "Encoding enabled successfully."
2895
  msgstr ""
2896
 
2897
+ #: templates/media/album-gallery.php:14
2898
+ msgid "Album List"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2899
  msgstr ""
2900
 
2901
+ #: templates/media/album-gallery.php:64 templates/media/media-single.php:146
2902
+ msgid "Sorry !! There's no media found for the request !!"
2903
  msgstr ""
2904
 
2905
+ #: templates/media/album-single-edit.php:12
2906
+ #: templates/media/media-single-edit.php:10
2907
+ msgid "Edit Album : "
2908
  msgstr ""
2909
 
2910
+ #: templates/media/album-single-edit.php:18
2911
+ #: templates/media/media-single-edit.php:16
2912
+ msgid "Manage Media"
2913
  msgstr ""
2914
 
2915
+ #: templates/media/album-single-edit.php:35
2916
+ #: templates/media/media-single-edit.php:33
2917
+ msgid "Title : "
2918
  msgstr ""
2919
 
2920
+ #: templates/media/album-single-edit.php:40
2921
+ #: templates/media/media-single-edit.php:38
2922
+ msgid "Description: "
2923
  msgstr ""
2924
 
2925
+ #: templates/media/album-single-edit.php:51
2926
+ #: templates/media/media-single-edit.php:49
2927
+ msgid "Back"
2928
  msgstr ""
2929
 
2930
+ #: templates/media/album-single-edit.php:66
2931
+ #: templates/media/media-single-edit.php:64
2932
+ msgid "Move Selected media to another album."
2933
  msgstr ""
2934
 
2935
+ #: templates/media/album-single-edit.php:66
2936
+ #: templates/media/media-single-edit.php:64
2937
+ msgid "Move"
2938
  msgstr ""
2939
 
2940
+ #: templates/media/album-single-edit.php:68
2941
+ #: templates/media/media-single-edit.php:66
2942
+ msgid "Delete Selected media from the album."
2943
  msgstr ""
2944
 
2945
+ #: templates/media/album-single-edit.php:73
2946
+ #: templates/media/media-single-edit.php:71
2947
+ msgid "Move selected media to the album : "
2948
  msgstr ""
2949
 
2950
+ #: templates/media/album-single-edit.php:75
2951
+ #: templates/media/media-single-edit.php:73
2952
+ msgid "Move Selected"
2953
  msgstr ""
2954
 
2955
+ #: templates/media/album-single-edit.php:97
2956
+ #: templates/media/media-single-edit.php:95
2957
+ msgid "Prev"
2958
  msgstr ""
2959
 
2960
+ #: templates/media/album-single-edit.php:106
2961
+ #: templates/media/media-single-edit.php:104
2962
+ msgid "Next"
2963
  msgstr ""
2964
 
2965
+ #: templates/media/album-single-edit.php:109
2966
+ #: templates/media/media-single-edit.php:107
2967
+ msgid "The album is empty."
 
2968
  msgstr ""
2969
 
2970
+ #: templates/media/album-single-edit.php:119
2971
+ #: templates/media/media-single-edit.php:117
2972
+ msgid "Sorry !! You can not edit this album."
2973
  msgstr ""
2974
 
2975
+ #: templates/media/media-gallery.php:9 templates/media/media-gallery.php:25
2976
+ msgid "Media Gallery"
2977
  msgstr ""
2978
 
2979
+ #: templates/media/media-gallery.php:73
2980
+ msgid "Oops !! There's no media found for the request !!"
2981
  msgstr ""
2982
 
2983
+ #: templates/media/media-single.php:35
2984
+ msgid "under"
 
 
2985
  msgstr ""
2986
 
2987
+ #. Plugin Name of the plugin/theme
2988
+ msgid "rtMedia for WordPress, BuddyPress and bbPress"
2989
  msgstr ""
2990
 
2991
+ #. Plugin URI of the plugin/theme
2992
  msgid ""
2993
+ "http://rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_"
2994
+ "campaign=buddypress-media"
2995
  msgstr ""
2996
 
2997
+ #. Description of the plugin/theme
2998
  msgid ""
2999
+ "This plugin adds missing media rich features like photos, videos and audio "
3000
+ "uploading to BuddyPress which are essential if you are building social "
3001
+ "network, seriously!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3002
  msgstr ""
3003
 
3004
+ #. Author URI of the plugin/theme
3005
  msgid ""
3006
+ "http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign="
3007
+ "buddypress-media"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3008
  msgstr ""
3009
 
3010
+ #: app/main/controllers/media/RTMediaAlbum.php:35
3011
+ msgctxt "Status General Name"
3012
+ msgid "hidden"
 
 
 
 
 
 
 
 
 
 
 
3013
  msgstr ""
3014
 
3015
+ #: app/main/controllers/template/RTMediaNav.php:32
3016
+ msgctxt "My Account Privacy sub nav"
3017
+ msgid "Privacy"
3018
+ msgstr ""
package.json CHANGED
@@ -1,13 +1,16 @@
1
  {
2
- "name": "rtMedia",
3
- "dependencies": {
4
- "load-grunt-tasks": "~0.2.1"
5
- },
6
- "devDependencies": {
7
- "grunt": "^0.4.5",
8
- "grunt-contrib-compass": "^1.0.1",
9
- "grunt-contrib-uglify": "^0.6.0",
10
- "grunt-contrib-watch": "^0.6.1",
11
- "load-grunt-tasks": "^2.0.0"
12
- }
13
- }
 
 
 
1
  {
2
+ "name" : "rtMedia",
3
+ "dependencies" : {
4
+ "load-grunt-tasks" : "~0.2.1"
5
+ },
6
+ "devDependencies" : {
7
+ "grunt" : "^0.4.5",
8
+ "grunt-autoprefixer" : "^3.0.0",
9
+ "grunt-checktextdomain" : "^1.0.0",
10
+ "grunt-contrib-sass" : "^0.9.2",
11
+ "grunt-contrib-uglify" : "^0.9.1",
12
+ "grunt-contrib-watch" : "^0.6.1",
13
+ "grunt-wp-i18n" : "^0.5.2",
14
+ "load-grunt-tasks" : "^3.2.0"
15
+ }
16
+ }
readme.txt CHANGED
@@ -5,8 +5,8 @@ Tags: BuddyPress, media, multimedia, album, audio, songs, music, video, photo, i
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
- Tested up to: WordPress 4.2.2 + BuddyPress 2.3.2.1
9
- Stable tag: 3.8.11
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
12
 
@@ -140,6 +140,14 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
140
 
141
  == Changelog ==
142
 
 
 
 
 
 
 
 
 
143
  = 3.8.11 =
144
  * Update album edit template
145
  * Fix BuddyPress activity content on media edit
@@ -1035,8 +1043,8 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
1035
 
1036
  == Upgrade Notice ==
1037
 
1038
- = 3.8.11 =
1039
- Requires BuddyPress 1.7 or higher, if using BuddyPress. Update album edit template, fix BuddyPress activity content on media edit, autoplay video in lightbox.
1040
 
1041
  == Sponsors ==
1042
 
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
+ Tested up to: WordPress 4.2.3 + BuddyPress 2.3.2.1
9
+ Stable tag: 3.8.12
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
12
 
140
 
141
  == Changelog ==
142
 
143
+ = 3.8.12 =
144
+ * Updated media gallery actions for BuddyPress groups
145
+ * Updated action messages for single media
146
+ * Updated view count process
147
+ * Added SCRIPT_DEBUG support
148
+ * Fixed bugs in admin settings
149
+ * Bug fixes
150
+
151
  = 3.8.11 =
152
  * Update album edit template
153
  * Fix BuddyPress activity content on media edit
1043
 
1044
  == Upgrade Notice ==
1045
 
1046
+ = 3.8.12 =
1047
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Added SCRIPT_DEBUG support, Bug fixes.
1048
 
1049
  == Sponsors ==
1050
 
templates/media/album-single-edit.php CHANGED
@@ -48,6 +48,7 @@ $rtmedia_media = $media[ 0 ];
48
 
49
  <div>
50
  <input type="submit" name="submit" class='rtmedia-save-album' value="<?php _e( 'Save Changes', 'rtmedia' ); ?>" />
 
51
  </div>
52
  </form>
53
  </div>
@@ -62,9 +63,9 @@ $rtmedia_media = $media[ 0 ];
62
  <?php RTMediaMedia::media_nonce_generator( $rtmedia_query->media_query[ 'album_id' ] ); ?>
63
  <p>
64
  <span><input type="checkbox" name="rtm-select-all" class="select-all" title="<?php _e( 'Select All Visible', 'rtmedia' ); ?>" /></span>
65
- <button class="button rtmedia-move" type='button' title='<?php echo __( 'Move Selected media to another album.' ); ?>' ><?php _e( 'Move', 'rtmedia' ); ?></button>
66
  <input type="hidden" name="move-selected" value="move">
67
- <button type="button" name="delete-selected" class="button rtmedia-delete-selected" title='<?php echo __( 'Delete Selected media from the album.' ); ?>'><?php _e( 'Delete', 'rtmedia' ); ?></button>
68
  </p>
69
 
70
  <p class="rtmedia-move-container">
48
 
49
  <div>
50
  <input type="submit" name="submit" class='rtmedia-save-album' value="<?php _e( 'Save Changes', 'rtmedia' ); ?>" />
51
+ <a class="button rtm-button rtm-button-back" href="<?php rtmedia_permalink(); ?>"><?php _e( 'Back', 'rtmedia' ); ?></a>
52
  </div>
53
  </form>
54
  </div>
63
  <?php RTMediaMedia::media_nonce_generator( $rtmedia_query->media_query[ 'album_id' ] ); ?>
64
  <p>
65
  <span><input type="checkbox" name="rtm-select-all" class="select-all" title="<?php _e( 'Select All Visible', 'rtmedia' ); ?>" /></span>
66
+ <button class="button rtmedia-move" type='button' title='<?php echo __( 'Move Selected media to another album.', 'rtmedia' ); ?>' ><?php _e( 'Move', 'rtmedia' ); ?></button>
67
  <input type="hidden" name="move-selected" value="move">
68
+ <button type="button" name="delete-selected" class="button rtmedia-delete-selected" title='<?php echo __( 'Delete Selected media from the album.', 'rtmedia' ); ?>'><?php _e( 'Delete', 'rtmedia' ); ?></button>
69
  </p>
70
 
71
  <p class="rtmedia-move-container">
templates/media/media-single-edit.php CHANGED
@@ -1,69 +1,69 @@
1
  <div class="rtmedia-container rtmedia-single-container rtmedia-media-edit">
2
- <?php
3
- if ( have_rtmedia() ) : rtmedia();
4
- if ( rtmedia_edit_allowed() ) {
5
- global $rtmedia_media;
6
- ?>
7
- <div class="rtmedia-single-edit-title-container">
8
- <h2 class="rtmedia-title"><?php echo __( 'Edit Media', 'rtmedia' ); ?></h2>
9
- </div>
10
- <form method="post" action="" name="rtmedia_media_single_edit" id="rtmedia_media_single_edit" class="rtm-form">
11
- <div class="rtmedia-editor-main">
12
- <ul class="rtm-tabs clearfix">
13
- <li class="active">
14
- <a href="#panel1">
15
- <i class='dashicons dashicons-edit rtmicon'></i>
16
- <?php _e( 'Details', 'rtmedia' ); ?>
17
- </a>
18
- </li>
19
- <!-- use this hook to add title of a new tab-->
20
- <?php do_action( 'rtmedia_add_edit_tab_title', rtmedia_type() ); ?>
21
- </ul>
22
- <div class="rtm-tabs-content">
23
- <div class="content" id="panel1">
24
- <!-- First tab i.e Details tab. Active by default-->
25
- <div class="rtmedia-edit-title rtm-field-wrap">
26
- <label><?php _e( 'Title : ', 'rtmedia' ); ?></label>
27
- <?php rtmedia_title_input(); ?>
28
- </div>
29
- <!--This function shows the privacy dropdown-->
30
- <?php echo rtmedia_edit_media_privacy_ui(); ?>
31
- <div class="rtmedia-editor-description rtm-field-wrap">
32
- <label><?php _e( 'Description: ', 'rtmedia' ) ?></label>
33
- <?php
34
- echo rtmedia_description_input( $editor = false );
35
-
36
- RTMediaMedia::media_nonce_generator( rtmedia_id() );
37
- ?>
38
- </div>
39
- <!-- Use this hook to add new fields to the edit form-->
40
- <?php do_action( 'rtmedia_add_edit_fields', rtmedia_type() ); ?>
41
- </div>
42
- <!-- use this hook to add content of a new tab-->
43
- <?php do_action( 'rtmedia_add_edit_tab_content', rtmedia_type() ); ?>
44
- </div>
45
- <div class="rtmedia-editor-buttons">
46
- <input type="submit" class="button rtm-button rtm-button-save" value="<?php _e( 'Save', 'rtmedia' ); ?>" />
47
- <a class="button rtm-button rtm-button-back" href="<?php rtmedia_permalink(); ?>"><?php _e( 'Back', 'rtmedia' ); ?></a>
48
- </div>
49
- </div>
50
- </form>
51
- <?php
52
- } else {
53
- ?>
54
- <p><?php echo __( "Sorry !! You do not have rights to edit this media", "rtmedia" ); ?></p>
55
- <?php
56
- }
57
- else:
58
- ?>
59
- <p class="rtmedia-no-media-found">
60
- <?php
61
- $message = __( "Sorry !! There's no media found for the request !!", "rtmedia" );
62
-
63
- echo apply_filters( 'rtmedia_no_media_found_message_filter', $message );
64
- ?>
65
- </p>
66
- <?php
67
- endif;
68
- ?>
69
  </div>
1
  <div class="rtmedia-container rtmedia-single-container rtmedia-media-edit">
2
+ <?php
3
+ if ( have_rtmedia() ) : rtmedia();
4
+ if ( rtmedia_edit_allowed() ) {
5
+ global $rtmedia_media;
6
+ ?>
7
+ <div class="rtmedia-single-edit-title-container">
8
+ <h2 class="rtmedia-title"><?php echo __( 'Edit Media', 'rtmedia' ); ?></h2>
9
+ </div>
10
+ <form method="post" action="" name="rtmedia_media_single_edit" id="rtmedia_media_single_edit" class="rtm-form">
11
+ <div class="rtmedia-editor-main">
12
+ <ul class="rtm-tabs clearfix">
13
+ <li class="active">
14
+ <a href="#panel1">
15
+ <i class='dashicons dashicons-edit rtmicon'></i>
16
+ <?php _e( 'Details', 'rtmedia' ); ?>
17
+ </a>
18
+ </li>
19
+ <!-- use this hook to add title of a new tab-->
20
+ <?php do_action( 'rtmedia_add_edit_tab_title', rtmedia_type() ); ?>
21
+ </ul>
22
+ <div class="rtm-tabs-content">
23
+ <div class="content" id="panel1">
24
+ <!-- First tab i.e Details tab. Active by default-->
25
+ <div class="rtmedia-edit-title rtm-field-wrap">
26
+ <label><?php _e( 'Title : ', 'rtmedia' ); ?></label>
27
+ <?php rtmedia_title_input(); ?>
28
+ </div>
29
+ <!--This function shows the privacy dropdown-->
30
+ <?php echo rtmedia_edit_media_privacy_ui(); ?>
31
+ <div class="rtmedia-editor-description rtm-field-wrap">
32
+ <label><?php _e( 'Description: ', 'rtmedia' ) ?></label>
33
+ <?php
34
+ echo rtmedia_description_input( $editor = false );
35
+
36
+ RTMediaMedia::media_nonce_generator( rtmedia_id() );
37
+ ?>
38
+ </div>
39
+ <!-- Use this hook to add new fields to the edit form-->
40
+ <?php do_action( 'rtmedia_add_edit_fields', rtmedia_type() ); ?>
41
+ </div>
42
+ <!-- use this hook to add content of a new tab-->
43
+ <?php do_action( 'rtmedia_add_edit_tab_content', rtmedia_type() ); ?>
44
+ </div>
45
+ <div class="rtmedia-editor-buttons">
46
+ <input type="submit" class="button rtm-button rtm-button-save" value="<?php _e( 'Save', 'rtmedia' ); ?>" />
47
+ <a class="button rtm-button rtm-button-back" href="<?php rtmedia_permalink(); ?>"><?php _e( 'Back', 'rtmedia' ); ?></a>
48
+ </div>
49
+ </div>
50
+ </form>
51
+ <?php
52
+ } else {
53
+ ?>
54
+ <p><?php echo __( "Sorry !! You do not have rights to edit this media", "rtmedia" ); ?></p>
55
+ <?php
56
+ }
57
+ else:
58
+ ?>
59
+ <p class="rtmedia-no-media-found">
60
+ <?php
61
+ $message = __( "Sorry !! There's no media found for the request !!", "rtmedia" );
62
+
63
+ echo apply_filters( 'rtmedia_no_media_found_message_filter', $message );
64
+ ?>
65
+ </p>
66
+ <?php
67
+ endif;
68
+ ?>
69
  </div>