rtMedia for WordPress, BuddyPress and bbPress - Version 3.6.3

Version Description

  • Fix lightbox issue after load more activity
  • Update German and Russian language files
  • Bug fixes
Download this release

Release Info

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

Code changes from version 3.6.2 to 3.6.3

app/assets/js/rtMedia.js CHANGED
@@ -94,6 +94,7 @@ function apply_rtMagnificPopup(selector){
94
  },
95
  close: function(e) {
96
  //console.log(e);
 
97
  },
98
  BeforeChange: function(e) {
99
  //console.log(e);
@@ -136,6 +137,18 @@ var rtMediaHook = {
136
  return true;
137
  }
138
  }
 
 
 
 
 
 
 
 
 
 
 
 
139
  jQuery('document').ready(function($) {
140
 
141
  // open magnific popup as modal for create album/playlist
@@ -172,6 +185,24 @@ jQuery('document').ready(function($) {
172
  apply_rtMagnificPopup('.rtmedia-list-media, .rtmedia-activity-container ul.rtmedia-list, #bp-media-list,.widget-item-listing,.bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content, .rtm-bbp-container');
173
  }
174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  jQuery('.rtmedia-container').on('click', '.select-all', function(e) {
176
  e.preventDefault();
177
  jQuery(this).toggleClass('unselect-all').toggleClass('select-all');
@@ -180,6 +211,7 @@ jQuery('document').ready(function($) {
180
  jQuery('.rtmedia-list input').each(function() {
181
  jQuery(this).prop('checked', true);
182
  });
 
183
  });
184
 
185
  jQuery('.rtmedia-container').on('click', '.unselect-all', function(e) {
@@ -190,6 +222,7 @@ jQuery('document').ready(function($) {
190
  jQuery('.rtmedia-list input').each(function() {
191
  jQuery(this).prop('checked', false);
192
  });
 
193
  });
194
 
195
  jQuery('.rtmedia-container').on('click', '.rtmedia-move', function(e) {
@@ -313,7 +346,7 @@ jQuery('document').ready(function($) {
313
  jQuery('.mfp-content .rtm-lightbox-container .rtmedia-single-meta, .mfp-content .rtm-lightbox-container #rtmedia-single-media-container .rtmedia-media, .rtm-lightbox-container .mejs-video').css({ 'height' : height*0.8, 'max-height' : height*0.8, 'over-flow' : 'hidden' });
314
  //mejs-video
315
  //init the options dropdown menu
316
- init_action_dropdown();
317
  //get focus on comment textarea when comment-link is clicked
318
  jQuery('.rtmedia-comment-link').on('click', function(e){
319
  e.preventDefault();
@@ -414,17 +447,7 @@ jQuery('document').ready(function($) {
414
  // jQuery('#rtm-media-gallery-uploader').slideToggle();
415
  // });
416
 
417
- //drop-down js
418
- function init_action_dropdown() {
419
- $('.click-nav > span').toggleClass('no-js js');
420
- $('.click-nav .js ul').hide();
421
- $('.click-nav .clicker').click(function(e) {
422
- $(this).next('ul').toggle();
423
- //$('.click-nav ul').toggle();
424
- e.stopPropagation();
425
- });
426
- }
427
- init_action_dropdown();
428
  $(document).click(function() {
429
  if ($('.click-nav ul').is(':visible')) {
430
  $('.click-nav ul', this).hide();
94
  },
95
  close: function(e) {
96
  //console.log(e);
97
+ rtmedia_init_action_dropdown();
98
  },
99
  BeforeChange: function(e) {
100
  //console.log(e);
137
  return true;
138
  }
139
  }
140
+
141
+ //drop-down js
142
+ function rtmedia_init_action_dropdown() {
143
+ jQuery('.click-nav > span').toggleClass('no-js js');
144
+ jQuery('.click-nav .js ul').hide();
145
+ jQuery('.click-nav .clicker').click(function(e) {
146
+ jQuery(this).next('ul').toggle();
147
+ //$('.click-nav ul').toggle();
148
+ e.stopPropagation();
149
+ });
150
+ }
151
+
152
  jQuery('document').ready(function($) {
153
 
154
  // open magnific popup as modal for create album/playlist
185
  apply_rtMagnificPopup('.rtmedia-list-media, .rtmedia-activity-container ul.rtmedia-list, #bp-media-list,.widget-item-listing,.bp-media-sc-list, li.media.album_updated ul,ul.bp-media-list-media, li.activity-item div.activity-content div.activity-inner div.bp_media_content, .rtm-bbp-container');
186
  }
187
 
188
+ jQuery.ajaxPrefilter(function(options, originalOptions, jqXHR) {
189
+ try{
190
+ if (originalOptions.data == null || typeof(originalOptions.data) == "undefined" || typeof(originalOptions.data.action) == "undefined" ) {
191
+ return true;
192
+ }
193
+ }catch(e){
194
+ return true;
195
+ }
196
+ if (originalOptions.data.action == 'activity_get_older_updates') {
197
+ var orignalSuccess = originalOptions.success;
198
+ options.success = function(response) {
199
+ orignalSuccess(response);
200
+ 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');
201
+ rtMediaHook.call('rtmedia_js_after_activity_added', []);
202
+ }
203
+ }
204
+ });
205
+
206
  jQuery('.rtmedia-container').on('click', '.select-all', function(e) {
207
  e.preventDefault();
208
  jQuery(this).toggleClass('unselect-all').toggleClass('select-all');
211
  jQuery('.rtmedia-list input').each(function() {
212
  jQuery(this).prop('checked', true);
213
  });
214
+ jQuery('.rtmedia-list-item').addClass('bulk-selected');
215
  });
216
 
217
  jQuery('.rtmedia-container').on('click', '.unselect-all', function(e) {
222
  jQuery('.rtmedia-list input').each(function() {
223
  jQuery(this).prop('checked', false);
224
  });
225
+ jQuery('.rtmedia-list-item').removeClass('bulk-selected');
226
  });
227
 
228
  jQuery('.rtmedia-container').on('click', '.rtmedia-move', function(e) {
346
  jQuery('.mfp-content .rtm-lightbox-container .rtmedia-single-meta, .mfp-content .rtm-lightbox-container #rtmedia-single-media-container .rtmedia-media, .rtm-lightbox-container .mejs-video').css({ 'height' : height*0.8, 'max-height' : height*0.8, 'over-flow' : 'hidden' });
347
  //mejs-video
348
  //init the options dropdown menu
349
+ rtmedia_init_action_dropdown();
350
  //get focus on comment textarea when comment-link is clicked
351
  jQuery('.rtmedia-comment-link').on('click', function(e){
352
  e.preventDefault();
447
  // jQuery('#rtm-media-gallery-uploader').slideToggle();
448
  // });
449
 
450
+ rtmedia_init_action_dropdown();
 
 
 
 
 
 
 
 
 
 
451
  $(document).click(function() {
452
  if ($('.click-nav ul').is(':visible')) {
453
  $('.click-nav ul', this).hide();
app/main/controllers/template/RTMediaTemplate.php CHANGED
@@ -618,9 +618,8 @@ class RTMediaTemplate {
618
  } else {
619
  $located = trailingslashit ( RTMEDIA_PATH ) . $ogpath . $template_name;
620
  }
 
621
  }
622
-
623
- $located = apply_filters('rtmedia_located_template', $located , $url, $ogpath, $template_name );// filter for rtmedia pro
624
  return $located;
625
  }
626
 
618
  } else {
619
  $located = trailingslashit ( RTMEDIA_PATH ) . $ogpath . $template_name;
620
  }
621
+ $located = apply_filters('rtmedia_located_template', $located , $url, $ogpath, $template_name );// filter for rtmedia pro
622
  }
 
 
623
  return $located;
624
  }
625
 
app/main/controllers/template/rt-template-functions.php CHANGED
@@ -407,7 +407,7 @@ function rtmedia_delete_allowed () {
407
 
408
  $flag = $rtmedia_media->media_author == get_current_user_id ();
409
 
410
- if( isset($rtmedia_media->context) && $rtmedia_media->context == 'group' && function_exists('bp_group_is_admin')){
411
  $flag = ( bp_group_is_admin() || bp_group_is_mod());
412
  }
413
 
407
 
408
  $flag = $rtmedia_media->media_author == get_current_user_id ();
409
 
410
+ if( !$flag && isset($rtmedia_media->context) && $rtmedia_media->context == 'group' && function_exists('bp_group_is_admin')){
411
  $flag = ( bp_group_is_admin() || bp_group_is_mod());
412
  }
413
 
app/main/controllers/upload/RTMediaUploadView.php CHANGED
@@ -82,7 +82,7 @@ class RTMediaUploadView {
82
  . '<table id="rtMedia-queue-list" class="rtMedia-queue-list"><tbody></tbody></table></div>'
83
  . '</div>' ),
84
  //'activity' => array( 'title' => __ ( 'File Upload', 'rtmedia' ), 'content' => '<div class="rtmedia-container"><div id="rtmedia-action-update"><input type="button" class="rtmedia-add-media-button" id="rtmedia-add-media-button-post-update" value="' . __ ( "Attach Files", "rtmedia" ) . '" /></div><div id="div-attache-rtmedia"><div id="rtmedia-whts-new-upload-container" ><div id="rtmedia-whts-new-drag-drop-area" class="drag-drop"><input id="rtmedia-whts-new-upload-button" value="' . __ ( "Select", "rtmedia" ) . '" type="button" class="rtmedia-upload-input rtmedia-file" /></div><div id="rtMedia-update-queue-list"></div></div></div></div>' )
85
- 'activity' => array( 'title' => __( 'File Upload', 'rtmedia' ), 'content' => '<div class="rtmedia-container"><div id="rtmedia-action-update"><button type="button" class="rtmedia-add-media-button" id="rtmedia-add-media-button-post-update"><i class="rtmicon-plus-circle"></i>' . __( 'Attach Files', 'rtmedia' ) . '</button>' . $up_privacy . '</div><div id="rtmedia-whts-new-upload-container"><div id="rtm-upload-start-notice"><span>' . __('Upload will start only after you enter content and click Post Update.', 'rtmedia' ) . '</span></div><table id="rtMedia-queue-list" class="rtMedia-queue-list"><tbody></tbody></table></div></div>')
86
  ),
87
  // 'file_upload' => array( 'title' => __('File Upload','rtmedia'), 'content' => '<div id="rtmedia-uploader"><p>Your browser does not have HTML5 support.</p></div>'),
88
  'link_input' => array( 'title' => __ ( 'Insert from URL', 'rtmedia' ), 'content' => '<input type="url" name="bp-media-url" class="rtmedia-upload-input rtmedia-url" />' ),
82
  . '<table id="rtMedia-queue-list" class="rtMedia-queue-list"><tbody></tbody></table></div>'
83
  . '</div>' ),
84
  //'activity' => array( 'title' => __ ( 'File Upload', 'rtmedia' ), 'content' => '<div class="rtmedia-container"><div id="rtmedia-action-update"><input type="button" class="rtmedia-add-media-button" id="rtmedia-add-media-button-post-update" value="' . __ ( "Attach Files", "rtmedia" ) . '" /></div><div id="div-attache-rtmedia"><div id="rtmedia-whts-new-upload-container" ><div id="rtmedia-whts-new-drag-drop-area" class="drag-drop"><input id="rtmedia-whts-new-upload-button" value="' . __ ( "Select", "rtmedia" ) . '" type="button" class="rtmedia-upload-input rtmedia-file" /></div><div id="rtMedia-update-queue-list"></div></div></div></div>' )
85
+ 'activity' => array( 'title' => __( 'File Upload', 'rtmedia' ), 'content' => '<div class="rtmedia-container"><div id="rtmedia-action-update"><button type="button" class="rtmedia-add-media-button" id="rtmedia-add-media-button-post-update"><i class="rtmicon-plus-circle"></i>' . apply_filters('rtmedia_attach_file_message', __( 'Attach Files', 'rtmedia' ) ) . '</button>' . $up_privacy . '</div><div id="rtmedia-whts-new-upload-container"><div id="rtm-upload-start-notice"><span>' . __('Upload will start only after you enter content and click Post Update.', 'rtmedia' ) . '</span></div><table id="rtMedia-queue-list" class="rtMedia-queue-list"><tbody></tbody></table></div></div>')
86
  ),
87
  // 'file_upload' => array( 'title' => __('File Upload','rtmedia'), 'content' => '<div id="rtmedia-uploader"><p>Your browser does not have HTML5 support.</p></div>'),
88
  'link_input' => array( 'title' => __ ( 'Insert from URL', 'rtmedia' ), 'content' => '<input type="url" name="bp-media-url" class="rtmedia-upload-input rtmedia-url" />' ),
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
- Version: 3.6.2
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
+ Version: 3.6.3
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-de_DE.mo CHANGED
Binary file
languages/rtmedia-ru_RU.mo CHANGED
Binary file
languages/rtmedia.mo CHANGED
Binary file
languages/rtmedia.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-10 13:13+0530\n"
6
- "PO-Revision-Date: 2014-02-10 13:13+0530\n"
7
  "Last-Translator: faishal <faishal.saiyed@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: en_IN\n"
@@ -107,7 +107,7 @@ msgstr ""
107
 
108
  #: app/admin/RTMediaAdmin.php:349 app/admin/RTMediaAdmin.php:352
109
  #: app/admin/RTMediaAdmin.php:459 app/admin/RTMediaAdmin.php:847
110
- #: app/helper/RTMediaSettings.php:133
111
  msgid "Support"
112
  msgstr ""
113
 
@@ -447,153 +447,169 @@ msgid ""
447
  "com/affiliates\">here</a>"
448
  msgstr ""
449
 
450
- #: app/admin/RTMediaFormHandler.php:444 app/helper/RTMediaSettings.php:231
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
  msgid "Media Type"
452
  msgstr ""
453
 
454
- #: app/admin/RTMediaFormHandler.php:445
455
  msgid "Allows you to upload a particular media type on your post."
456
  msgstr ""
457
 
458
- #: app/admin/RTMediaFormHandler.php:445
459
  msgid "Allow Upload"
460
  msgstr ""
461
 
462
- #: app/admin/RTMediaFormHandler.php:446
463
  msgid "Put a specific media as a featured content on the post."
464
  msgstr ""
465
 
466
- #: app/admin/RTMediaFormHandler.php:446
467
  msgid "Set Featured"
468
  msgstr ""
469
 
470
- #: app/admin/RTMediaFormHandler.php:484
471
  msgid "File Extensions"
472
  msgstr ""
473
 
474
- #: app/admin/RTMediaFormHandler.php:531
475
  msgid "Category"
476
  msgstr ""
477
 
478
- #: app/admin/RTMediaFormHandler.php:532
479
  msgid "Entity"
480
  msgstr ""
481
 
482
- #: app/admin/RTMediaFormHandler.php:533
483
  msgid "Width"
484
  msgstr ""
485
 
486
- #: app/admin/RTMediaFormHandler.php:533
487
  msgid "Height"
488
  msgstr ""
489
 
490
- #: app/admin/RTMediaFormHandler.php:533
491
  msgid "Crop"
492
  msgstr ""
493
 
494
- #: app/admin/RTMediaFormHandler.php:570
495
  msgid "Number of thumbnails to generate on video upload"
496
  msgstr ""
497
 
498
- #: app/admin/RTMediaFormHandler.php:576
499
  msgid ""
500
  " If you choose more than 1 thumbnail, your users will be able to change "
501
  "thumbnail by going to video \"edit\" section."
502
  msgstr ""
503
 
504
- #: app/admin/RTMediaFormHandler.php:614
505
  msgid ""
506
  "If you want to add some custom CSS code to the plugin and don't want to "
507
  "modify any files, then it's a good place to enter your code at this field."
508
  msgstr ""
509
 
510
- #: app/admin/RTMediaFormHandler.php:636
511
  msgid "rtMedia default styles"
512
  msgstr ""
513
 
514
- #: app/admin/RTMediaFormHandler.php:642
515
  msgid ""
516
  "Load default rtMedia styles. You need to write your own style for rtMedia if "
517
  "you disable it."
518
  msgstr ""
519
 
520
- #: app/admin/RTMediaFormHandler.php:646
521
  msgid "Paste your CSS code"
522
  msgstr ""
523
 
524
- #: app/admin/RTMediaFormHandler.php:652
525
  msgid "Custom rtMedia CSS container"
526
  msgstr ""
527
 
528
- #: app/admin/RTMediaFormHandler.php:666
529
  msgid "Enable privacy"
530
  msgstr ""
531
 
532
- #: app/admin/RTMediaFormHandler.php:672
533
  msgid "Enable privacy in rtMedia"
534
  msgstr ""
535
 
536
- #: app/admin/RTMediaFormHandler.php:676
537
  msgid "Default privacy"
538
  msgstr ""
539
 
540
- #: app/admin/RTMediaFormHandler.php:682
541
  msgid "Set default privacy for media"
542
  msgstr ""
543
 
544
- #: app/admin/RTMediaFormHandler.php:686
545
  msgid "Allow users to set privacy for their content"
546
  msgstr ""
547
 
548
- #: app/admin/RTMediaFormHandler.php:691
549
  msgid ""
550
  "If you choose this, user will be able to change privacy of their own uploads."
551
  msgstr ""
552
 
553
- #: app/admin/RTMediaFormHandler.php:693
554
  msgid "For group uploads, BuddyPress groups privacy is used."
555
  msgstr ""
556
 
557
- #: app/admin/RTMediaFormHandler.php:750
558
  msgid "Enable media in profile"
559
  msgstr ""
560
 
561
- #: app/admin/RTMediaFormHandler.php:755
562
  msgid "Enable Media on BuddyPress Profile"
563
  msgstr ""
564
 
565
- #: app/admin/RTMediaFormHandler.php:759
566
  msgid "Enable media in group"
567
  msgstr ""
568
 
569
- #: app/admin/RTMediaFormHandler.php:764
570
  msgid "Enable Media on BuddyPress Groups"
571
  msgstr ""
572
 
573
- #: app/admin/RTMediaFormHandler.php:768
574
  msgid "Allow upload from activity stream"
575
  msgstr ""
576
 
577
- #: app/admin/RTMediaFormHandler.php:773
578
  msgid "Allow upload using status update box present on activity stream page"
579
  msgstr ""
580
 
581
- #: app/admin/RTMediaFormHandler.php:778
582
  msgid "Number of media items to show in activity stream"
583
  msgstr ""
584
 
585
- #: app/admin/RTMediaFormHandler.php:783
586
  msgid ""
587
  "With bulk uploads activity stream may get flooded. You can control maximum "
588
  "number of medias/files per activity. This limit will not affect the actual "
589
  "number of uplaods. Only display. <em>0</em> means unlimited."
590
  msgstr ""
591
 
592
- #: app/admin/RTMediaFormHandler.php:824
593
  msgid "Organize media into albums"
594
  msgstr ""
595
 
596
- #: app/admin/RTMediaFormHandler.php:830
597
  msgid ""
598
  "This will add 'album' tab to BuddyPress profile and group depending on "
599
  "^above^ settings."
@@ -702,73 +718,73 @@ msgstr ""
702
  msgid "Posted "
703
  msgstr ""
704
 
705
- #: app/helper/RTMediaSettings.php:103
706
  msgid "Max Video thumbnail size is "
707
  msgstr ""
708
 
709
- #: app/helper/RTMediaSettings.php:131
710
  msgid "BuddyPress Media Addons for Photos"
711
  msgstr ""
712
 
713
- #: app/helper/RTMediaSettings.php:135
714
  msgid "rtMedia Themes"
715
  msgstr ""
716
 
717
- #: app/helper/RTMediaSettings.php:192
718
  #, php-format
719
  msgid ""
720
  "Currently your network allows uploading of the following file types. You can "
721
  "change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
722
  msgstr ""
723
 
724
- #: app/helper/RTMediaSettings.php:210 app/helper/RTMediaSettings.php:212
725
  msgid "Recounting of media files done successfully"
726
  msgstr ""
727
 
728
- #: app/helper/RTMediaSettings.php:212
729
  msgid "Recount Success"
730
  msgstr ""
731
 
732
- #: app/helper/RTMediaSettings.php:215 app/helper/RTMediaSettings.php:217
733
  msgid "Recounting Failed"
734
  msgstr ""
735
 
736
- #: app/helper/RTMediaSettings.php:217
737
  msgid "Recount Fail"
738
  msgstr ""
739
 
740
- #: app/helper/RTMediaSettings.php:229 app/helper/RTMediaSettings.php:231
741
  msgid "Atleast one Media Type Must be selected"
742
  msgstr ""
743
 
744
- #: app/helper/RTMediaSettings.php:238 app/helper/RTMediaSettings.php:240
745
  msgid "\"Number of media\" count value should be numeric and greater than 0."
746
  msgstr ""
747
 
748
- #: app/helper/RTMediaSettings.php:240
749
  msgid "Default Count"
750
  msgstr ""
751
 
752
- #: app/helper/RTMediaSettings.php:244
753
  msgid "Settings saved."
754
  msgstr ""
755
 
756
- #: app/helper/RTMediaSettings.php:259
757
  #, php-format
758
  msgid ""
759
  "If you make changes to width, height or crop settings, you must use \"<a "
760
  "href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
761
  msgstr ""
762
 
763
- #: app/helper/RTMediaSettings.php:279
764
  msgid "BuddyPress Media 2.6 requires a database upgrade. "
765
  msgstr ""
766
 
767
- #: app/helper/RTMediaSettings.php:280
768
  msgid "Update Database"
769
  msgstr ""
770
 
771
- #: app/helper/RTMediaSettings.php:288 app/helper/RTMediaSupport.php:367
772
  msgid ""
773
  "If your site has some issues due to BuddyPress Media and you want one on one "
774
  "support then you can create a support topic on the <a target=\"_blank\" href="
@@ -777,7 +793,7 @@ msgid ""
777
  "\">rtCamp Support Forum</a>."
778
  msgstr ""
779
 
780
- #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:368
781
  msgid ""
782
  "If you have any suggestions, enhancements or bug reports, then you can open "
783
  "a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/"
@@ -824,10 +840,12 @@ msgid "There is no media found to migrate."
824
  msgstr ""
825
 
826
  #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116
 
827
  msgid "Click"
828
  msgstr ""
829
 
830
  #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116
 
831
  msgid "here"
832
  msgstr ""
833
 
@@ -967,21 +985,28 @@ msgid ""
967
  "community system."
968
  msgstr ""
969
 
970
- #: app/helper/RTMediaThemes.php:116
971
  msgid "for preview."
972
  msgstr ""
973
 
974
- #: app/helper/RTMediaThemes.php:122
 
 
 
 
 
 
 
975
  msgid "Are you a developer?"
976
  msgstr ""
977
 
978
- #: app/helper/RTMediaThemes.php:123
979
  msgid ""
980
  "If you have developed a rtMedia compatible theme and would like it to list "
981
  "here, please email us at"
982
  msgstr ""
983
 
984
- #: app/helper/RTMediaThemes.php:123
985
  msgid "product@rtcamp.com"
986
  msgstr ""
987
 
@@ -1212,25 +1237,25 @@ msgstr ""
1212
  msgid "<strong>Public</strong> - Visible to the world"
1213
  msgstr ""
1214
 
1215
- #: app/main/RTMedia.php:517 app/main/controllers/template/RTMediaNav.php:143
1216
  msgid "All"
1217
  msgstr ""
1218
 
1219
  #: app/main/RTMedia.php:526 app/main/controllers/media/RTMediaAlbum.php:54
1220
- #: app/main/controllers/template/rt-template-functions.php:1050
1221
  msgid "Album"
1222
  msgstr ""
1223
 
1224
  #: app/main/RTMedia.php:529 app/main/controllers/media/RTMediaAlbum.php:53
1225
  #: app/main/controllers/media/RTMediaAlbum.php:65
1226
- #: app/main/controllers/template/RTMediaNav.php:92
1227
- #: app/main/controllers/template/RTMediaNav.php:164
1228
  msgid "Albums"
1229
  msgstr ""
1230
 
1231
  #: app/main/RTMedia.php:537
1232
- #: app/main/controllers/template/rt-template-functions.php:1725
1233
- #: app/main/controllers/template/rt-template-functions.php:1728
1234
  msgid "Upload"
1235
  msgstr ""
1236
 
@@ -1335,14 +1360,14 @@ msgid "Close"
1335
  msgstr ""
1336
 
1337
  #: app/main/RTMedia.php:828
1338
- #: app/main/controllers/template/rt-template-functions.php:585
1339
- #: app/main/controllers/template/rt-template-functions.php:606
1340
  msgid "Edit"
1341
  msgstr ""
1342
 
1343
  #: app/main/RTMedia.php:829
1344
- #: app/main/controllers/template/rt-template-functions.php:1129
1345
- #: app/main/controllers/template/rt-template-functions.php:1136
1346
  #: templates/media/album-single-edit.php:60
1347
  msgid "Delete"
1348
  msgstr ""
@@ -1379,218 +1404,218 @@ msgstr ""
1379
  msgid "Media Files"
1380
  msgstr ""
1381
 
1382
- #: app/main/controllers/api/RTMediaJsonApi.php:146
1383
  msgid "username/password empty"
1384
  msgstr ""
1385
 
1386
- #: app/main/controllers/api/RTMediaJsonApi.php:149
1387
  msgid "incorrect username"
1388
  msgstr ""
1389
 
1390
- #: app/main/controllers/api/RTMediaJsonApi.php:152
1391
  msgid "incorrect password"
1392
  msgstr ""
1393
 
1394
- #: app/main/controllers/api/RTMediaJsonApi.php:155
1395
  msgid "login success"
1396
  msgstr ""
1397
 
1398
- #: app/main/controllers/api/RTMediaJsonApi.php:201
1399
  msgid "fields empty"
1400
  msgstr ""
1401
 
1402
- #: app/main/controllers/api/RTMediaJsonApi.php:204
1403
  msgid "invalid email"
1404
  msgstr ""
1405
 
1406
- #: app/main/controllers/api/RTMediaJsonApi.php:207
1407
  msgid "password do not match"
1408
  msgstr ""
1409
 
1410
- #: app/main/controllers/api/RTMediaJsonApi.php:210
1411
  msgid "username already registered"
1412
  msgstr ""
1413
 
1414
- #: app/main/controllers/api/RTMediaJsonApi.php:213
1415
  msgid "email already exists"
1416
  msgstr ""
1417
 
1418
- #: app/main/controllers/api/RTMediaJsonApi.php:216
1419
  msgid "new user created"
1420
  msgstr ""
1421
 
1422
- #: app/main/controllers/api/RTMediaJsonApi.php:277
1423
  msgid "email empty"
1424
  msgstr ""
1425
 
1426
- #: app/main/controllers/api/RTMediaJsonApi.php:280
1427
  msgid "username/email not registered"
1428
  msgstr ""
1429
 
1430
- #: app/main/controllers/api/RTMediaJsonApi.php:283
1431
  msgid "reset link sent"
1432
  msgstr ""
1433
 
1434
- #: app/main/controllers/api/RTMediaJsonApi.php:315
1435
  msgid ""
1436
  "Someone has asked to reset the password for the following site and username."
1437
  msgstr ""
1438
 
1439
- #: app/main/controllers/api/RTMediaJsonApi.php:317
1440
  #, php-format
1441
  msgid "Username: %s"
1442
  msgstr ""
1443
 
1444
- #: app/main/controllers/api/RTMediaJsonApi.php:318
1445
  msgid ""
1446
  "To reset your password visit the following address, otherwise just ignore "
1447
  "this email and nothing will happen."
1448
  msgstr ""
1449
 
1450
- #: app/main/controllers/api/RTMediaJsonApi.php:321
1451
  #, php-format
1452
  msgid "[%s] Password Reset"
1453
  msgstr ""
1454
 
1455
- #: app/main/controllers/api/RTMediaJsonApi.php:336
1456
  msgid "bp activities"
1457
  msgstr ""
1458
 
1459
- #: app/main/controllers/api/RTMediaJsonApi.php:339
1460
  msgid "user activities"
1461
  msgstr ""
1462
 
1463
- #: app/main/controllers/api/RTMediaJsonApi.php:369
1464
  msgid "comment content missing"
1465
  msgstr ""
1466
 
1467
- #: app/main/controllers/api/RTMediaJsonApi.php:372
1468
  msgid "comment posted"
1469
  msgstr ""
1470
 
1471
- #: app/main/controllers/api/RTMediaJsonApi.php:419
1472
  msgid "unliked media"
1473
  msgstr ""
1474
 
1475
- #: app/main/controllers/api/RTMediaJsonApi.php:422
1476
  msgid "liked media"
1477
  msgstr ""
1478
 
1479
- #: app/main/controllers/api/RTMediaJsonApi.php:506
1480
  msgid "no comments"
1481
  msgstr ""
1482
 
1483
- #: app/main/controllers/api/RTMediaJsonApi.php:509
1484
  msgid "media comments"
1485
  msgstr ""
1486
 
1487
- #: app/main/controllers/api/RTMediaJsonApi.php:512
1488
  msgid "my comments"
1489
  msgstr ""
1490
 
1491
- #: app/main/controllers/api/RTMediaJsonApi.php:562
1492
  msgid "no likes"
1493
  msgstr ""
1494
 
1495
- #: app/main/controllers/api/RTMediaJsonApi.php:565
1496
  msgid "media likes"
1497
  msgstr ""
1498
 
1499
- #: app/main/controllers/api/RTMediaJsonApi.php:607
1500
  msgid "invalid comment/media id"
1501
  msgstr ""
1502
 
1503
- #: app/main/controllers/api/RTMediaJsonApi.php:610
1504
  msgid "no comment id"
1505
  msgstr ""
1506
 
1507
- #: app/main/controllers/api/RTMediaJsonApi.php:613
1508
  msgid "comment deleted"
1509
  msgstr ""
1510
 
1511
- #: app/main/controllers/api/RTMediaJsonApi.php:656
1512
  msgid "no profile found"
1513
  msgstr ""
1514
 
1515
- #: app/main/controllers/api/RTMediaJsonApi.php:659
1516
  msgid "profile fields"
1517
  msgstr ""
1518
 
1519
- #: app/main/controllers/api/RTMediaJsonApi.php:753
1520
  msgid "follow user id missing"
1521
  msgstr ""
1522
 
1523
- #: app/main/controllers/api/RTMediaJsonApi.php:756
1524
  msgid "started following"
1525
  msgstr ""
1526
 
1527
- #: app/main/controllers/api/RTMediaJsonApi.php:759
1528
  msgid "already following"
1529
  msgstr ""
1530
 
1531
- #: app/main/controllers/api/RTMediaJsonApi.php:791
1532
  msgid "unfollow id missing"
1533
  msgstr ""
1534
 
1535
- #: app/main/controllers/api/RTMediaJsonApi.php:794
1536
  msgid "stopped following"
1537
  msgstr ""
1538
 
1539
- #: app/main/controllers/api/RTMediaJsonApi.php:797
1540
  msgid "not following"
1541
  msgstr ""
1542
 
1543
- #: app/main/controllers/api/RTMediaJsonApi.php:829
1544
  msgid "name/location empty"
1545
  msgstr ""
1546
 
1547
- #: app/main/controllers/api/RTMediaJsonApi.php:832
1548
  msgid "profile updated"
1549
  msgstr ""
1550
 
1551
- #: app/main/controllers/api/RTMediaJsonApi.php:858
1552
- #: app/main/controllers/api/RTMediaJsonApi.php:885
1553
  msgid "no file"
1554
  msgstr ""
1555
 
1556
- #: app/main/controllers/api/RTMediaJsonApi.php:861
1557
- #: app/main/controllers/api/RTMediaJsonApi.php:897
1558
  msgid "upload failed, check size and file type"
1559
  msgstr ""
1560
 
1561
- #: app/main/controllers/api/RTMediaJsonApi.php:864
1562
  msgid "avatar updated"
1563
  msgstr ""
1564
 
1565
- #: app/main/controllers/api/RTMediaJsonApi.php:888
1566
  msgid "invalid file string"
1567
  msgstr ""
1568
 
1569
- #: app/main/controllers/api/RTMediaJsonApi.php:891
1570
  msgid "image type missing"
1571
  msgstr ""
1572
 
1573
- #: app/main/controllers/api/RTMediaJsonApi.php:894
1574
  msgid "no title"
1575
  msgstr ""
1576
 
1577
- #: app/main/controllers/api/RTMediaJsonApi.php:900
1578
  msgid "media updated"
1579
  msgstr ""
1580
 
1581
- #: app/main/controllers/api/RTMediaJsonApi.php:1020
1582
  msgid "media list"
1583
  msgstr ""
1584
 
1585
- #: app/main/controllers/api/RTMediaJsonApi.php:1023
1586
  msgid "no media found for requested media type"
1587
  msgstr ""
1588
 
1589
- #: app/main/controllers/api/RTMediaJsonApi.php:1026
1590
  msgid "media_type not allowed"
1591
  msgstr ""
1592
 
1593
- #: app/main/controllers/api/RTMediaJsonApi.php:1111
1594
  msgid "single media"
1595
  msgstr ""
1596
 
@@ -1644,12 +1669,12 @@ msgid "Create"
1644
  msgstr ""
1645
 
1646
  #: app/main/controllers/media/RTMediaAlbum.php:56
1647
- #: app/main/controllers/template/rt-template-functions.php:1386
1648
  msgid "Create Album"
1649
  msgstr ""
1650
 
1651
  #: app/main/controllers/media/RTMediaAlbum.php:57
1652
- #: app/main/controllers/template/rt-template-functions.php:1460
1653
  msgid "Edit Album"
1654
  msgstr ""
1655
 
@@ -1722,313 +1747,313 @@ msgstr ""
1722
  msgid "All "
1723
  msgstr ""
1724
 
1725
- #: app/main/controllers/template/rt-template-functions.php:561
1726
- #: app/main/controllers/template/rt-template-functions.php:1312
1727
  msgid "Options"
1728
  msgstr ""
1729
 
1730
- #: app/main/controllers/template/rt-template-functions.php:651
1731
  msgid "There are no comments on this media yet."
1732
  msgstr ""
1733
 
1734
- #: app/main/controllers/template/rt-template-functions.php:682
1735
  msgid "Delete Comment"
1736
  msgstr ""
1737
 
1738
- #: app/main/controllers/template/rt-template-functions.php:884
1739
  msgid "Video Thumbnail"
1740
  msgstr ""
1741
 
1742
- #: app/main/controllers/template/rt-template-functions.php:927
1743
  msgid "Video Thumbnail:"
1744
  msgstr ""
1745
 
1746
- #: app/main/controllers/template/rt-template-functions.php:1004
1747
  msgid "Image"
1748
  msgstr ""
1749
 
1750
- #: app/main/controllers/template/rt-template-functions.php:1019
1751
  msgid "Modify Image"
1752
  msgstr ""
1753
 
1754
- #: app/main/controllers/template/rt-template-functions.php:1091
1755
  msgid "Type Comment..."
1756
  msgstr ""
1757
 
1758
- #: app/main/controllers/template/rt-template-functions.php:1094
1759
  #: templates/media/media-single.php:71 templates/media/media-single.php:110
1760
  msgid "Comment"
1761
  msgstr ""
1762
 
1763
- #: app/main/controllers/template/rt-template-functions.php:1129
1764
- #: app/main/controllers/template/rt-template-functions.php:1136
1765
  msgid "Delete Media"
1766
  msgstr ""
1767
 
1768
- #: app/main/controllers/template/rt-template-functions.php:1256
1769
  msgid "Profile Albums"
1770
  msgstr ""
1771
 
1772
- #: app/main/controllers/template/rt-template-functions.php:1258
1773
- #: app/main/controllers/template/rt-template-functions.php:1294
1774
  msgid "Group Albums"
1775
  msgstr ""
1776
 
1777
- #: app/main/controllers/template/rt-template-functions.php:1367
1778
- #: app/main/controllers/template/rt-template-functions.php:1380
1779
  msgid "Create New Album"
1780
  msgstr ""
1781
 
1782
- #: app/main/controllers/template/rt-template-functions.php:1367
1783
  msgid "Add Album"
1784
  msgstr ""
1785
 
1786
- #: app/main/controllers/template/rt-template-functions.php:1382
1787
  msgid "Album Title : "
1788
  msgstr ""
1789
 
1790
- #: app/main/controllers/template/rt-template-functions.php:1415
1791
- #: app/main/controllers/template/rt-template-functions.php:1420
1792
- #: app/main/controllers/template/rt-template-functions.php:1471
1793
  msgid "Merge Album"
1794
  msgstr ""
1795
 
1796
- #: app/main/controllers/template/rt-template-functions.php:1417
1797
  msgid "Select Album to merge with : "
1798
  msgstr ""
1799
 
1800
- #: app/main/controllers/template/rt-template-functions.php:1463
1801
  msgid "Delete Album"
1802
  msgstr ""
1803
 
1804
- #: app/main/controllers/template/rt-template-functions.php:1496
1805
  msgid "Merge"
1806
  msgstr ""
1807
 
1808
- #: app/main/controllers/template/rt-template-functions.php:1545
1809
  #: app/main/controllers/upload/RTMediaUploadView.php:65
1810
  msgid "Privacy : "
1811
  msgstr ""
1812
 
1813
- #: app/main/controllers/template/rt-template-functions.php:1715
1814
  msgid "people like this"
1815
  msgstr ""
1816
 
1817
- #: app/main/controllers/template/rt-template-functions.php:1725
1818
- #: app/main/controllers/template/rt-template-functions.php:1728
1819
  msgid "Upload Media"
1820
  msgstr ""
1821
 
1822
- #: app/main/controllers/template/rt-template-functions.php:1771
1823
  msgid "Go PRO!"
1824
  msgstr ""
1825
 
1826
- #: app/main/controllers/template/rt-template-functions.php:1792
1827
  msgid "Reasons to buy rtMedia-PRO"
1828
  msgstr ""
1829
 
1830
- #: app/main/controllers/template/rt-template-functions.php:1797
1831
  msgid "RSS Feed/Podcasting Support"
1832
  msgstr ""
1833
 
1834
- #: app/main/controllers/template/rt-template-functions.php:1798
1835
  msgid ""
1836
  "You can consume rtMedia uploads from iTunes as well as any feed-reader/"
1837
  "podcasting software."
1838
  msgstr ""
1839
 
1840
- #: app/main/controllers/template/rt-template-functions.php:1804
1841
  msgid "WordPress Comment Attachment"
1842
  msgstr ""
1843
 
1844
- #: app/main/controllers/template/rt-template-functions.php:1805
1845
  msgid "You can attach files to WordPress comments."
1846
  msgstr ""
1847
 
1848
- #: app/main/controllers/template/rt-template-functions.php:1811
1849
  msgid "bbPress Attachment"
1850
  msgstr ""
1851
 
1852
- #: app/main/controllers/template/rt-template-functions.php:1812
1853
  msgid "You can attach files to bbPress topic and reply."
1854
  msgstr ""
1855
 
1856
- #: app/main/controllers/template/rt-template-functions.php:1818
1857
  msgid "Document Support"
1858
  msgstr ""
1859
 
1860
- #: app/main/controllers/template/rt-template-functions.php:1819
1861
  msgid ""
1862
  "You can add, view and download documents like txt, doc, pdf, also add and "
1863
  "upload other file types like zip, tar and tar.gz etc."
1864
  msgstr ""
1865
 
1866
- #: app/main/controllers/template/rt-template-functions.php:1825
1867
  msgid "CubePoints & MyCRED Integration"
1868
  msgstr ""
1869
 
1870
- #: app/main/controllers/template/rt-template-functions.php:1826
1871
  msgid ""
1872
  "Integrating CubePoints/myCRED with rtMedia, you can reward users with "
1873
  "virtual points on rtMedia activities."
1874
  msgstr ""
1875
 
1876
- #: app/main/controllers/template/rt-template-functions.php:1832
1877
  msgid "Album Privacy"
1878
  msgstr ""
1879
 
1880
- #: app/main/controllers/template/rt-template-functions.php:1833
1881
  msgid ""
1882
  "This will allow you to set album privacy while creating albums or change "
1883
  "album privacy with editing albums too."
1884
  msgstr ""
1885
 
1886
- #: app/main/controllers/template/rt-template-functions.php:1839
1887
  msgid "Audio Playlist"
1888
  msgstr ""
1889
 
1890
- #: app/main/controllers/template/rt-template-functions.php:1840
1891
  msgid ""
1892
  "With this feature you can create your audio playlists and listen to your "
1893
  "favorite music at will."
1894
  msgstr ""
1895
 
1896
- #: app/main/controllers/template/rt-template-functions.php:1846
1897
  msgid "Report Button & Moderation Tools"
1898
  msgstr ""
1899
 
1900
- #: app/main/controllers/template/rt-template-functions.php:1847
1901
  msgid ""
1902
  "Users can report media if they find it offensive. Set number of reports to "
1903
  "automatically take down media."
1904
  msgstr ""
1905
 
1906
- #: app/main/controllers/template/rt-template-functions.php:1853
1907
  msgid "Download Button For Media"
1908
  msgstr ""
1909
 
1910
- #: app/main/controllers/template/rt-template-functions.php:1854
1911
  msgid ""
1912
  "Users can download photos, videos and music. Admin has option to allow "
1913
  "download the media."
1914
  msgstr ""
1915
 
1916
- #: app/main/controllers/template/rt-template-functions.php:1860
1917
  msgid "Sidebar widgets"
1918
  msgstr ""
1919
 
1920
- #: app/main/controllers/template/rt-template-functions.php:1861
1921
  msgid ""
1922
  "These will let you display a gallery or an uploader in a sidebar. Several of "
1923
  "them can be used in a single sidebar."
1924
  msgstr ""
1925
 
1926
- #: app/main/controllers/template/rt-template-functions.php:1867
1927
  msgid "Post-editor button"
1928
  msgstr ""
1929
 
1930
- #: app/main/controllers/template/rt-template-functions.php:1868
1931
  msgid ""
1932
  "With this button, a UI appears to quickly generate shortcodes for special "
1933
  "pages like \"Editorial Picks\"."
1934
  msgstr ""
1935
 
1936
- #: app/main/controllers/template/rt-template-functions.php:1874
1937
  msgid "Star-Rating option"
1938
  msgstr ""
1939
 
1940
- #: app/main/controllers/template/rt-template-functions.php:1875
1941
  msgid ""
1942
  "Users can give up to five stars to rate media. This data can be used for "
1943
  "\"Most Rated Media\" in sidebars."
1944
  msgstr ""
1945
 
1946
- #: app/main/controllers/template/rt-template-functions.php:1881
1947
  msgid "Global Albums"
1948
  msgstr ""
1949
 
1950
- #: app/main/controllers/template/rt-template-functions.php:1882
1951
  msgid ""
1952
  "Multiple global albums can be created beforehand. One of these can be chosen "
1953
  "as the default album."
1954
  msgstr ""
1955
 
1956
- #: app/main/controllers/template/rt-template-functions.php:1888
1957
  msgid "Premium one-to-one support"
1958
  msgstr ""
1959
 
1960
- #: app/main/controllers/template/rt-template-functions.php:1889
1961
  msgid ""
1962
  "Without leaving your WordPress dashboard, you can contact us for help using "
1963
  "a support form."
1964
  msgstr ""
1965
 
1966
- #: app/main/controllers/template/rt-template-functions.php:1895
1967
  msgid "Premium & Open-Source"
1968
  msgstr ""
1969
 
1970
- #: app/main/controllers/template/rt-template-functions.php:1896
1971
  msgid ""
1972
  "Developers get full control over rtMedia-PRO's source. They'll get access to "
1973
  msgstr ""
1974
 
1975
- #: app/main/controllers/template/rt-template-functions.php:1902
1976
  msgid "Upgrade to rtMedia PRO Now "
1977
  msgstr ""
1978
 
1979
- #: app/main/controllers/template/rt-template-functions.php:1913
1980
  msgid "You can consider rtMedia Team for following :"
1981
  msgstr ""
1982
 
1983
- #: app/main/controllers/template/rt-template-functions.php:1915
1984
  msgid "rtMedia Customization ( in Upgrade Safe manner )"
1985
  msgstr ""
1986
 
1987
- #: app/main/controllers/template/rt-template-functions.php:1916
1988
  msgid "Wordpress/BuddyPress Theme Design and Development"
1989
  msgstr ""
1990
 
1991
- #: app/main/controllers/template/rt-template-functions.php:1917
1992
  msgid "Wordpress/BuddyPress Plugin Development"
1993
  msgstr ""
1994
 
1995
- #: app/main/controllers/template/rt-template-functions.php:1921
1996
  msgid "Contact Us"
1997
  msgstr ""
1998
 
1999
- #: app/main/controllers/template/rt-template-functions.php:1939
2000
  msgid "Empowering your community with "
2001
  msgstr ""
2002
 
2003
- #: app/main/controllers/template/rt-template-functions.php:1940
2004
  msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2005
  msgstr ""
2006
 
2007
- #: app/main/controllers/template/rt-template-functions.php:1954
2008
  msgid "Close (Esc)"
2009
  msgstr ""
2010
 
2011
- #: app/main/controllers/template/rt-template-functions.php:1969
2012
  msgid "Public"
2013
  msgstr ""
2014
 
2015
- #: app/main/controllers/template/rt-template-functions.php:1973
2016
  msgid "All members"
2017
  msgstr ""
2018
 
2019
- #: app/main/controllers/template/rt-template-functions.php:1977
2020
  msgid "Your friends"
2021
  msgstr ""
2022
 
2023
- #: app/main/controllers/template/rt-template-functions.php:1981
2024
  msgid "Only you"
2025
  msgstr ""
2026
 
2027
- #: app/main/controllers/template/rt-template-functions.php:1985
2028
  msgid "Blocked Temperorily"
2029
  msgstr ""
2030
 
2031
- #: app/main/controllers/template/rt-template-functions.php:2019
2032
  #, php-format
2033
  msgid "%s ago "
2034
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-02-20 21:49+0530\n"
6
+ "PO-Revision-Date: 2014-02-20 21:49+0530\n"
7
  "Last-Translator: faishal <faishal.saiyed@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: en_IN\n"
107
 
108
  #: app/admin/RTMediaAdmin.php:349 app/admin/RTMediaAdmin.php:352
109
  #: app/admin/RTMediaAdmin.php:459 app/admin/RTMediaAdmin.php:847
110
+ #: app/helper/RTMediaSettings.php:134
111
  msgid "Support"
112
  msgstr ""
113
 
447
  "com/affiliates\">here</a>"
448
  msgstr ""
449
 
450
+ #: app/admin/RTMediaFormHandler.php:334
451
+ msgid "Enable JSON API"
452
+ msgstr ""
453
+
454
+ #: app/admin/RTMediaFormHandler.php:339
455
+ msgid ""
456
+ "This will allow handling API requests for rtMedia sent through any mobile "
457
+ "app."
458
+ msgstr ""
459
+
460
+ #: app/admin/RTMediaFormHandler.php:342
461
+ msgid ""
462
+ "You can refer API document from <a href=\"https://rtcamp.com/rtmedia/docs/"
463
+ "developer/json-api/\">here</a>"
464
+ msgstr ""
465
+
466
+ #: app/admin/RTMediaFormHandler.php:456 app/helper/RTMediaSettings.php:232
467
  msgid "Media Type"
468
  msgstr ""
469
 
470
+ #: app/admin/RTMediaFormHandler.php:457
471
  msgid "Allows you to upload a particular media type on your post."
472
  msgstr ""
473
 
474
+ #: app/admin/RTMediaFormHandler.php:457
475
  msgid "Allow Upload"
476
  msgstr ""
477
 
478
+ #: app/admin/RTMediaFormHandler.php:458
479
  msgid "Put a specific media as a featured content on the post."
480
  msgstr ""
481
 
482
+ #: app/admin/RTMediaFormHandler.php:458
483
  msgid "Set Featured"
484
  msgstr ""
485
 
486
+ #: app/admin/RTMediaFormHandler.php:496
487
  msgid "File Extensions"
488
  msgstr ""
489
 
490
+ #: app/admin/RTMediaFormHandler.php:543
491
  msgid "Category"
492
  msgstr ""
493
 
494
+ #: app/admin/RTMediaFormHandler.php:544
495
  msgid "Entity"
496
  msgstr ""
497
 
498
+ #: app/admin/RTMediaFormHandler.php:545
499
  msgid "Width"
500
  msgstr ""
501
 
502
+ #: app/admin/RTMediaFormHandler.php:545
503
  msgid "Height"
504
  msgstr ""
505
 
506
+ #: app/admin/RTMediaFormHandler.php:545
507
  msgid "Crop"
508
  msgstr ""
509
 
510
+ #: app/admin/RTMediaFormHandler.php:582
511
  msgid "Number of thumbnails to generate on video upload"
512
  msgstr ""
513
 
514
+ #: app/admin/RTMediaFormHandler.php:588
515
  msgid ""
516
  " If you choose more than 1 thumbnail, your users will be able to change "
517
  "thumbnail by going to video \"edit\" section."
518
  msgstr ""
519
 
520
+ #: app/admin/RTMediaFormHandler.php:626
521
  msgid ""
522
  "If you want to add some custom CSS code to the plugin and don't want to "
523
  "modify any files, then it's a good place to enter your code at this field."
524
  msgstr ""
525
 
526
+ #: app/admin/RTMediaFormHandler.php:648
527
  msgid "rtMedia default styles"
528
  msgstr ""
529
 
530
+ #: app/admin/RTMediaFormHandler.php:654
531
  msgid ""
532
  "Load default rtMedia styles. You need to write your own style for rtMedia if "
533
  "you disable it."
534
  msgstr ""
535
 
536
+ #: app/admin/RTMediaFormHandler.php:658
537
  msgid "Paste your CSS code"
538
  msgstr ""
539
 
540
+ #: app/admin/RTMediaFormHandler.php:664
541
  msgid "Custom rtMedia CSS container"
542
  msgstr ""
543
 
544
+ #: app/admin/RTMediaFormHandler.php:678
545
  msgid "Enable privacy"
546
  msgstr ""
547
 
548
+ #: app/admin/RTMediaFormHandler.php:684
549
  msgid "Enable privacy in rtMedia"
550
  msgstr ""
551
 
552
+ #: app/admin/RTMediaFormHandler.php:688
553
  msgid "Default privacy"
554
  msgstr ""
555
 
556
+ #: app/admin/RTMediaFormHandler.php:694
557
  msgid "Set default privacy for media"
558
  msgstr ""
559
 
560
+ #: app/admin/RTMediaFormHandler.php:698
561
  msgid "Allow users to set privacy for their content"
562
  msgstr ""
563
 
564
+ #: app/admin/RTMediaFormHandler.php:703
565
  msgid ""
566
  "If you choose this, user will be able to change privacy of their own uploads."
567
  msgstr ""
568
 
569
+ #: app/admin/RTMediaFormHandler.php:705
570
  msgid "For group uploads, BuddyPress groups privacy is used."
571
  msgstr ""
572
 
573
+ #: app/admin/RTMediaFormHandler.php:762
574
  msgid "Enable media in profile"
575
  msgstr ""
576
 
577
+ #: app/admin/RTMediaFormHandler.php:767
578
  msgid "Enable Media on BuddyPress Profile"
579
  msgstr ""
580
 
581
+ #: app/admin/RTMediaFormHandler.php:771
582
  msgid "Enable media in group"
583
  msgstr ""
584
 
585
+ #: app/admin/RTMediaFormHandler.php:776
586
  msgid "Enable Media on BuddyPress Groups"
587
  msgstr ""
588
 
589
+ #: app/admin/RTMediaFormHandler.php:780
590
  msgid "Allow upload from activity stream"
591
  msgstr ""
592
 
593
+ #: app/admin/RTMediaFormHandler.php:785
594
  msgid "Allow upload using status update box present on activity stream page"
595
  msgstr ""
596
 
597
+ #: app/admin/RTMediaFormHandler.php:790
598
  msgid "Number of media items to show in activity stream"
599
  msgstr ""
600
 
601
+ #: app/admin/RTMediaFormHandler.php:795
602
  msgid ""
603
  "With bulk uploads activity stream may get flooded. You can control maximum "
604
  "number of medias/files per activity. This limit will not affect the actual "
605
  "number of uplaods. Only display. <em>0</em> means unlimited."
606
  msgstr ""
607
 
608
+ #: app/admin/RTMediaFormHandler.php:836
609
  msgid "Organize media into albums"
610
  msgstr ""
611
 
612
+ #: app/admin/RTMediaFormHandler.php:842
613
  msgid ""
614
  "This will add 'album' tab to BuddyPress profile and group depending on "
615
  "^above^ settings."
718
  msgid "Posted "
719
  msgstr ""
720
 
721
+ #: app/helper/RTMediaSettings.php:104
722
  msgid "Max Video thumbnail size is "
723
  msgstr ""
724
 
725
+ #: app/helper/RTMediaSettings.php:132
726
  msgid "BuddyPress Media Addons for Photos"
727
  msgstr ""
728
 
729
+ #: app/helper/RTMediaSettings.php:136
730
  msgid "rtMedia Themes"
731
  msgstr ""
732
 
733
+ #: app/helper/RTMediaSettings.php:193
734
  #, php-format
735
  msgid ""
736
  "Currently your network allows uploading of the following file types. You can "
737
  "change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
738
  msgstr ""
739
 
740
+ #: app/helper/RTMediaSettings.php:211 app/helper/RTMediaSettings.php:213
741
  msgid "Recounting of media files done successfully"
742
  msgstr ""
743
 
744
+ #: app/helper/RTMediaSettings.php:213
745
  msgid "Recount Success"
746
  msgstr ""
747
 
748
+ #: app/helper/RTMediaSettings.php:216 app/helper/RTMediaSettings.php:218
749
  msgid "Recounting Failed"
750
  msgstr ""
751
 
752
+ #: app/helper/RTMediaSettings.php:218
753
  msgid "Recount Fail"
754
  msgstr ""
755
 
756
+ #: app/helper/RTMediaSettings.php:230 app/helper/RTMediaSettings.php:232
757
  msgid "Atleast one Media Type Must be selected"
758
  msgstr ""
759
 
760
+ #: app/helper/RTMediaSettings.php:239 app/helper/RTMediaSettings.php:241
761
  msgid "\"Number of media\" count value should be numeric and greater than 0."
762
  msgstr ""
763
 
764
+ #: app/helper/RTMediaSettings.php:241
765
  msgid "Default Count"
766
  msgstr ""
767
 
768
+ #: app/helper/RTMediaSettings.php:245
769
  msgid "Settings saved."
770
  msgstr ""
771
 
772
+ #: app/helper/RTMediaSettings.php:260
773
  #, php-format
774
  msgid ""
775
  "If you make changes to width, height or crop settings, you must use \"<a "
776
  "href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
777
  msgstr ""
778
 
779
+ #: app/helper/RTMediaSettings.php:280
780
  msgid "BuddyPress Media 2.6 requires a database upgrade. "
781
  msgstr ""
782
 
783
+ #: app/helper/RTMediaSettings.php:281
784
  msgid "Update Database"
785
  msgstr ""
786
 
787
+ #: app/helper/RTMediaSettings.php:289 app/helper/RTMediaSupport.php:367
788
  msgid ""
789
  "If your site has some issues due to BuddyPress Media and you want one on one "
790
  "support then you can create a support topic on the <a target=\"_blank\" href="
793
  "\">rtCamp Support Forum</a>."
794
  msgstr ""
795
 
796
+ #: app/helper/RTMediaSettings.php:290 app/helper/RTMediaSupport.php:368
797
  msgid ""
798
  "If you have any suggestions, enhancements or bug reports, then you can open "
799
  "a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/"
840
  msgstr ""
841
 
842
  #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116
843
+ #: app/helper/RTMediaThemes.php:125
844
  msgid "Click"
845
  msgstr ""
846
 
847
  #: app/helper/RTMediaSupport.php:331 app/helper/RTMediaThemes.php:116
848
+ #: app/helper/RTMediaThemes.php:125
849
  msgid "here"
850
  msgstr ""
851
 
985
  "community system."
986
  msgstr ""
987
 
988
+ #: app/helper/RTMediaThemes.php:116 app/helper/RTMediaThemes.php:125
989
  msgid "for preview."
990
  msgstr ""
991
 
992
+ #: app/helper/RTMediaThemes.php:124
993
+ msgid ""
994
+ "You no longer need to be a professional developer or designer to create an "
995
+ "awesome website. Let your imagination run wild and create the site of your "
996
+ "dreams. KLEO has all the tools to get you started."
997
+ msgstr ""
998
+
999
+ #: app/helper/RTMediaThemes.php:131
1000
  msgid "Are you a developer?"
1001
  msgstr ""
1002
 
1003
+ #: app/helper/RTMediaThemes.php:132
1004
  msgid ""
1005
  "If you have developed a rtMedia compatible theme and would like it to list "
1006
  "here, please email us at"
1007
  msgstr ""
1008
 
1009
+ #: app/helper/RTMediaThemes.php:132
1010
  msgid "product@rtcamp.com"
1011
  msgstr ""
1012
 
1237
  msgid "<strong>Public</strong> - Visible to the world"
1238
  msgstr ""
1239
 
1240
+ #: app/main/RTMedia.php:517 app/main/controllers/template/RTMediaNav.php:146
1241
  msgid "All"
1242
  msgstr ""
1243
 
1244
  #: app/main/RTMedia.php:526 app/main/controllers/media/RTMediaAlbum.php:54
1245
+ #: app/main/controllers/template/rt-template-functions.php:1054
1246
  msgid "Album"
1247
  msgstr ""
1248
 
1249
  #: app/main/RTMedia.php:529 app/main/controllers/media/RTMediaAlbum.php:53
1250
  #: app/main/controllers/media/RTMediaAlbum.php:65
1251
+ #: app/main/controllers/template/RTMediaNav.php:95
1252
+ #: app/main/controllers/template/RTMediaNav.php:167
1253
  msgid "Albums"
1254
  msgstr ""
1255
 
1256
  #: app/main/RTMedia.php:537
1257
+ #: app/main/controllers/template/rt-template-functions.php:1729
1258
+ #: app/main/controllers/template/rt-template-functions.php:1732
1259
  msgid "Upload"
1260
  msgstr ""
1261
 
1360
  msgstr ""
1361
 
1362
  #: app/main/RTMedia.php:828
1363
+ #: app/main/controllers/template/rt-template-functions.php:589
1364
+ #: app/main/controllers/template/rt-template-functions.php:610
1365
  msgid "Edit"
1366
  msgstr ""
1367
 
1368
  #: app/main/RTMedia.php:829
1369
+ #: app/main/controllers/template/rt-template-functions.php:1133
1370
+ #: app/main/controllers/template/rt-template-functions.php:1140
1371
  #: templates/media/album-single-edit.php:60
1372
  msgid "Delete"
1373
  msgstr ""
1404
  msgid "Media Files"
1405
  msgstr ""
1406
 
1407
+ #: app/main/controllers/api/RTMediaJsonApi.php:166
1408
  msgid "username/password empty"
1409
  msgstr ""
1410
 
1411
+ #: app/main/controllers/api/RTMediaJsonApi.php:169
1412
  msgid "incorrect username"
1413
  msgstr ""
1414
 
1415
+ #: app/main/controllers/api/RTMediaJsonApi.php:172
1416
  msgid "incorrect password"
1417
  msgstr ""
1418
 
1419
+ #: app/main/controllers/api/RTMediaJsonApi.php:175
1420
  msgid "login success"
1421
  msgstr ""
1422
 
1423
+ #: app/main/controllers/api/RTMediaJsonApi.php:221
1424
  msgid "fields empty"
1425
  msgstr ""
1426
 
1427
+ #: app/main/controllers/api/RTMediaJsonApi.php:224
1428
  msgid "invalid email"
1429
  msgstr ""
1430
 
1431
+ #: app/main/controllers/api/RTMediaJsonApi.php:227
1432
  msgid "password do not match"
1433
  msgstr ""
1434
 
1435
+ #: app/main/controllers/api/RTMediaJsonApi.php:230
1436
  msgid "username already registered"
1437
  msgstr ""
1438
 
1439
+ #: app/main/controllers/api/RTMediaJsonApi.php:233
1440
  msgid "email already exists"
1441
  msgstr ""
1442
 
1443
+ #: app/main/controllers/api/RTMediaJsonApi.php:236
1444
  msgid "new user created"
1445
  msgstr ""
1446
 
1447
+ #: app/main/controllers/api/RTMediaJsonApi.php:297
1448
  msgid "email empty"
1449
  msgstr ""
1450
 
1451
+ #: app/main/controllers/api/RTMediaJsonApi.php:300
1452
  msgid "username/email not registered"
1453
  msgstr ""
1454
 
1455
+ #: app/main/controllers/api/RTMediaJsonApi.php:303
1456
  msgid "reset link sent"
1457
  msgstr ""
1458
 
1459
+ #: app/main/controllers/api/RTMediaJsonApi.php:335
1460
  msgid ""
1461
  "Someone has asked to reset the password for the following site and username."
1462
  msgstr ""
1463
 
1464
+ #: app/main/controllers/api/RTMediaJsonApi.php:337
1465
  #, php-format
1466
  msgid "Username: %s"
1467
  msgstr ""
1468
 
1469
+ #: app/main/controllers/api/RTMediaJsonApi.php:338
1470
  msgid ""
1471
  "To reset your password visit the following address, otherwise just ignore "
1472
  "this email and nothing will happen."
1473
  msgstr ""
1474
 
1475
+ #: app/main/controllers/api/RTMediaJsonApi.php:341
1476
  #, php-format
1477
  msgid "[%s] Password Reset"
1478
  msgstr ""
1479
 
1480
+ #: app/main/controllers/api/RTMediaJsonApi.php:356
1481
  msgid "bp activities"
1482
  msgstr ""
1483
 
1484
+ #: app/main/controllers/api/RTMediaJsonApi.php:359
1485
  msgid "user activities"
1486
  msgstr ""
1487
 
1488
+ #: app/main/controllers/api/RTMediaJsonApi.php:389
1489
  msgid "comment content missing"
1490
  msgstr ""
1491
 
1492
+ #: app/main/controllers/api/RTMediaJsonApi.php:392
1493
  msgid "comment posted"
1494
  msgstr ""
1495
 
1496
+ #: app/main/controllers/api/RTMediaJsonApi.php:439
1497
  msgid "unliked media"
1498
  msgstr ""
1499
 
1500
+ #: app/main/controllers/api/RTMediaJsonApi.php:442
1501
  msgid "liked media"
1502
  msgstr ""
1503
 
1504
+ #: app/main/controllers/api/RTMediaJsonApi.php:526
1505
  msgid "no comments"
1506
  msgstr ""
1507
 
1508
+ #: app/main/controllers/api/RTMediaJsonApi.php:529
1509
  msgid "media comments"
1510
  msgstr ""
1511
 
1512
+ #: app/main/controllers/api/RTMediaJsonApi.php:532
1513
  msgid "my comments"
1514
  msgstr ""
1515
 
1516
+ #: app/main/controllers/api/RTMediaJsonApi.php:582
1517
  msgid "no likes"
1518
  msgstr ""
1519
 
1520
+ #: app/main/controllers/api/RTMediaJsonApi.php:585
1521
  msgid "media likes"
1522
  msgstr ""
1523
 
1524
+ #: app/main/controllers/api/RTMediaJsonApi.php:627
1525
  msgid "invalid comment/media id"
1526
  msgstr ""
1527
 
1528
+ #: app/main/controllers/api/RTMediaJsonApi.php:630
1529
  msgid "no comment id"
1530
  msgstr ""
1531
 
1532
+ #: app/main/controllers/api/RTMediaJsonApi.php:633
1533
  msgid "comment deleted"
1534
  msgstr ""
1535
 
1536
+ #: app/main/controllers/api/RTMediaJsonApi.php:676
1537
  msgid "no profile found"
1538
  msgstr ""
1539
 
1540
+ #: app/main/controllers/api/RTMediaJsonApi.php:679
1541
  msgid "profile fields"
1542
  msgstr ""
1543
 
1544
+ #: app/main/controllers/api/RTMediaJsonApi.php:773
1545
  msgid "follow user id missing"
1546
  msgstr ""
1547
 
1548
+ #: app/main/controllers/api/RTMediaJsonApi.php:776
1549
  msgid "started following"
1550
  msgstr ""
1551
 
1552
+ #: app/main/controllers/api/RTMediaJsonApi.php:779
1553
  msgid "already following"
1554
  msgstr ""
1555
 
1556
+ #: app/main/controllers/api/RTMediaJsonApi.php:811
1557
  msgid "unfollow id missing"
1558
  msgstr ""
1559
 
1560
+ #: app/main/controllers/api/RTMediaJsonApi.php:814
1561
  msgid "stopped following"
1562
  msgstr ""
1563
 
1564
+ #: app/main/controllers/api/RTMediaJsonApi.php:817
1565
  msgid "not following"
1566
  msgstr ""
1567
 
1568
+ #: app/main/controllers/api/RTMediaJsonApi.php:849
1569
  msgid "name/location empty"
1570
  msgstr ""
1571
 
1572
+ #: app/main/controllers/api/RTMediaJsonApi.php:852
1573
  msgid "profile updated"
1574
  msgstr ""
1575
 
1576
+ #: app/main/controllers/api/RTMediaJsonApi.php:878
1577
+ #: app/main/controllers/api/RTMediaJsonApi.php:905
1578
  msgid "no file"
1579
  msgstr ""
1580
 
1581
+ #: app/main/controllers/api/RTMediaJsonApi.php:881
1582
+ #: app/main/controllers/api/RTMediaJsonApi.php:917
1583
  msgid "upload failed, check size and file type"
1584
  msgstr ""
1585
 
1586
+ #: app/main/controllers/api/RTMediaJsonApi.php:884
1587
  msgid "avatar updated"
1588
  msgstr ""
1589
 
1590
+ #: app/main/controllers/api/RTMediaJsonApi.php:908
1591
  msgid "invalid file string"
1592
  msgstr ""
1593
 
1594
+ #: app/main/controllers/api/RTMediaJsonApi.php:911
1595
  msgid "image type missing"
1596
  msgstr ""
1597
 
1598
+ #: app/main/controllers/api/RTMediaJsonApi.php:914
1599
  msgid "no title"
1600
  msgstr ""
1601
 
1602
+ #: app/main/controllers/api/RTMediaJsonApi.php:920
1603
  msgid "media updated"
1604
  msgstr ""
1605
 
1606
+ #: app/main/controllers/api/RTMediaJsonApi.php:1042
1607
  msgid "media list"
1608
  msgstr ""
1609
 
1610
+ #: app/main/controllers/api/RTMediaJsonApi.php:1045
1611
  msgid "no media found for requested media type"
1612
  msgstr ""
1613
 
1614
+ #: app/main/controllers/api/RTMediaJsonApi.php:1048
1615
  msgid "media_type not allowed"
1616
  msgstr ""
1617
 
1618
+ #: app/main/controllers/api/RTMediaJsonApi.php:1133
1619
  msgid "single media"
1620
  msgstr ""
1621
 
1669
  msgstr ""
1670
 
1671
  #: app/main/controllers/media/RTMediaAlbum.php:56
1672
+ #: app/main/controllers/template/rt-template-functions.php:1390
1673
  msgid "Create Album"
1674
  msgstr ""
1675
 
1676
  #: app/main/controllers/media/RTMediaAlbum.php:57
1677
+ #: app/main/controllers/template/rt-template-functions.php:1464
1678
  msgid "Edit Album"
1679
  msgstr ""
1680
 
1747
  msgid "All "
1748
  msgstr ""
1749
 
1750
+ #: app/main/controllers/template/rt-template-functions.php:565
1751
+ #: app/main/controllers/template/rt-template-functions.php:1316
1752
  msgid "Options"
1753
  msgstr ""
1754
 
1755
+ #: app/main/controllers/template/rt-template-functions.php:655
1756
  msgid "There are no comments on this media yet."
1757
  msgstr ""
1758
 
1759
+ #: app/main/controllers/template/rt-template-functions.php:686
1760
  msgid "Delete Comment"
1761
  msgstr ""
1762
 
1763
+ #: app/main/controllers/template/rt-template-functions.php:888
1764
  msgid "Video Thumbnail"
1765
  msgstr ""
1766
 
1767
+ #: app/main/controllers/template/rt-template-functions.php:931
1768
  msgid "Video Thumbnail:"
1769
  msgstr ""
1770
 
1771
+ #: app/main/controllers/template/rt-template-functions.php:1008
1772
  msgid "Image"
1773
  msgstr ""
1774
 
1775
+ #: app/main/controllers/template/rt-template-functions.php:1023
1776
  msgid "Modify Image"
1777
  msgstr ""
1778
 
1779
+ #: app/main/controllers/template/rt-template-functions.php:1095
1780
  msgid "Type Comment..."
1781
  msgstr ""
1782
 
1783
+ #: app/main/controllers/template/rt-template-functions.php:1098
1784
  #: templates/media/media-single.php:71 templates/media/media-single.php:110
1785
  msgid "Comment"
1786
  msgstr ""
1787
 
1788
+ #: app/main/controllers/template/rt-template-functions.php:1133
1789
+ #: app/main/controllers/template/rt-template-functions.php:1140
1790
  msgid "Delete Media"
1791
  msgstr ""
1792
 
1793
+ #: app/main/controllers/template/rt-template-functions.php:1260
1794
  msgid "Profile Albums"
1795
  msgstr ""
1796
 
1797
+ #: app/main/controllers/template/rt-template-functions.php:1262
1798
+ #: app/main/controllers/template/rt-template-functions.php:1298
1799
  msgid "Group Albums"
1800
  msgstr ""
1801
 
1802
+ #: app/main/controllers/template/rt-template-functions.php:1371
1803
+ #: app/main/controllers/template/rt-template-functions.php:1384
1804
  msgid "Create New Album"
1805
  msgstr ""
1806
 
1807
+ #: app/main/controllers/template/rt-template-functions.php:1371
1808
  msgid "Add Album"
1809
  msgstr ""
1810
 
1811
+ #: app/main/controllers/template/rt-template-functions.php:1386
1812
  msgid "Album Title : "
1813
  msgstr ""
1814
 
1815
+ #: app/main/controllers/template/rt-template-functions.php:1419
1816
+ #: app/main/controllers/template/rt-template-functions.php:1424
1817
+ #: app/main/controllers/template/rt-template-functions.php:1475
1818
  msgid "Merge Album"
1819
  msgstr ""
1820
 
1821
+ #: app/main/controllers/template/rt-template-functions.php:1421
1822
  msgid "Select Album to merge with : "
1823
  msgstr ""
1824
 
1825
+ #: app/main/controllers/template/rt-template-functions.php:1467
1826
  msgid "Delete Album"
1827
  msgstr ""
1828
 
1829
+ #: app/main/controllers/template/rt-template-functions.php:1500
1830
  msgid "Merge"
1831
  msgstr ""
1832
 
1833
+ #: app/main/controllers/template/rt-template-functions.php:1549
1834
  #: app/main/controllers/upload/RTMediaUploadView.php:65
1835
  msgid "Privacy : "
1836
  msgstr ""
1837
 
1838
+ #: app/main/controllers/template/rt-template-functions.php:1719
1839
  msgid "people like this"
1840
  msgstr ""
1841
 
1842
+ #: app/main/controllers/template/rt-template-functions.php:1729
1843
+ #: app/main/controllers/template/rt-template-functions.php:1732
1844
  msgid "Upload Media"
1845
  msgstr ""
1846
 
1847
+ #: app/main/controllers/template/rt-template-functions.php:1775
1848
  msgid "Go PRO!"
1849
  msgstr ""
1850
 
1851
+ #: app/main/controllers/template/rt-template-functions.php:1796
1852
  msgid "Reasons to buy rtMedia-PRO"
1853
  msgstr ""
1854
 
1855
+ #: app/main/controllers/template/rt-template-functions.php:1801
1856
  msgid "RSS Feed/Podcasting Support"
1857
  msgstr ""
1858
 
1859
+ #: app/main/controllers/template/rt-template-functions.php:1802
1860
  msgid ""
1861
  "You can consume rtMedia uploads from iTunes as well as any feed-reader/"
1862
  "podcasting software."
1863
  msgstr ""
1864
 
1865
+ #: app/main/controllers/template/rt-template-functions.php:1808
1866
  msgid "WordPress Comment Attachment"
1867
  msgstr ""
1868
 
1869
+ #: app/main/controllers/template/rt-template-functions.php:1809
1870
  msgid "You can attach files to WordPress comments."
1871
  msgstr ""
1872
 
1873
+ #: app/main/controllers/template/rt-template-functions.php:1815
1874
  msgid "bbPress Attachment"
1875
  msgstr ""
1876
 
1877
+ #: app/main/controllers/template/rt-template-functions.php:1816
1878
  msgid "You can attach files to bbPress topic and reply."
1879
  msgstr ""
1880
 
1881
+ #: app/main/controllers/template/rt-template-functions.php:1822
1882
  msgid "Document Support"
1883
  msgstr ""
1884
 
1885
+ #: app/main/controllers/template/rt-template-functions.php:1823
1886
  msgid ""
1887
  "You can add, view and download documents like txt, doc, pdf, also add and "
1888
  "upload other file types like zip, tar and tar.gz etc."
1889
  msgstr ""
1890
 
1891
+ #: app/main/controllers/template/rt-template-functions.php:1829
1892
  msgid "CubePoints & MyCRED Integration"
1893
  msgstr ""
1894
 
1895
+ #: app/main/controllers/template/rt-template-functions.php:1830
1896
  msgid ""
1897
  "Integrating CubePoints/myCRED with rtMedia, you can reward users with "
1898
  "virtual points on rtMedia activities."
1899
  msgstr ""
1900
 
1901
+ #: app/main/controllers/template/rt-template-functions.php:1836
1902
  msgid "Album Privacy"
1903
  msgstr ""
1904
 
1905
+ #: app/main/controllers/template/rt-template-functions.php:1837
1906
  msgid ""
1907
  "This will allow you to set album privacy while creating albums or change "
1908
  "album privacy with editing albums too."
1909
  msgstr ""
1910
 
1911
+ #: app/main/controllers/template/rt-template-functions.php:1843
1912
  msgid "Audio Playlist"
1913
  msgstr ""
1914
 
1915
+ #: app/main/controllers/template/rt-template-functions.php:1844
1916
  msgid ""
1917
  "With this feature you can create your audio playlists and listen to your "
1918
  "favorite music at will."
1919
  msgstr ""
1920
 
1921
+ #: app/main/controllers/template/rt-template-functions.php:1850
1922
  msgid "Report Button & Moderation Tools"
1923
  msgstr ""
1924
 
1925
+ #: app/main/controllers/template/rt-template-functions.php:1851
1926
  msgid ""
1927
  "Users can report media if they find it offensive. Set number of reports to "
1928
  "automatically take down media."
1929
  msgstr ""
1930
 
1931
+ #: app/main/controllers/template/rt-template-functions.php:1857
1932
  msgid "Download Button For Media"
1933
  msgstr ""
1934
 
1935
+ #: app/main/controllers/template/rt-template-functions.php:1858
1936
  msgid ""
1937
  "Users can download photos, videos and music. Admin has option to allow "
1938
  "download the media."
1939
  msgstr ""
1940
 
1941
+ #: app/main/controllers/template/rt-template-functions.php:1864
1942
  msgid "Sidebar widgets"
1943
  msgstr ""
1944
 
1945
+ #: app/main/controllers/template/rt-template-functions.php:1865
1946
  msgid ""
1947
  "These will let you display a gallery or an uploader in a sidebar. Several of "
1948
  "them can be used in a single sidebar."
1949
  msgstr ""
1950
 
1951
+ #: app/main/controllers/template/rt-template-functions.php:1871
1952
  msgid "Post-editor button"
1953
  msgstr ""
1954
 
1955
+ #: app/main/controllers/template/rt-template-functions.php:1872
1956
  msgid ""
1957
  "With this button, a UI appears to quickly generate shortcodes for special "
1958
  "pages like \"Editorial Picks\"."
1959
  msgstr ""
1960
 
1961
+ #: app/main/controllers/template/rt-template-functions.php:1878
1962
  msgid "Star-Rating option"
1963
  msgstr ""
1964
 
1965
+ #: app/main/controllers/template/rt-template-functions.php:1879
1966
  msgid ""
1967
  "Users can give up to five stars to rate media. This data can be used for "
1968
  "\"Most Rated Media\" in sidebars."
1969
  msgstr ""
1970
 
1971
+ #: app/main/controllers/template/rt-template-functions.php:1885
1972
  msgid "Global Albums"
1973
  msgstr ""
1974
 
1975
+ #: app/main/controllers/template/rt-template-functions.php:1886
1976
  msgid ""
1977
  "Multiple global albums can be created beforehand. One of these can be chosen "
1978
  "as the default album."
1979
  msgstr ""
1980
 
1981
+ #: app/main/controllers/template/rt-template-functions.php:1892
1982
  msgid "Premium one-to-one support"
1983
  msgstr ""
1984
 
1985
+ #: app/main/controllers/template/rt-template-functions.php:1893
1986
  msgid ""
1987
  "Without leaving your WordPress dashboard, you can contact us for help using "
1988
  "a support form."
1989
  msgstr ""
1990
 
1991
+ #: app/main/controllers/template/rt-template-functions.php:1899
1992
  msgid "Premium & Open-Source"
1993
  msgstr ""
1994
 
1995
+ #: app/main/controllers/template/rt-template-functions.php:1900
1996
  msgid ""
1997
  "Developers get full control over rtMedia-PRO's source. They'll get access to "
1998
  msgstr ""
1999
 
2000
+ #: app/main/controllers/template/rt-template-functions.php:1906
2001
  msgid "Upgrade to rtMedia PRO Now "
2002
  msgstr ""
2003
 
2004
+ #: app/main/controllers/template/rt-template-functions.php:1917
2005
  msgid "You can consider rtMedia Team for following :"
2006
  msgstr ""
2007
 
2008
+ #: app/main/controllers/template/rt-template-functions.php:1919
2009
  msgid "rtMedia Customization ( in Upgrade Safe manner )"
2010
  msgstr ""
2011
 
2012
+ #: app/main/controllers/template/rt-template-functions.php:1920
2013
  msgid "Wordpress/BuddyPress Theme Design and Development"
2014
  msgstr ""
2015
 
2016
+ #: app/main/controllers/template/rt-template-functions.php:1921
2017
  msgid "Wordpress/BuddyPress Plugin Development"
2018
  msgstr ""
2019
 
2020
+ #: app/main/controllers/template/rt-template-functions.php:1925
2021
  msgid "Contact Us"
2022
  msgstr ""
2023
 
2024
+ #: app/main/controllers/template/rt-template-functions.php:1943
2025
  msgid "Empowering your community with "
2026
  msgstr ""
2027
 
2028
+ #: app/main/controllers/template/rt-template-functions.php:1944
2029
  msgid "The only complete media solution for WordPress, BuddyPress and bbPress"
2030
  msgstr ""
2031
 
2032
+ #: app/main/controllers/template/rt-template-functions.php:1958
2033
  msgid "Close (Esc)"
2034
  msgstr ""
2035
 
2036
+ #: app/main/controllers/template/rt-template-functions.php:1973
2037
  msgid "Public"
2038
  msgstr ""
2039
 
2040
+ #: app/main/controllers/template/rt-template-functions.php:1977
2041
  msgid "All members"
2042
  msgstr ""
2043
 
2044
+ #: app/main/controllers/template/rt-template-functions.php:1981
2045
  msgid "Your friends"
2046
  msgstr ""
2047
 
2048
+ #: app/main/controllers/template/rt-template-functions.php:1985
2049
  msgid "Only you"
2050
  msgstr ""
2051
 
2052
+ #: app/main/controllers/template/rt-template-functions.php:1989
2053
  msgid "Blocked Temperorily"
2054
  msgstr ""
2055
 
2056
+ #: app/main/controllers/template/rt-template-functions.php:2023
2057
  #, php-format
2058
  msgid "%s ago "
2059
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 3.7 + BuddyPress 1.8.1
9
- Stable tag: 3.6.2
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
@@ -132,6 +132,11 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
132
  == Changelog ==
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
 
 
 
 
 
135
  = 3.6.2 =
136
  * Bug fixes
137
 
@@ -700,8 +705,8 @@ Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_sou
700
 
701
  == Upgrade Notice ==
702
 
703
- = 3.6.2 =
704
- Requires BuddyPress 1.7 or higher, if using BuddyPress. Bug fixes.
705
 
706
  == Sponsors ==
707
 
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 3.7 + BuddyPress 1.8.1
9
+ Stable tag: 3.6.3
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
132
  == Changelog ==
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
+ = 3.6.3 =
136
+ * Fix lightbox issue after load more activity
137
+ * Update German and Russian language files
138
+ * Bug fixes
139
+
140
  = 3.6.2 =
141
  * Bug fixes
142
 
705
 
706
  == Upgrade Notice ==
707
 
708
+ = 3.6.3 =
709
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Lightbox fix in activity, bug fixes.
710
 
711
  == Sponsors ==
712