rtMedia for WordPress, BuddyPress and bbPress - Version 2.5.3

Version Description

  • Added option to toggle BuddyPress Media menu in admin bar
  • Added incomplete translations for German, Italian, French and Dutch languages
  • A few bug fixes.
Download this release

Release Info

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

Code changes from version 2.5.2 to 2.5.3

app/helper/BPMediaSettings.php CHANGED
@@ -46,6 +46,12 @@ if (!class_exists('BPMediaSettings')) {
46
  'option' => 'download_enabled',
47
  'desc' => __('Check to enable download functionality', BP_MEDIA_TXT_DOMAIN)
48
  ));
 
 
 
 
 
 
49
  add_settings_section('bpm-spread-the-word', __('Spread the Word', BP_MEDIA_TXT_DOMAIN), '', 'bp-media-settings');
50
  add_settings_field('bpm-spread-the-word-settings', __('Spread the Word', BP_MEDIA_TXT_DOMAIN), array($this, 'radio'), 'bp-media-settings', 'bpm-spread-the-word', array(
51
  'setting' => 'bp_media_options',
@@ -61,15 +67,8 @@ if (!class_exists('BPMediaSettings')) {
61
  'name' => __('Re-Count', BP_MEDIA_TXT_DOMAIN),
62
  'desc' => __('It will re-count all media entries of all users and correct any discrepancies.', BP_MEDIA_TXT_DOMAIN)
63
  ));
64
- /*add_settings_section('bpm-admin-bar-menu', __('Admin Bar Menu', BP_MEDIA_TXT_DOMAIN), '', 'bp-media-settings');
65
- add_settings_field('bpm-admin-bar-menu', __('Spread the Word', BP_MEDIA_TXT_DOMAIN), array($this, 'radio'), 'bp-media-settings', 'bpm-spread-the-word', array(
66
- 'setting' => 'bp_media_options',
67
- 'option' => 'remove_linkback',
68
- 'radios' => array(
69
- 2 => __('Yes, I support BuddyPress Media', BP_MEDIA_TXT_DOMAIN),
70
- 1 => __('No, I don\'t want to support BuddyPress Media', BP_MEDIA_TXT_DOMAIN)),
71
- 'default' => 2)
72
- );*/
73
  $bp_media_addon = new BPMediaAddon();
74
  add_settings_section('bpm-addons', __('BuddyPress Media Addons for Audio/Video Conversion', BP_MEDIA_TXT_DOMAIN), array($bp_media_addon, 'get_addons'), 'bp-media-addons');
75
  add_settings_section('bpm-support', __('Submit a request form', BP_MEDIA_TXT_DOMAIN), '', 'bp-media-support');
46
  'option' => 'download_enabled',
47
  'desc' => __('Check to enable download functionality', BP_MEDIA_TXT_DOMAIN)
48
  ));
49
+ add_settings_field('bpm-admin-bar-menu', __('Admin bar menu', BP_MEDIA_TXT_DOMAIN), array($this, 'checkbox'), 'bp-media-settings', 'bpm-settings', array(
50
+ 'setting' => 'bp_media_options',
51
+ 'option' => 'show_admin_menu',
52
+ 'desc' => __('Check to enable menu in WordPress admin bar', BP_MEDIA_TXT_DOMAIN)
53
+ )
54
+ );
55
  add_settings_section('bpm-spread-the-word', __('Spread the Word', BP_MEDIA_TXT_DOMAIN), '', 'bp-media-settings');
56
  add_settings_field('bpm-spread-the-word-settings', __('Spread the Word', BP_MEDIA_TXT_DOMAIN), array($this, 'radio'), 'bp-media-settings', 'bpm-spread-the-word', array(
57
  'setting' => 'bp_media_options',
67
  'name' => __('Re-Count', BP_MEDIA_TXT_DOMAIN),
68
  'desc' => __('It will re-count all media entries of all users and correct any discrepancies.', BP_MEDIA_TXT_DOMAIN)
69
  ));
70
+
71
+
 
 
 
 
 
 
 
72
  $bp_media_addon = new BPMediaAddon();
73
  add_settings_section('bpm-addons', __('BuddyPress Media Addons for Audio/Video Conversion', BP_MEDIA_TXT_DOMAIN), array($bp_media_addon, 'get_addons'), 'bp-media-addons');
74
  add_settings_section('bpm-support', __('Submit a request form', BP_MEDIA_TXT_DOMAIN), '', 'bp-media-support');
app/main/BuddyPressMedia.php CHANGED
@@ -192,7 +192,7 @@ class BuddyPressMedia {
192
  }
193
 
194
  /**
195
- *
196
  * @global BPMediaAdmin $bp_media_admin
197
  */
198
  function init() {
@@ -218,7 +218,7 @@ class BuddyPressMedia {
218
  }
219
 
220
  /**
221
- *
222
  * @param type $links
223
  * @param type $file
224
  * @return type
@@ -236,7 +236,7 @@ class BuddyPressMedia {
236
  }
237
 
238
  /**
239
- *
240
  * @return type
241
  */
242
  function media_sizes() {
@@ -269,7 +269,7 @@ class BuddyPressMedia {
269
  }
270
 
271
  /**
272
- *
273
  * @global type $bp_media_default_excerpts
274
  */
275
  function excerpt_lengths() {
@@ -285,7 +285,7 @@ class BuddyPressMedia {
285
  }
286
 
287
  /**
288
- *
289
  * @global type $current_user
290
  */
291
  public function admin_notice() {
@@ -325,7 +325,7 @@ class BuddyPressMedia {
325
  }
326
 
327
  /**
328
- *
329
  * @param type $path
330
  * @param type $scheme
331
  * @return type
@@ -344,8 +344,6 @@ class BuddyPressMedia {
344
  }
345
 
346
  function widgets_init() {
347
- register_widget('BPMediaRecentMedia');
348
- register_widget('BPMediaPopularMedia');
349
  register_widget('BPMediaWidget');
350
  }
351
 
192
  }
193
 
194
  /**
195
+ *
196
  * @global BPMediaAdmin $bp_media_admin
197
  */
198
  function init() {
218
  }
219
 
220
  /**
221
+ *
222
  * @param type $links
223
  * @param type $file
224
  * @return type
236
  }
237
 
238
  /**
239
+ *
240
  * @return type
241
  */
242
  function media_sizes() {
269
  }
270
 
271
  /**
272
+ *
273
  * @global type $bp_media_default_excerpts
274
  */
275
  function excerpt_lengths() {
285
  }
286
 
287
  /**
288
+ *
289
  * @global type $current_user
290
  */
291
  public function admin_notice() {
325
  }
326
 
327
  /**
328
+ *
329
  * @param type $path
330
  * @param type $scheme
331
  * @return type
344
  }
345
 
346
  function widgets_init() {
 
 
347
  register_widget('BPMediaWidget');
348
  }
349
 
app/main/importers/BPMediaBPActivityPlusImporter.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of BPMediaBPActivityPlusImporter
10
+ *
11
+ * @author saurabh
12
+ */
13
+ class BPMediaBPActivityPlusImporter extends BPMediaImporter {
14
+
15
+ /**
16
+ *
17
+ */
18
+ function __construct() {
19
+ parent::__construct();
20
+
21
+ }
22
+
23
+ }
24
+
25
+ ?>
app/main/importers/BPMediaBPAlbumImporter.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of BPMediaBPAlbumImporter
10
+ *
11
+ * @author saurabh
12
+ */
13
+ class BPMediaBPAlbumImporter extends BPMediaImporter {
14
+
15
+ function __construct() {
16
+ parent::__construct();
17
+ }
18
+
19
+ }
20
+
21
+ ?>
app/main/importers/BPMediaImporter.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of BPMediaImporter
10
+ *
11
+ * @author saurabh
12
+ */
13
+ class BPMediaImporter {
14
+
15
+ /**
16
+ *
17
+ */
18
+ function __construct() {
19
+
20
+ }
21
+
22
+ function import(){
23
+
24
+ $this->process_media();
25
+
26
+ }
27
+
28
+ function process_media(){
29
+
30
+ $this->import_privacy();
31
+ $this->cleanup();
32
+
33
+ }
34
+
35
+ function cleanup(){
36
+
37
+ }
38
+
39
+ function import_privacy(){
40
+
41
+ }
42
+
43
+ }
44
+
45
+ ?>
app/main/includes/BPMediaFilters.php CHANGED
@@ -18,7 +18,10 @@ class BPMediaFilters {
18
  // and we hook our function via wp_before_admin_bar_render
19
  add_action('admin_bar_menu', array($this, 'my_account_menu'), 1);
20
  // and we hook our function via wp_before_admin_bar_render
21
- add_action('wp_before_admin_bar_render', 'BPMediaFilters::adminbar_settings_menu');
 
 
 
22
  global $bp_media_activity_types;
23
  $bp_media_activity_types = array('media_upload', 'album_updated', 'album_created');
24
  }
18
  // and we hook our function via wp_before_admin_bar_render
19
  add_action('admin_bar_menu', array($this, 'my_account_menu'), 1);
20
  // and we hook our function via wp_before_admin_bar_render
21
+ global $bp_media;
22
+ if(isset($bp_media->options['show_admin_menu']) && ($bp_media->options['show_admin_menu']==true)){
23
+ add_action('wp_before_admin_bar_render', 'BPMediaFilters::adminbar_settings_menu');
24
+ }
25
  global $bp_media_activity_types;
26
  $bp_media_activity_types = array('media_upload', 'album_updated', 'album_created');
27
  }
app/main/privacy/BPMediaPrivacy.php ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of BPMediaPrivacy
10
+ *
11
+ * @author saurabh
12
+ */
13
+ class BPMediaPrivacy {
14
+
15
+ var $settings = array(
16
+ 'private' => false,
17
+ 'friends' => false,
18
+ 'users' => false,
19
+ 'public' => true
20
+ );
21
+
22
+ var $enabled = false;
23
+
24
+ var $contexts = array(
25
+ 'site' => false,
26
+ 'group' => false,
27
+ 'profile' => true
28
+ );
29
+
30
+
31
+ /**
32
+ *
33
+ */
34
+ function __construct() {
35
+
36
+ }
37
+
38
+ function privacy_ui() {
39
+
40
+ }
41
+
42
+ function save( $context = '', $settings = array( ), $object_id = false, $object_type = 'media' ) {
43
+ if ( empty( $settings ) )
44
+ return false;
45
+
46
+ $defaults = $this->settings;
47
+ $settings = wp_parse_args( $settings, $defaults );
48
+ return $this->save_by_object( $context, $settings, $object_id, $object_type );
49
+ }
50
+
51
+ private function save_by_object( $context = '', $settings = array( ), $object_id = false, $object_type = 'media' ) {
52
+ if($object_id==false)
53
+ return false;
54
+
55
+ $settings = apply_filters('bp_media_save_privacy', $settings);
56
+
57
+ switch ($object_type){
58
+ case 'media':
59
+ return update_post_meta($object_id,'bp_media_privacy',$settings);
60
+ break;
61
+ case 'profile':
62
+ return update_user_meta($object_id,'bp_media_privacy',$settings);
63
+ break;
64
+ case 'activity':
65
+ break;
66
+ case 'group':
67
+ break;
68
+
69
+ }
70
+ //do_action('bp_media_non_media_privacy',$object_id, $settings);
71
+
72
+ }
73
+ function check($object_id=false, $object_type='media'){
74
+ if($object_id==false)
75
+ return;
76
+ switch ($object_type){
77
+ case 'media':
78
+ $settings = get_post_meta($object_id,'bp_media_privacy');
79
+ break;
80
+ case 'profile':
81
+ get_user_meta($object_id,'bp_media_privacy',$settings);
82
+ return update_user_meta($object_id,'bp_media_privacy',$settings);
83
+ break;
84
+ case 'activity':
85
+ break;
86
+ case 'group':
87
+ break;
88
+
89
+ }
90
+
91
+
92
+ }
93
+
94
+ function get_friends(){
95
+
96
+ }
97
+
98
+
99
+ }
100
+
101
+ ?>
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: BuddyPress Media
4
  Plugin URI: http://rtcamp.com/buddypress-media/
5
  Description: This plugin adds missing media rich features like photos, videos and audios uploading to BuddyPress which are essential if you are building social network, seriously!
6
- Version: 2.5.2
7
  Author: rtCamp
8
  Text Domain: buddypress-media
9
  Author URI: http://rtcamp.com
3
  Plugin Name: BuddyPress Media
4
  Plugin URI: http://rtcamp.com/buddypress-media/
5
  Description: This plugin adds missing media rich features like photos, videos and audios uploading to BuddyPress which are essential if you are building social network, seriously!
6
+ Version: 2.5.3
7
  Author: rtCamp
8
  Text Domain: buddypress-media
9
  Author URI: http://rtcamp.com
languages/buddypress-media-de.mo ADDED
Binary file
languages/buddypress-media-es.mo CHANGED
Binary file
languages/buddypress-media-fr.mo ADDED
Binary file
languages/buddypress-media-it.mo ADDED
Binary file
languages/buddypress-media-ja.mo CHANGED
Binary file
languages/buddypress-media-nl.mo ADDED
Binary file
languages/buddypress-media-pt_BR.mo CHANGED
Binary file
languages/buddypress-media.mo CHANGED
Binary file
languages/buddypress-media.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: 2013-02-05 17:32+0530\n"
6
- "PO-Revision-Date: 2013-02-05 17:32+0530\n"
7
  "Last-Translator: Saurabh Shukla <saurabh.shukla@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: \n"
@@ -16,290 +16,298 @@ msgstr ""
16
  "X-Poedit-Country: India\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: app/helper/BPMediaFeed.php:38
20
  msgid "No items"
21
  msgstr ""
22
 
23
- #: app/helper/BPMediaFeed.php:44
24
  msgid "Posted "
25
  msgstr ""
26
 
27
- #: app/helper/BPMediaSettings.php:23
28
  msgid "BuddyPress Media Settings"
29
  msgstr ""
30
 
31
- #: app/helper/BPMediaSettings.php:24
32
  msgid "Video"
33
  msgstr ""
34
 
35
- #: app/helper/BPMediaSettings.php:27
36
  msgid "Check to enable video upload functionality"
37
  msgstr ""
38
 
39
- #: app/helper/BPMediaSettings.php:29
40
  msgid "Audio"
41
  msgstr ""
42
 
43
- #: app/helper/BPMediaSettings.php:32
44
  msgid "Check to enable audio upload functionality"
45
  msgstr ""
46
 
47
- #: app/helper/BPMediaSettings.php:34
48
  msgid "Images"
49
  msgstr ""
50
 
51
- #: app/helper/BPMediaSettings.php:37
52
  msgid "Check to enable images upload functionality"
53
  msgstr ""
54
 
55
- #: app/helper/BPMediaSettings.php:39
56
  msgid "Download"
57
  msgstr ""
58
 
59
- #: app/helper/BPMediaSettings.php:42
60
  msgid "Check to enable download functionality"
61
  msgstr ""
62
 
63
- #: app/helper/BPMediaSettings.php:44
64
- #: app/helper/BPMediaSettings.php:45
 
 
 
 
 
 
 
 
65
  msgid "Spread the Word"
66
  msgstr ""
67
 
68
- #: app/helper/BPMediaSettings.php:49
69
  msgid "Yes, I support BuddyPress Media"
70
  msgstr ""
71
 
72
- #: app/helper/BPMediaSettings.php:50
73
  msgid "No, I don't want to support BuddyPress Media"
74
  msgstr ""
75
 
76
- #: app/helper/BPMediaSettings.php:53
77
  msgid "BuddyPress Media Other Options"
78
  msgstr ""
79
 
80
- #: app/helper/BPMediaSettings.php:54
81
  msgid "Re-Count Media Entries"
82
  msgstr ""
83
 
84
- #: app/helper/BPMediaSettings.php:56
85
  msgid "Re-Count"
86
  msgstr ""
87
 
88
- #: app/helper/BPMediaSettings.php:57
89
  msgid "It will re-count all media entries of all users and correct any discrepancies."
90
  msgstr ""
91
 
92
- #: app/helper/BPMediaSettings.php:60
93
  msgid "BuddyPress Media Addons for Audio/Video Conversion"
94
  msgstr ""
95
 
96
- #: app/helper/BPMediaSettings.php:61
97
  msgid "Submit a request form"
98
  msgstr ""
99
 
100
- #: app/helper/BPMediaSettings.php:62
101
  msgid "Request Type"
102
  msgstr ""
103
 
104
- #: app/helper/BPMediaSettings.php:63
105
  msgid "Select One"
106
  msgstr ""
107
 
108
- #: app/helper/BPMediaSettings.php:64
109
  msgid "Premium Support"
110
  msgstr ""
111
 
112
- #: app/helper/BPMediaSettings.php:65
113
  msgid "Suggest a New Feature"
114
  msgstr ""
115
 
116
- #: app/helper/BPMediaSettings.php:66
117
  msgid "Submit a Bug Report"
118
  msgstr ""
119
 
120
- #: app/helper/BPMediaSettings.php:92
121
- #: app/helper/BPMediaSettings.php:94
122
  msgid "Recounting of media files done successfully"
123
  msgstr ""
124
 
125
- #: app/helper/BPMediaSettings.php:94
126
  msgid "Recount Success"
127
  msgstr ""
128
 
129
- #: app/helper/BPMediaSettings.php:97
130
- #: app/helper/BPMediaSettings.php:99
131
  msgid "Recounting Failed"
132
  msgstr ""
133
 
134
- #: app/helper/BPMediaSettings.php:99
135
  msgid "Recount Fail"
136
  msgstr ""
137
 
138
- #: app/helper/BPMediaSettings.php:103
139
  msgid "Settings saved."
140
  msgstr ""
141
 
142
- #: app/helper/BPMediaSettings.php:125
143
  msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
144
  msgstr ""
145
 
146
- #: app/helper/BPMediaSettings.php:163
147
- #: app/helper/BPMediaSettings.php:203
148
- #: app/helper/BPMediaSettings.php:241
149
  msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
150
  msgstr ""
151
 
152
- #: app/helper/BPMediaSettings.php:165
153
  msgid "Need to specify atleast to radios else use a checkbox instead"
154
  msgstr ""
155
 
156
- #: app/helper/BPMediaSettings.php:243
157
  msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
158
  msgstr ""
159
 
160
- #: app/helper/BPMediaAdminWidget.php:22
161
  msgid "Argument missing. id is required."
162
  msgstr ""
163
 
164
- #: app/helper/BPMediaSupport.php:26
165
  msgid "Submit a New Feature Request"
166
  msgstr ""
167
 
168
- #: app/helper/BPMediaSupport.php:29
169
  msgid "Submit a Premium Support Request"
170
  msgstr ""
171
 
172
- #: app/helper/BPMediaSupport.php:37
173
- #: app/helper/BPMediaSupport.php:117
174
  msgid "Name"
175
  msgstr ""
176
 
177
- #: app/helper/BPMediaSupport.php:40
178
- #: app/helper/BPMediaSupport.php:120
179
  msgid "Email"
180
  msgstr ""
181
 
182
- #: app/helper/BPMediaSupport.php:43
183
- #: app/helper/BPMediaSupport.php:123
184
  msgid "Website"
185
  msgstr ""
186
 
187
- #: app/helper/BPMediaSupport.php:46
188
- #: app/helper/BPMediaSupport.php:126
189
  msgid "Phone"
190
  msgstr ""
191
 
192
- #: app/helper/BPMediaSupport.php:49
193
- #: app/helper/BPMediaSupport.php:129
194
  msgid "Subject"
195
  msgstr ""
196
 
197
- #: app/helper/BPMediaSupport.php:52
198
- #: app/helper/BPMediaSupport.php:132
199
  msgid "Details"
200
  msgstr ""
201
 
202
- #: app/helper/BPMediaSupport.php:63
203
  msgid "Additional Information"
204
  msgstr ""
205
 
206
- #: app/helper/BPMediaSupport.php:68
207
  msgid "Your WP Admin Login:"
208
  msgstr ""
209
 
210
- #: app/helper/BPMediaSupport.php:71
211
  msgid "Your WP Admin password:"
212
  msgstr ""
213
 
214
- #: app/helper/BPMediaSupport.php:74
215
  msgid "Your SSH / FTP host:"
216
  msgstr ""
217
 
218
- #: app/helper/BPMediaSupport.php:77
219
  msgid "Your SSH / FTP login:"
220
  msgstr ""
221
 
222
- #: app/helper/BPMediaSupport.php:80
223
  msgid "Your SSH / FTP password:"
224
  msgstr ""
225
 
226
- #: app/helper/BPMediaSupport.php:99
227
  msgid "BuddyPress Media Premium Support Request from"
228
  msgstr ""
229
 
230
- #: app/helper/BPMediaSupport.php:102
231
  msgid "BuddyPress Media New Feature Request from"
232
  msgstr ""
233
 
234
- #: app/helper/BPMediaSupport.php:105
235
  msgid "BuddyPress Media Bug Report from"
236
  msgstr ""
237
 
238
- #: app/helper/BPMediaSupport.php:108
239
  msgid "BuddyPress Media Contact from"
240
  msgstr ""
241
 
242
- #: app/helper/BPMediaSupport.php:135
243
  msgid "Request ID"
244
  msgstr ""
245
 
246
- #: app/helper/BPMediaSupport.php:138
247
  msgid "Server Address"
248
  msgstr ""
249
 
250
- #: app/helper/BPMediaSupport.php:141
251
  msgid "IP Address"
252
  msgstr ""
253
 
254
- #: app/helper/BPMediaSupport.php:144
255
  msgid "Server Type"
256
  msgstr ""
257
 
258
- #: app/helper/BPMediaSupport.php:147
259
  msgid "User Agent"
260
  msgstr ""
261
 
262
- #: app/helper/BPMediaSupport.php:151
263
  msgid "WordPress Admin Username"
264
  msgstr ""
265
 
266
- #: app/helper/BPMediaSupport.php:154
267
  msgid "WordPress Admin Password"
268
  msgstr ""
269
 
270
- #: app/helper/BPMediaSupport.php:157
271
  msgid "SSH FTP Host"
272
  msgstr ""
273
 
274
- #: app/helper/BPMediaSupport.php:160
275
  msgid "SSH FTP Username"
276
  msgstr ""
277
 
278
- #: app/helper/BPMediaSupport.php:163
279
  msgid "SSH FTP Password"
280
  msgstr ""
281
 
282
- #: app/helper/BPMediaSupport.php:174
283
  msgid "Thank you for your Feedback/Suggestion."
284
  msgstr ""
285
 
286
- #: app/helper/BPMediaSupport.php:176
287
  msgid "Thank you for posting your support request."
288
  msgstr ""
289
 
290
- #: app/helper/BPMediaSupport.php:177
291
  msgid "We will get back to you shortly."
292
  msgstr ""
293
 
294
- #: app/helper/BPMediaSupport.php:180
295
  msgid "Your server failed to send an email."
296
  msgstr ""
297
 
298
- #: app/helper/BPMediaSupport.php:181
299
  msgid "Kindly contact your server support to fix this."
300
  msgstr ""
301
 
302
- #: app/helper/BPMediaSupport.php:182
303
  #, php-format
304
  msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
305
  msgstr ""
@@ -328,182 +336,182 @@ msgstr ""
328
  msgid "Media node comes with automated setup script for Ubuntu/Debian."
329
  msgstr ""
330
 
331
- #: app/helper/BPMediaAddon.php:84
332
  msgid "Buy Now"
333
  msgstr ""
334
 
335
- #: app/helper/BPMediaAddon.php:85
336
  msgid "Live Demo"
337
  msgstr ""
338
 
339
- #: app/helper/BPMediaUpgrade.php:30
340
  #, php-format
341
  msgid "Please click upgrade to upgrade the database of BuddyPress Media <a class=\"button\" id=\"refresh_media_count\" href =\"%s\" class=\"button\" title=\"It will migrate your BuddyPress Media's earlier database to new database.\">Upgrade</a>"
342
  msgstr ""
343
 
344
- #: app/helper/BPMediaUpgrade.php:58
345
- #: app/main/profile/BPMediaTemplate.php:15
346
  msgid "Wall Posts"
347
  msgstr ""
348
 
349
- #: app/helper/BPMediaUpgrade.php:103
350
- #: app/helper/BPMediaUpgrade.php:156
351
- #: app/main/group/BPMediaGroupAction.php:99
352
  #, php-format
353
  msgid "%1$s added a %2$s"
354
  msgstr ""
355
 
356
- #: app/admin/BPMediaAdmin.php:57
357
  msgid "BuddyPress Media Component"
358
  msgstr ""
359
 
360
- #: app/admin/BPMediaAdmin.php:57
361
- #: app/admin/BPMediaAdmin.php:148
362
- #: app/admin/BPMediaAdmin.php:149
363
  msgid "BuddyPress Media"
364
  msgstr ""
365
 
366
- #: app/admin/BPMediaAdmin.php:58
367
- #: app/admin/BPMediaAdmin.php:176
368
- #: app/main/BuddyPressMedia.php:222
369
  msgid "Settings"
370
  msgstr ""
371
 
372
- #: app/admin/BPMediaAdmin.php:59
373
- #: app/admin/BPMediaAdmin.php:182
374
  msgid "BuddyPress Media Addons"
375
  msgstr ""
376
 
377
- #: app/admin/BPMediaAdmin.php:59
378
- #: app/admin/BPMediaAdmin.php:183
379
  msgid "Addons"
380
  msgstr ""
381
 
382
- #: app/admin/BPMediaAdmin.php:60
383
- #: app/admin/BPMediaAdmin.php:189
384
  msgid "BuddyPress Media Support"
385
  msgstr ""
386
 
387
- #: app/admin/BPMediaAdmin.php:60
388
  msgid "Support "
389
  msgstr ""
390
 
391
- #: app/admin/BPMediaAdmin.php:98
392
  #: app/main/BuddyPressMedia.php:155
393
  #: app/main/BuddyPressMedia.php:158
394
  msgid "Media"
395
  msgstr ""
396
 
397
- #: app/admin/BPMediaAdmin.php:190
398
  msgid "Support"
399
  msgstr ""
400
 
401
- #: app/admin/BPMediaAdmin.php:264
402
  msgid "Empowering The Web With WordPress"
403
  msgstr ""
404
 
405
- #: app/admin/BPMediaAdmin.php:264
406
  msgid "rtCamp"
407
  msgstr ""
408
 
409
- #: app/admin/BPMediaAdmin.php:266
410
  msgid "Become a fan on Facebook"
411
  msgstr ""
412
 
413
- #: app/admin/BPMediaAdmin.php:266
414
  msgid "Facebook"
415
  msgstr ""
416
 
417
- #: app/admin/BPMediaAdmin.php:267
418
  msgid "Follow us on Twitter"
419
  msgstr ""
420
 
421
- #: app/admin/BPMediaAdmin.php:267
422
  msgid "Twitter"
423
  msgstr ""
424
 
425
- #: app/admin/BPMediaAdmin.php:268
426
  msgid "Subscribe to our feeds"
427
  msgstr ""
428
 
429
- #: app/admin/BPMediaAdmin.php:268
430
  msgid "RSS Feed"
431
  msgstr ""
432
 
433
- #: app/admin/BPMediaAdmin.php:273
434
  msgid "Read FAQ"
435
  msgstr ""
436
 
437
- #: app/admin/BPMediaAdmin.php:274
438
  msgid "Free Support Forum"
439
  msgstr ""
440
 
441
- #: app/admin/BPMediaAdmin.php:275
442
  msgid "Github Issue Tracker"
443
  msgstr ""
444
 
445
- #: app/admin/BPMediaAdmin.php:276
446
  msgid "Hire Us!"
447
  msgstr ""
448
 
449
- #: app/admin/BPMediaAdmin.php:276
450
  msgid "To get professional customisation/setup service."
451
  msgstr ""
452
 
453
- #: app/admin/BPMediaAdmin.php:278
454
  msgid "Need Help?"
455
  msgstr ""
456
 
457
- #: app/admin/BPMediaAdmin.php:280
458
  msgid "Help the development keep going."
459
  msgstr ""
460
 
461
- #: app/admin/BPMediaAdmin.php:281
462
  msgid "Help us release more amazing features faster. Consider making a donation to our consistent efforts."
463
  msgstr ""
464
 
465
- #: app/admin/BPMediaAdmin.php:282
466
  msgid "Donate"
467
  msgstr ""
468
 
469
- #: app/admin/BPMediaAdmin.php:285
470
  msgid "BuddyPress Media Kaltura"
471
  msgstr ""
472
 
473
- #: app/admin/BPMediaAdmin.php:285
474
  msgid "BPM-Kaltura"
475
  msgstr ""
476
 
477
- #: app/admin/BPMediaAdmin.php:285
478
  msgid "Add support for Kaltura.com/Kaltura-CE based video conversion support"
479
  msgstr ""
480
 
481
- #: app/admin/BPMediaAdmin.php:286
482
  msgid "BuddyPress Media FFMPEG"
483
  msgstr ""
484
 
485
- #: app/admin/BPMediaAdmin.php:286
486
  msgid "BPM-FFMPEG"
487
  msgstr ""
488
 
489
- #: app/admin/BPMediaAdmin.php:286
490
  msgid "Add FFMEG-based audio/video conversion support"
491
  msgstr ""
492
 
493
- #: app/admin/BPMediaAdmin.php:288
494
  msgid "Are you a developer?"
495
  msgstr ""
496
 
497
- #: app/admin/BPMediaAdmin.php:289
498
  #, php-format
499
  msgid "If you are developing a BuddyPress Media addon we would like to include it in above list. We can also help you sell them. <a href=\"%s\">More info!</a>"
500
  msgstr ""
501
 
502
- #: app/admin/BPMediaAdmin.php:290
503
  msgid "Premium Addons"
504
  msgstr ""
505
 
506
- #: app/admin/BPMediaAdmin.php:293
507
  msgid "Latest News"
508
  msgstr ""
509
 
@@ -545,272 +553,227 @@ msgstr ""
545
  msgid "Upload"
546
  msgstr ""
547
 
548
- #: app/main/BuddyPressMedia.php:280
549
  #, php-format
550
  msgid "The BuddyPress version installed is an older version and is not supported, please update BuddyPress to use BuddyPress Media Plugin.<a class=\"alignright\" href=\"%1$s\">X</a>"
551
  msgstr ""
552
 
553
- #: app/main/BuddyPressMedia.php:285
554
  #, php-format
555
  msgid "You have not installed BuddyPress. Please install latest version of BuddyPress to use BuddyPress Media plugin.<a class=\"alignright\" href=\"%1$s\">X</a>"
556
  msgstr ""
557
 
558
- #: app/main/profile/BPMediaTemplate.php:18
559
- #: app/main/profile/BPMediaTemplate.php:182
560
  msgid "Select Album"
561
  msgstr ""
562
 
563
- #: app/main/profile/BPMediaTemplate.php:53
564
  msgid "+ Create New Album"
565
  msgstr ""
566
 
567
- #: app/main/profile/BPMediaTemplate.php:59
568
- #: app/main/profile/BPMediaTemplate.php:218
569
  msgid "Create"
570
  msgstr ""
571
 
572
- #: app/main/profile/BPMediaTemplate.php:60
573
  msgid "Cancel"
574
  msgstr ""
575
 
576
- #: app/main/profile/BPMediaTemplate.php:69
577
  msgid "Drop files here"
578
  msgstr ""
579
 
580
- #: app/main/profile/BPMediaTemplate.php:70
581
  msgid " or "
582
  msgstr ""
583
 
584
- #: app/main/profile/BPMediaTemplate.php:71
585
  msgid "Select Files"
586
  msgstr ""
587
 
588
- #: app/main/profile/BPMediaTemplate.php:157
589
  msgid "Show More"
590
  msgstr ""
591
 
592
- #: app/main/profile/BPMediaTemplate.php:183
593
- #: app/main/profile/BPMediaTemplate.php:211
594
  msgid "x"
595
  msgstr ""
596
 
597
- #: app/main/profile/BPMediaTemplate.php:203
598
  msgid "Select"
599
  msgstr ""
600
 
601
- #: app/main/profile/BPMediaTemplate.php:204
602
- #: app/main/profile/BPMediaTemplate.php:210
603
  msgid "Create Album"
604
  msgstr ""
605
 
606
- #: app/main/profile/BPMediaTemplate.php:214
607
  msgid "Album Name"
608
  msgstr ""
609
 
610
- #: app/main/profile/BPMediaTemplate.php:222
611
  msgid "Add Media"
612
  msgstr ""
613
 
614
- #: app/main/profile/BPMediaScreen.php:102
615
- #: app/main/profile/BPMediaScreen.php:334
616
  msgid "The requested url does not exist"
617
  msgstr ""
618
 
619
- #: app/main/profile/BPMediaScreen.php:113
620
  #, php-format
621
  msgid "%s List Page"
622
  msgstr ""
623
 
624
- #: app/main/profile/BPMediaScreen.php:176
625
- #: app/main/profile/BPMediaAlbumScreen.php:59
626
  #, php-format
627
  msgid "Sorry, no %s were found."
628
  msgstr ""
629
 
630
- #: app/main/profile/BPMediaScreen.php:278
631
  #, php-format
632
  msgid "Edit %s"
633
  msgstr ""
634
 
635
- #: app/main/profile/BPMediaScreen.php:293
636
  #, php-format
637
  msgid "%s Title"
638
  msgstr ""
639
 
640
- #: app/main/profile/BPMediaScreen.php:300
641
  #, php-format
642
  msgid "%s Description"
643
  msgstr ""
644
 
645
- #: app/main/profile/BPMediaScreen.php:308
646
  msgid "Update"
647
  msgstr ""
648
 
649
- #: app/main/profile/BPMediaScreen.php:309
650
  msgid "Back to Media File"
651
  msgstr ""
652
 
653
- #: app/main/profile/BPMediaScreen.php:310
654
  msgid "Back to Media"
655
  msgstr ""
656
 
657
- #: app/main/profile/BPMediaScreen.php:327
658
  msgid "You do not have access to this page."
659
  msgstr ""
660
 
661
- #: app/main/profile/BPMediaScreen.php:355
662
  msgid "Media deleted successfully"
663
  msgstr ""
664
 
665
- #: app/main/profile/BPMediaUploadScreen.php:28
666
  msgid "Upload Media"
667
  msgstr ""
668
 
669
- #: app/main/profile/BPMediaUploadScreen.php:70
670
  msgid "You are not allowed to be here"
671
  msgstr ""
672
 
673
- #: app/main/profile/BPMediaUploadScreen.php:92
674
- #: app/main/profile/BPMediaUploadScreen.php:116
675
  msgid "File uploaded is not supported"
676
  msgstr ""
677
 
678
- #: app/main/profile/BPMediaUploadScreen.php:99
679
  msgid "Image uploads are disabled"
680
  msgstr ""
681
 
682
- #: app/main/profile/BPMediaUploadScreen.php:105
683
  msgid "Video uploads are disabled"
684
  msgstr ""
685
 
686
- #: app/main/profile/BPMediaUploadScreen.php:111
687
  msgid "Audio uploads are disabled"
688
  msgstr ""
689
 
690
- #: app/main/profile/BPMediaUploadScreen.php:129
691
  msgid "Upload Successful"
692
  msgstr ""
693
 
694
- #: app/main/profile/BPMediaUploadScreen.php:134
695
  msgid "You did not specified a file to upload"
696
  msgstr ""
697
 
698
- #: app/main/profile/BPMediaAlbumScreen.php:86
699
  msgid "Rename Album"
700
  msgstr ""
701
 
702
- #: app/main/profile/BPMediaAlbumScreen.php:86
703
  msgid "Rename"
704
  msgstr ""
705
 
706
- #: app/main/profile/BPMediaAlbumScreen.php:87
707
  msgid "Delete"
708
  msgstr ""
709
 
710
- #: app/main/profile/BPMediaAlbumScreen.php:106
711
  msgid "Sorry, no media items were found in this album."
712
  msgstr ""
713
 
714
- #: app/main/profile/BPMediaAlbum.php:60
715
  msgid "Sorry, the requested album does not exist."
716
  msgstr ""
717
 
718
- #: app/main/group/BPMediaGroupElementExtension.php:68
719
  msgid "Sorry, the requested media does not belong to the group"
720
  msgstr ""
721
 
722
- #: app/main/group/BPMediaGroup.php:180
723
  msgid "Media Settings"
724
  msgstr ""
725
 
726
- #: app/main/group/BPMediaGroupsExtension.php:31
727
- #: app/main/group/BPMediaGroupsExtension.php:69
728
  msgid "Album Creation Control"
729
  msgstr ""
730
 
731
- #: app/main/group/BPMediaGroupsExtension.php:32
732
- #: app/main/group/BPMediaGroupsExtension.php:70
733
  msgid "Who can create Albums in this group?"
734
  msgstr ""
735
 
736
- #: app/main/group/BPMediaGroupsExtension.php:36
737
- #: app/main/group/BPMediaGroupsExtension.php:74
738
  msgid "All Group Members"
739
  msgstr ""
740
 
741
- #: app/main/group/BPMediaGroupsExtension.php:40
742
- #: app/main/group/BPMediaGroupsExtension.php:78
743
  msgid "Group Admins and Mods only"
744
  msgstr ""
745
 
746
- #: app/main/group/BPMediaGroupsExtension.php:44
747
- #: app/main/group/BPMediaGroupsExtension.php:82
748
  msgid "Group Admin only"
749
  msgstr ""
750
 
751
- #: app/main/group/BPMediaGroupsExtension.php:86
752
  msgid "Save Changes"
753
  msgstr ""
754
 
755
- #: app/main/group/BPMediaGroupsExtension.php:106
756
  msgid "There was an error saving, please try again"
757
  msgstr ""
758
 
759
- #: app/main/group/BPMediaGroupsExtension.php:108
760
  msgid "Settings saved successfully"
761
  msgstr ""
762
 
763
- #: app/main/group/BPMediaGroupsExtension.php:124
764
  msgid ""
765
  "You could display a small snippet of information from your group extension here. It will show on the group\n"
766
  "\t home screen."
767
  msgstr ""
768
 
769
- #: app/main/widgets/BPMediaPopularMedia.php:15
770
- msgid "The most popular media on your site"
771
- msgstr ""
772
-
773
- #: app/main/widgets/BPMediaPopularMedia.php:16
774
- msgid "Popular BuddyPress Media"
775
- msgstr ""
776
-
777
- #: app/main/widgets/BPMediaPopularMedia.php:19
778
- #: app/main/widgets/BPMediaPopularMedia.php:28
779
- #: app/main/widgets/BPMediaRecentMedia.php:19
780
- #: app/main/widgets/BPMediaRecentMedia.php:28
781
- #, php-format
782
- msgid "%1$s will be <strong>deprecated</strong> from version %2$s! Use %3$s instead."
783
- msgstr ""
784
-
785
- #: app/main/widgets/BPMediaPopularMedia.php:36
786
- #: app/main/widgets/BPMediaWidget.php:254
787
- msgid "Popular Media"
788
- msgstr ""
789
-
790
- #: app/main/widgets/BPMediaPopularMedia.php:47
791
- msgid "comments"
792
- msgstr ""
793
-
794
- #: app/main/widgets/BPMediaPopularMedia.php:48
795
- msgid "Views"
796
- msgstr ""
797
-
798
- #: app/main/widgets/BPMediaPopularMedia.php:78
799
- msgid "No popular media found"
800
- msgstr ""
801
-
802
- #: app/main/widgets/BPMediaPopularMedia.php:100
803
- #: app/main/widgets/BPMediaWidget.php:257
804
- #: app/main/widgets/BPMediaRecentMedia.php:212
805
- msgid "Title:"
806
- msgstr ""
807
-
808
- #: app/main/widgets/BPMediaPopularMedia.php:103
809
- #: app/main/widgets/BPMediaWidget.php:260
810
- #: app/main/widgets/BPMediaRecentMedia.php:215
811
- msgid "Number of posts to show:"
812
- msgstr ""
813
-
814
  #: app/main/widgets/BPMediaWidget.php:11
815
  msgid "The most recent/popular media uploaded on your site"
816
  msgstr ""
@@ -819,254 +782,240 @@ msgstr ""
819
  msgid "BuddyPress Media Widget"
820
  msgstr ""
821
 
822
- #: app/main/widgets/BPMediaWidget.php:37
823
  #, php-format
824
  msgid "Please configure this widget <a href=\"%s\" target=\"_blank\" title=\"Configure BuddyPress Media Widget\">here</a>."
825
  msgstr ""
826
 
827
- #: app/main/widgets/BPMediaWidget.php:43
828
- #: app/main/widgets/BPMediaRecentMedia.php:47
829
  msgid "All"
830
  msgstr ""
831
 
832
- #: app/main/widgets/BPMediaWidget.php:96
833
- #: app/main/widgets/BPMediaWidget.php:136
834
- #: app/main/widgets/BPMediaWidget.php:176
835
- #: app/main/widgets/BPMediaWidget.php:216
836
  msgid "No "
837
  msgstr ""
838
 
839
- #: app/main/widgets/BPMediaWidget.php:251
840
  msgid "Widget Type:"
841
  msgstr ""
842
 
843
- #: app/main/widgets/BPMediaWidget.php:253
844
- #: app/main/widgets/BPMediaRecentMedia.php:36
845
  msgid "Recent Media"
846
  msgstr ""
847
 
848
- #: app/main/widgets/BPMediaWidget.php:264
849
- msgid "Show All"
850
- msgstr ""
851
-
852
- #: app/main/widgets/BPMediaWidget.php:267
853
- msgid "Show Photos"
854
- msgstr ""
855
-
856
- #: app/main/widgets/BPMediaWidget.php:270
857
- msgid "Show Music"
858
- msgstr ""
859
-
860
- #: app/main/widgets/BPMediaWidget.php:274
861
- msgid "Show Videos"
862
  msgstr ""
863
 
864
- #: app/main/widgets/BPMediaRecentMedia.php:15
865
- msgid "The most recent media uploaded on your site"
866
  msgstr ""
867
 
868
- #: app/main/widgets/BPMediaRecentMedia.php:16
869
- msgid "Recent BuddyPress Media"
870
  msgstr ""
871
 
872
- #: app/main/widgets/BPMediaRecentMedia.php:80
873
- msgid "No recent media found"
874
  msgstr ""
875
 
876
- #: app/main/widgets/BPMediaRecentMedia.php:117
877
- msgid "No recent photo found"
878
  msgstr ""
879
 
880
- #: app/main/widgets/BPMediaRecentMedia.php:153
881
- msgid "No recent audio found"
882
  msgstr ""
883
 
884
- #: app/main/widgets/BPMediaRecentMedia.php:189
885
- msgid "No recent video found"
886
  msgstr ""
887
 
888
- #: app/main/includes/BPMediaHostWordpress.php:48
889
  msgid "Sorry, the requested media does not exist."
890
  msgstr ""
891
 
892
- #: app/main/includes/BPMediaHostWordpress.php:90
893
  msgid "Error Uploading File"
894
  msgstr ""
895
 
896
- #: app/main/includes/BPMediaHostWordpress.php:118
897
  msgid "MP4 file you have uploaded is corrupt."
898
  msgstr ""
899
 
900
- #: app/main/includes/BPMediaHostWordpress.php:125
901
- #: app/main/includes/BPMediaHostWordpress.php:130
902
  msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
903
  msgstr ""
904
 
905
- #: app/main/includes/BPMediaHostWordpress.php:135
906
  msgid "The MP4 file you have uploaded is not a video file."
907
  msgstr ""
908
 
909
- #: app/main/includes/BPMediaHostWordpress.php:147
910
  msgid "MP3 file you have uploaded is currupt."
911
  msgstr ""
912
 
913
- #: app/main/includes/BPMediaHostWordpress.php:154
914
- #: app/main/includes/BPMediaHostWordpress.php:159
915
  msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
916
  msgstr ""
917
 
918
- #: app/main/includes/BPMediaHostWordpress.php:164
919
  msgid "The MP3 file you have uploaded is not an audio file."
920
  msgstr ""
921
 
922
- #: app/main/includes/BPMediaHostWordpress.php:178
923
  msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
924
  msgstr ""
925
 
926
- #: app/main/includes/BPMediaHostWordpress.php:185
927
  msgid "Error creating attachment for the media file, please try again"
928
  msgstr ""
929
 
930
- #: app/main/includes/BPMediaHostWordpress.php:256
931
  #, php-format
932
  msgid "%s uploaded a media."
933
  msgstr ""
934
 
935
- #: app/main/includes/BPMediaHostWordpress.php:270
936
  msgid "Uploaded by "
937
  msgstr ""
938
 
939
- #: app/main/includes/BPMediaHostWordpress.php:395
940
  #, php-format
941
  msgid "Comment <span>%s</span>"
942
  msgstr ""
943
 
944
- #: app/main/includes/BPMediaHostWordpress.php:399
945
  msgid "Favorite"
946
  msgstr ""
947
 
948
- #: app/main/includes/BPMediaHostWordpress.php:401
949
  msgid "Remove Favorite"
950
  msgstr ""
951
 
952
- #: app/main/includes/BPMediaHostWordpress.php:420
953
  msgid "Post"
954
  msgstr ""
955
 
956
- #: app/main/includes/BPMediaHostWordpress.php:420
957
  msgid "or press esc to cancel."
958
  msgstr ""
959
 
960
- #: app/main/includes/BPMediaTemplateFunctions.php:28
961
  msgid "Media Title"
962
  msgstr ""
963
 
964
- #: app/main/includes/BPMediaTemplateFunctions.php:29
965
  msgid "Media Description"
966
  msgstr ""
967
 
968
- #: app/main/includes/BPMediaTemplateFunctions.php:30
969
  msgid "Select Media File"
970
  msgstr ""
971
 
972
- #: app/main/includes/BPMediaComponent.php:67
973
  msgid "Search Media..."
974
  msgstr ""
975
 
976
- #: app/main/includes/BPMediaComponent.php:319
977
  msgid "Edit Album"
978
  msgstr ""
979
 
980
- #: app/main/includes/BPMediaComponent.php:320
981
  msgid "New Album"
982
  msgstr ""
983
 
984
- #: app/main/includes/BPMediaComponent.php:321
985
  msgid "All Albums"
986
  msgstr ""
987
 
988
- #: app/main/includes/BPMediaComponent.php:322
989
  msgid "View Album"
990
  msgstr ""
991
 
992
- #: app/main/includes/BPMediaComponent.php:323
993
  msgid "Search Albums"
994
  msgstr ""
995
 
996
- #: app/main/includes/BPMediaComponent.php:324
997
  msgid "No album found"
998
  msgstr ""
999
 
1000
- #: app/main/includes/BPMediaComponent.php:325
1001
  msgid "No album found in Trash"
1002
  msgstr ""
1003
 
1004
- #: app/main/includes/BPMediaComponent.php:349
1005
  msgid "Add New Media"
1006
  msgstr ""
1007
 
1008
- #: app/main/includes/BPMediaComponent.php:356
1009
  msgid "BuddyPress Media's Media Files"
1010
  msgstr ""
1011
 
1012
- #: app/main/includes/BPMediaFunction.php:202
1013
  #, php-format
1014
  msgid "%1$s added new media in album %2$s"
1015
  msgstr ""
1016
 
1017
- #: app/main/includes/BPMediaFilters.php:112
1018
  #, php-format
1019
  msgid "Delete %s"
1020
  msgstr ""
1021
 
1022
- #: app/main/includes/BPMediaFilters.php:320
1023
  msgid "Users"
1024
  msgstr ""
1025
 
1026
- #: app/main/includes/BPMediaFilters.php:322
1027
  msgid "Total Photos"
1028
  msgstr ""
1029
 
1030
- #: app/main/includes/BPMediaFilters.php:323
1031
  msgid "Total Videos"
1032
  msgstr ""
1033
 
1034
- #: app/main/includes/BPMediaFilters.php:324
1035
  msgid "Total Audio"
1036
  msgstr ""
1037
 
1038
- #: app/main/includes/BPMediaFilters.php:325
1039
  msgid "Total Albums"
1040
  msgstr ""
1041
 
1042
- #: app/main/includes/BPMediaFilters.php:327
1043
  msgid "Groups"
1044
  msgstr ""
1045
 
1046
- #: app/main/includes/BPMediaActions.php:143
1047
- #: app/main/includes/BPMediaActions.php:269
1048
  msgid "Featured"
1049
  msgstr ""
1050
 
1051
- #: app/main/includes/BPMediaActions.php:144
1052
- #: app/main/includes/BPMediaActions.php:274
1053
  msgid "Remove Featured"
1054
  msgstr ""
1055
 
1056
- #: app/main/includes/BPMediaActions.php:257
1057
  msgid "Edit Media"
1058
  msgstr ""
1059
 
1060
- #: app/main/includes/BPMediaActions.php:257
1061
  msgid "Edit"
1062
  msgstr ""
1063
 
1064
- #: app/main/includes/BPMediaActions.php:269
1065
- #: app/main/includes/BPMediaActions.php:274
1066
  msgid "Featured Media"
1067
  msgstr ""
1068
 
1069
- #: app/main/includes/BPMediaActions.php:538
1070
  #, php-format
1071
  msgid "%1$s created an album %2$s"
1072
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-08 11:14+0530\n"
6
+ "PO-Revision-Date: 2013-02-08 11:20+0530\n"
7
  "Last-Translator: Saurabh Shukla <saurabh.shukla@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: \n"
16
  "X-Poedit-Country: India\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: app/helper/BPMediaFeed.php:43
20
  msgid "No items"
21
  msgstr ""
22
 
23
+ #: app/helper/BPMediaFeed.php:49
24
  msgid "Posted "
25
  msgstr ""
26
 
27
+ #: app/helper/BPMediaSettings.php:28
28
  msgid "BuddyPress Media Settings"
29
  msgstr ""
30
 
31
+ #: app/helper/BPMediaSettings.php:29
32
  msgid "Video"
33
  msgstr ""
34
 
35
+ #: app/helper/BPMediaSettings.php:32
36
  msgid "Check to enable video upload functionality"
37
  msgstr ""
38
 
39
+ #: app/helper/BPMediaSettings.php:34
40
  msgid "Audio"
41
  msgstr ""
42
 
43
+ #: app/helper/BPMediaSettings.php:37
44
  msgid "Check to enable audio upload functionality"
45
  msgstr ""
46
 
47
+ #: app/helper/BPMediaSettings.php:39
48
  msgid "Images"
49
  msgstr ""
50
 
51
+ #: app/helper/BPMediaSettings.php:42
52
  msgid "Check to enable images upload functionality"
53
  msgstr ""
54
 
55
+ #: app/helper/BPMediaSettings.php:44
56
  msgid "Download"
57
  msgstr ""
58
 
59
+ #: app/helper/BPMediaSettings.php:47
60
  msgid "Check to enable download functionality"
61
  msgstr ""
62
 
63
+ #: app/helper/BPMediaSettings.php:49
64
+ msgid "Admin bar menu"
65
+ msgstr ""
66
+
67
+ #: app/helper/BPMediaSettings.php:52
68
+ msgid "Check to enable menu in WordPress admin bar"
69
+ msgstr ""
70
+
71
+ #: app/helper/BPMediaSettings.php:55
72
+ #: app/helper/BPMediaSettings.php:56
73
  msgid "Spread the Word"
74
  msgstr ""
75
 
76
+ #: app/helper/BPMediaSettings.php:60
77
  msgid "Yes, I support BuddyPress Media"
78
  msgstr ""
79
 
80
+ #: app/helper/BPMediaSettings.php:61
81
  msgid "No, I don't want to support BuddyPress Media"
82
  msgstr ""
83
 
84
+ #: app/helper/BPMediaSettings.php:64
85
  msgid "BuddyPress Media Other Options"
86
  msgstr ""
87
 
88
+ #: app/helper/BPMediaSettings.php:65
89
  msgid "Re-Count Media Entries"
90
  msgstr ""
91
 
92
+ #: app/helper/BPMediaSettings.php:67
93
  msgid "Re-Count"
94
  msgstr ""
95
 
96
+ #: app/helper/BPMediaSettings.php:68
97
  msgid "It will re-count all media entries of all users and correct any discrepancies."
98
  msgstr ""
99
 
100
+ #: app/helper/BPMediaSettings.php:73
101
  msgid "BuddyPress Media Addons for Audio/Video Conversion"
102
  msgstr ""
103
 
104
+ #: app/helper/BPMediaSettings.php:74
105
  msgid "Submit a request form"
106
  msgstr ""
107
 
108
+ #: app/helper/BPMediaSettings.php:75
109
  msgid "Request Type"
110
  msgstr ""
111
 
112
+ #: app/helper/BPMediaSettings.php:76
113
  msgid "Select One"
114
  msgstr ""
115
 
116
+ #: app/helper/BPMediaSettings.php:77
117
  msgid "Premium Support"
118
  msgstr ""
119
 
120
+ #: app/helper/BPMediaSettings.php:78
121
  msgid "Suggest a New Feature"
122
  msgstr ""
123
 
124
+ #: app/helper/BPMediaSettings.php:79
125
  msgid "Submit a Bug Report"
126
  msgstr ""
127
 
128
+ #: app/helper/BPMediaSettings.php:112
129
+ #: app/helper/BPMediaSettings.php:114
130
  msgid "Recounting of media files done successfully"
131
  msgstr ""
132
 
133
+ #: app/helper/BPMediaSettings.php:114
134
  msgid "Recount Success"
135
  msgstr ""
136
 
137
+ #: app/helper/BPMediaSettings.php:117
138
+ #: app/helper/BPMediaSettings.php:119
139
  msgid "Recounting Failed"
140
  msgstr ""
141
 
142
+ #: app/helper/BPMediaSettings.php:119
143
  msgid "Recount Fail"
144
  msgstr ""
145
 
146
+ #: app/helper/BPMediaSettings.php:123
147
  msgid "Settings saved."
148
  msgstr ""
149
 
150
+ #: app/helper/BPMediaSettings.php:152
151
  msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
152
  msgstr ""
153
 
154
+ #: app/helper/BPMediaSettings.php:197
155
+ #: app/helper/BPMediaSettings.php:244
156
+ #: app/helper/BPMediaSettings.php:288
157
  msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
158
  msgstr ""
159
 
160
+ #: app/helper/BPMediaSettings.php:199
161
  msgid "Need to specify atleast to radios else use a checkbox instead"
162
  msgstr ""
163
 
164
+ #: app/helper/BPMediaSettings.php:290
165
  msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
166
  msgstr ""
167
 
168
+ #: app/helper/BPMediaAdminWidget.php:29
169
  msgid "Argument missing. id is required."
170
  msgstr ""
171
 
172
+ #: app/helper/BPMediaSupport.php:31
173
  msgid "Submit a New Feature Request"
174
  msgstr ""
175
 
176
+ #: app/helper/BPMediaSupport.php:34
177
  msgid "Submit a Premium Support Request"
178
  msgstr ""
179
 
180
+ #: app/helper/BPMediaSupport.php:42
181
+ #: app/helper/BPMediaSupport.php:126
182
  msgid "Name"
183
  msgstr ""
184
 
185
+ #: app/helper/BPMediaSupport.php:45
186
+ #: app/helper/BPMediaSupport.php:129
187
  msgid "Email"
188
  msgstr ""
189
 
190
+ #: app/helper/BPMediaSupport.php:48
191
+ #: app/helper/BPMediaSupport.php:132
192
  msgid "Website"
193
  msgstr ""
194
 
195
+ #: app/helper/BPMediaSupport.php:51
196
+ #: app/helper/BPMediaSupport.php:135
197
  msgid "Phone"
198
  msgstr ""
199
 
200
+ #: app/helper/BPMediaSupport.php:54
201
+ #: app/helper/BPMediaSupport.php:138
202
  msgid "Subject"
203
  msgstr ""
204
 
205
+ #: app/helper/BPMediaSupport.php:57
206
+ #: app/helper/BPMediaSupport.php:141
207
  msgid "Details"
208
  msgstr ""
209
 
210
+ #: app/helper/BPMediaSupport.php:68
211
  msgid "Additional Information"
212
  msgstr ""
213
 
214
+ #: app/helper/BPMediaSupport.php:73
215
  msgid "Your WP Admin Login:"
216
  msgstr ""
217
 
218
+ #: app/helper/BPMediaSupport.php:76
219
  msgid "Your WP Admin password:"
220
  msgstr ""
221
 
222
+ #: app/helper/BPMediaSupport.php:79
223
  msgid "Your SSH / FTP host:"
224
  msgstr ""
225
 
226
+ #: app/helper/BPMediaSupport.php:82
227
  msgid "Your SSH / FTP login:"
228
  msgstr ""
229
 
230
+ #: app/helper/BPMediaSupport.php:85
231
  msgid "Your SSH / FTP password:"
232
  msgstr ""
233
 
234
+ #: app/helper/BPMediaSupport.php:108
235
  msgid "BuddyPress Media Premium Support Request from"
236
  msgstr ""
237
 
238
+ #: app/helper/BPMediaSupport.php:111
239
  msgid "BuddyPress Media New Feature Request from"
240
  msgstr ""
241
 
242
+ #: app/helper/BPMediaSupport.php:114
243
  msgid "BuddyPress Media Bug Report from"
244
  msgstr ""
245
 
246
+ #: app/helper/BPMediaSupport.php:117
247
  msgid "BuddyPress Media Contact from"
248
  msgstr ""
249
 
250
+ #: app/helper/BPMediaSupport.php:144
251
  msgid "Request ID"
252
  msgstr ""
253
 
254
+ #: app/helper/BPMediaSupport.php:147
255
  msgid "Server Address"
256
  msgstr ""
257
 
258
+ #: app/helper/BPMediaSupport.php:150
259
  msgid "IP Address"
260
  msgstr ""
261
 
262
+ #: app/helper/BPMediaSupport.php:153
263
  msgid "Server Type"
264
  msgstr ""
265
 
266
+ #: app/helper/BPMediaSupport.php:156
267
  msgid "User Agent"
268
  msgstr ""
269
 
270
+ #: app/helper/BPMediaSupport.php:160
271
  msgid "WordPress Admin Username"
272
  msgstr ""
273
 
274
+ #: app/helper/BPMediaSupport.php:163
275
  msgid "WordPress Admin Password"
276
  msgstr ""
277
 
278
+ #: app/helper/BPMediaSupport.php:166
279
  msgid "SSH FTP Host"
280
  msgstr ""
281
 
282
+ #: app/helper/BPMediaSupport.php:169
283
  msgid "SSH FTP Username"
284
  msgstr ""
285
 
286
+ #: app/helper/BPMediaSupport.php:172
287
  msgid "SSH FTP Password"
288
  msgstr ""
289
 
290
+ #: app/helper/BPMediaSupport.php:183
291
  msgid "Thank you for your Feedback/Suggestion."
292
  msgstr ""
293
 
294
+ #: app/helper/BPMediaSupport.php:185
295
  msgid "Thank you for posting your support request."
296
  msgstr ""
297
 
298
+ #: app/helper/BPMediaSupport.php:186
299
  msgid "We will get back to you shortly."
300
  msgstr ""
301
 
302
+ #: app/helper/BPMediaSupport.php:189
303
  msgid "Your server failed to send an email."
304
  msgstr ""
305
 
306
+ #: app/helper/BPMediaSupport.php:190
307
  msgid "Kindly contact your server support to fix this."
308
  msgstr ""
309
 
310
+ #: app/helper/BPMediaSupport.php:191
311
  #, php-format
312
  msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
313
  msgstr ""
336
  msgid "Media node comes with automated setup script for Ubuntu/Debian."
337
  msgstr ""
338
 
339
+ #: app/helper/BPMediaAddon.php:89
340
  msgid "Buy Now"
341
  msgstr ""
342
 
343
+ #: app/helper/BPMediaAddon.php:90
344
  msgid "Live Demo"
345
  msgstr ""
346
 
347
+ #: app/helper/BPMediaUpgrade.php:35
348
  #, php-format
349
  msgid "Please click upgrade to upgrade the database of BuddyPress Media <a class=\"button\" id=\"refresh_media_count\" href =\"%s\" class=\"button\" title=\"It will migrate your BuddyPress Media's earlier database to new database.\">Upgrade</a>"
350
  msgstr ""
351
 
352
+ #: app/helper/BPMediaUpgrade.php:69
353
+ #: app/main/profile/BPMediaTemplate.php:20
354
  msgid "Wall Posts"
355
  msgstr ""
356
 
357
+ #: app/helper/BPMediaUpgrade.php:114
358
+ #: app/helper/BPMediaUpgrade.php:172
359
+ #: app/main/group/BPMediaGroupAction.php:116
360
  #, php-format
361
  msgid "%1$s added a %2$s"
362
  msgstr ""
363
 
364
+ #: app/admin/BPMediaAdmin.php:62
365
  msgid "BuddyPress Media Component"
366
  msgstr ""
367
 
368
+ #: app/admin/BPMediaAdmin.php:62
369
+ #: app/admin/BPMediaAdmin.php:163
370
+ #: app/admin/BPMediaAdmin.php:164
371
  msgid "BuddyPress Media"
372
  msgstr ""
373
 
374
+ #: app/admin/BPMediaAdmin.php:63
375
+ #: app/admin/BPMediaAdmin.php:191
376
+ #: app/main/BuddyPressMedia.php:232
377
  msgid "Settings"
378
  msgstr ""
379
 
380
+ #: app/admin/BPMediaAdmin.php:64
381
+ #: app/admin/BPMediaAdmin.php:197
382
  msgid "BuddyPress Media Addons"
383
  msgstr ""
384
 
385
+ #: app/admin/BPMediaAdmin.php:64
386
+ #: app/admin/BPMediaAdmin.php:198
387
  msgid "Addons"
388
  msgstr ""
389
 
390
+ #: app/admin/BPMediaAdmin.php:65
391
+ #: app/admin/BPMediaAdmin.php:204
392
  msgid "BuddyPress Media Support"
393
  msgstr ""
394
 
395
+ #: app/admin/BPMediaAdmin.php:65
396
  msgid "Support "
397
  msgstr ""
398
 
399
+ #: app/admin/BPMediaAdmin.php:113
400
  #: app/main/BuddyPressMedia.php:155
401
  #: app/main/BuddyPressMedia.php:158
402
  msgid "Media"
403
  msgstr ""
404
 
405
+ #: app/admin/BPMediaAdmin.php:205
406
  msgid "Support"
407
  msgstr ""
408
 
409
+ #: app/admin/BPMediaAdmin.php:292
410
  msgid "Empowering The Web With WordPress"
411
  msgstr ""
412
 
413
+ #: app/admin/BPMediaAdmin.php:292
414
  msgid "rtCamp"
415
  msgstr ""
416
 
417
+ #: app/admin/BPMediaAdmin.php:294
418
  msgid "Become a fan on Facebook"
419
  msgstr ""
420
 
421
+ #: app/admin/BPMediaAdmin.php:294
422
  msgid "Facebook"
423
  msgstr ""
424
 
425
+ #: app/admin/BPMediaAdmin.php:295
426
  msgid "Follow us on Twitter"
427
  msgstr ""
428
 
429
+ #: app/admin/BPMediaAdmin.php:295
430
  msgid "Twitter"
431
  msgstr ""
432
 
433
+ #: app/admin/BPMediaAdmin.php:296
434
  msgid "Subscribe to our feeds"
435
  msgstr ""
436
 
437
+ #: app/admin/BPMediaAdmin.php:296
438
  msgid "RSS Feed"
439
  msgstr ""
440
 
441
+ #: app/admin/BPMediaAdmin.php:301
442
  msgid "Read FAQ"
443
  msgstr ""
444
 
445
+ #: app/admin/BPMediaAdmin.php:302
446
  msgid "Free Support Forum"
447
  msgstr ""
448
 
449
+ #: app/admin/BPMediaAdmin.php:303
450
  msgid "Github Issue Tracker"
451
  msgstr ""
452
 
453
+ #: app/admin/BPMediaAdmin.php:304
454
  msgid "Hire Us!"
455
  msgstr ""
456
 
457
+ #: app/admin/BPMediaAdmin.php:304
458
  msgid "To get professional customisation/setup service."
459
  msgstr ""
460
 
461
+ #: app/admin/BPMediaAdmin.php:306
462
  msgid "Need Help?"
463
  msgstr ""
464
 
465
+ #: app/admin/BPMediaAdmin.php:308
466
  msgid "Help the development keep going."
467
  msgstr ""
468
 
469
+ #: app/admin/BPMediaAdmin.php:309
470
  msgid "Help us release more amazing features faster. Consider making a donation to our consistent efforts."
471
  msgstr ""
472
 
473
+ #: app/admin/BPMediaAdmin.php:310
474
  msgid "Donate"
475
  msgstr ""
476
 
477
+ #: app/admin/BPMediaAdmin.php:313
478
  msgid "BuddyPress Media Kaltura"
479
  msgstr ""
480
 
481
+ #: app/admin/BPMediaAdmin.php:313
482
  msgid "BPM-Kaltura"
483
  msgstr ""
484
 
485
+ #: app/admin/BPMediaAdmin.php:313
486
  msgid "Add support for Kaltura.com/Kaltura-CE based video conversion support"
487
  msgstr ""
488
 
489
+ #: app/admin/BPMediaAdmin.php:314
490
  msgid "BuddyPress Media FFMPEG"
491
  msgstr ""
492
 
493
+ #: app/admin/BPMediaAdmin.php:314
494
  msgid "BPM-FFMPEG"
495
  msgstr ""
496
 
497
+ #: app/admin/BPMediaAdmin.php:314
498
  msgid "Add FFMEG-based audio/video conversion support"
499
  msgstr ""
500
 
501
+ #: app/admin/BPMediaAdmin.php:316
502
  msgid "Are you a developer?"
503
  msgstr ""
504
 
505
+ #: app/admin/BPMediaAdmin.php:317
506
  #, php-format
507
  msgid "If you are developing a BuddyPress Media addon we would like to include it in above list. We can also help you sell them. <a href=\"%s\">More info!</a>"
508
  msgstr ""
509
 
510
+ #: app/admin/BPMediaAdmin.php:318
511
  msgid "Premium Addons"
512
  msgstr ""
513
 
514
+ #: app/admin/BPMediaAdmin.php:321
515
  msgid "Latest News"
516
  msgstr ""
517
 
553
  msgid "Upload"
554
  msgstr ""
555
 
556
+ #: app/main/BuddyPressMedia.php:302
557
  #, php-format
558
  msgid "The BuddyPress version installed is an older version and is not supported, please update BuddyPress to use BuddyPress Media Plugin.<a class=\"alignright\" href=\"%1$s\">X</a>"
559
  msgstr ""
560
 
561
+ #: app/main/BuddyPressMedia.php:307
562
  #, php-format
563
  msgid "You have not installed BuddyPress. Please install latest version of BuddyPress to use BuddyPress Media plugin.<a class=\"alignright\" href=\"%1$s\">X</a>"
564
  msgstr ""
565
 
566
+ #: app/main/profile/BPMediaTemplate.php:24
567
+ #: app/main/profile/BPMediaTemplate.php:217
568
  msgid "Select Album"
569
  msgstr ""
570
 
571
+ #: app/main/profile/BPMediaTemplate.php:59
572
  msgid "+ Create New Album"
573
  msgstr ""
574
 
575
+ #: app/main/profile/BPMediaTemplate.php:65
576
+ #: app/main/profile/BPMediaTemplate.php:253
577
  msgid "Create"
578
  msgstr ""
579
 
580
+ #: app/main/profile/BPMediaTemplate.php:66
581
  msgid "Cancel"
582
  msgstr ""
583
 
584
+ #: app/main/profile/BPMediaTemplate.php:75
585
  msgid "Drop files here"
586
  msgstr ""
587
 
588
+ #: app/main/profile/BPMediaTemplate.php:76
589
  msgid " or "
590
  msgstr ""
591
 
592
+ #: app/main/profile/BPMediaTemplate.php:77
593
  msgid "Select Files"
594
  msgstr ""
595
 
596
+ #: app/main/profile/BPMediaTemplate.php:184
597
  msgid "Show More"
598
  msgstr ""
599
 
600
+ #: app/main/profile/BPMediaTemplate.php:218
601
+ #: app/main/profile/BPMediaTemplate.php:246
602
  msgid "x"
603
  msgstr ""
604
 
605
+ #: app/main/profile/BPMediaTemplate.php:238
606
  msgid "Select"
607
  msgstr ""
608
 
609
+ #: app/main/profile/BPMediaTemplate.php:239
610
+ #: app/main/profile/BPMediaTemplate.php:245
611
  msgid "Create Album"
612
  msgstr ""
613
 
614
+ #: app/main/profile/BPMediaTemplate.php:249
615
  msgid "Album Name"
616
  msgstr ""
617
 
618
+ #: app/main/profile/BPMediaTemplate.php:257
619
  msgid "Add Media"
620
  msgstr ""
621
 
622
+ #: app/main/profile/BPMediaScreen.php:112
623
+ #: app/main/profile/BPMediaScreen.php:363
624
  msgid "The requested url does not exist"
625
  msgstr ""
626
 
627
+ #: app/main/profile/BPMediaScreen.php:123
628
  #, php-format
629
  msgid "%s List Page"
630
  msgstr ""
631
 
632
+ #: app/main/profile/BPMediaScreen.php:192
633
+ #: app/main/profile/BPMediaAlbumScreen.php:78
634
  #, php-format
635
  msgid "Sorry, no %s were found."
636
  msgstr ""
637
 
638
+ #: app/main/profile/BPMediaScreen.php:294
639
  #, php-format
640
  msgid "Edit %s"
641
  msgstr ""
642
 
643
+ #: app/main/profile/BPMediaScreen.php:315
644
  #, php-format
645
  msgid "%s Title"
646
  msgstr ""
647
 
648
+ #: app/main/profile/BPMediaScreen.php:322
649
  #, php-format
650
  msgid "%s Description"
651
  msgstr ""
652
 
653
+ #: app/main/profile/BPMediaScreen.php:331
654
  msgid "Update"
655
  msgstr ""
656
 
657
+ #: app/main/profile/BPMediaScreen.php:332
658
  msgid "Back to Media File"
659
  msgstr ""
660
 
661
+ #: app/main/profile/BPMediaScreen.php:333
662
  msgid "Back to Media"
663
  msgstr ""
664
 
665
+ #: app/main/profile/BPMediaScreen.php:356
666
  msgid "You do not have access to this page."
667
  msgstr ""
668
 
669
+ #: app/main/profile/BPMediaScreen.php:384
670
  msgid "Media deleted successfully"
671
  msgstr ""
672
 
673
+ #: app/main/profile/BPMediaUploadScreen.php:33
674
  msgid "Upload Media"
675
  msgstr ""
676
 
677
+ #: app/main/profile/BPMediaUploadScreen.php:75
678
  msgid "You are not allowed to be here"
679
  msgstr ""
680
 
681
+ #: app/main/profile/BPMediaUploadScreen.php:102
682
+ #: app/main/profile/BPMediaUploadScreen.php:126
683
  msgid "File uploaded is not supported"
684
  msgstr ""
685
 
686
+ #: app/main/profile/BPMediaUploadScreen.php:109
687
  msgid "Image uploads are disabled"
688
  msgstr ""
689
 
690
+ #: app/main/profile/BPMediaUploadScreen.php:115
691
  msgid "Video uploads are disabled"
692
  msgstr ""
693
 
694
+ #: app/main/profile/BPMediaUploadScreen.php:121
695
  msgid "Audio uploads are disabled"
696
  msgstr ""
697
 
698
+ #: app/main/profile/BPMediaUploadScreen.php:139
699
  msgid "Upload Successful"
700
  msgstr ""
701
 
702
+ #: app/main/profile/BPMediaUploadScreen.php:144
703
  msgid "You did not specified a file to upload"
704
  msgstr ""
705
 
706
+ #: app/main/profile/BPMediaAlbumScreen.php:118
707
  msgid "Rename Album"
708
  msgstr ""
709
 
710
+ #: app/main/profile/BPMediaAlbumScreen.php:118
711
  msgid "Rename"
712
  msgstr ""
713
 
714
+ #: app/main/profile/BPMediaAlbumScreen.php:119
715
  msgid "Delete"
716
  msgstr ""
717
 
718
+ #: app/main/profile/BPMediaAlbumScreen.php:138
719
  msgid "Sorry, no media items were found in this album."
720
  msgstr ""
721
 
722
+ #: app/main/profile/BPMediaAlbum.php:73
723
  msgid "Sorry, the requested album does not exist."
724
  msgstr ""
725
 
726
+ #: app/main/group/BPMediaGroupElementExtension.php:80
727
  msgid "Sorry, the requested media does not belong to the group"
728
  msgstr ""
729
 
730
+ #: app/main/group/BPMediaGroup.php:211
731
  msgid "Media Settings"
732
  msgstr ""
733
 
734
+ #: app/main/group/BPMediaGroupsExtension.php:40
735
+ #: app/main/group/BPMediaGroupsExtension.php:87
736
  msgid "Album Creation Control"
737
  msgstr ""
738
 
739
+ #: app/main/group/BPMediaGroupsExtension.php:41
740
+ #: app/main/group/BPMediaGroupsExtension.php:88
741
  msgid "Who can create Albums in this group?"
742
  msgstr ""
743
 
744
+ #: app/main/group/BPMediaGroupsExtension.php:45
745
+ #: app/main/group/BPMediaGroupsExtension.php:92
746
  msgid "All Group Members"
747
  msgstr ""
748
 
749
+ #: app/main/group/BPMediaGroupsExtension.php:49
750
+ #: app/main/group/BPMediaGroupsExtension.php:96
751
  msgid "Group Admins and Mods only"
752
  msgstr ""
753
 
754
+ #: app/main/group/BPMediaGroupsExtension.php:53
755
+ #: app/main/group/BPMediaGroupsExtension.php:100
756
  msgid "Group Admin only"
757
  msgstr ""
758
 
759
+ #: app/main/group/BPMediaGroupsExtension.php:104
760
  msgid "Save Changes"
761
  msgstr ""
762
 
763
+ #: app/main/group/BPMediaGroupsExtension.php:130
764
  msgid "There was an error saving, please try again"
765
  msgstr ""
766
 
767
+ #: app/main/group/BPMediaGroupsExtension.php:132
768
  msgid "Settings saved successfully"
769
  msgstr ""
770
 
771
+ #: app/main/group/BPMediaGroupsExtension.php:153
772
  msgid ""
773
  "You could display a small snippet of information from your group extension here. It will show on the group\n"
774
  "\t home screen."
775
  msgstr ""
776
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
777
  #: app/main/widgets/BPMediaWidget.php:11
778
  msgid "The most recent/popular media uploaded on your site"
779
  msgstr ""
782
  msgid "BuddyPress Media Widget"
783
  msgstr ""
784
 
785
+ #: app/main/widgets/BPMediaWidget.php:42
786
  #, php-format
787
  msgid "Please configure this widget <a href=\"%s\" target=\"_blank\" title=\"Configure BuddyPress Media Widget\">here</a>."
788
  msgstr ""
789
 
790
+ #: app/main/widgets/BPMediaWidget.php:48
 
791
  msgid "All"
792
  msgstr ""
793
 
794
+ #: app/main/widgets/BPMediaWidget.php:101
795
+ #: app/main/widgets/BPMediaWidget.php:141
796
+ #: app/main/widgets/BPMediaWidget.php:181
797
+ #: app/main/widgets/BPMediaWidget.php:221
798
  msgid "No "
799
  msgstr ""
800
 
801
+ #: app/main/widgets/BPMediaWidget.php:266
802
  msgid "Widget Type:"
803
  msgstr ""
804
 
805
+ #: app/main/widgets/BPMediaWidget.php:268
 
806
  msgid "Recent Media"
807
  msgstr ""
808
 
809
+ #: app/main/widgets/BPMediaWidget.php:269
810
+ msgid "Popular Media"
 
 
 
 
 
 
 
 
 
 
 
 
811
  msgstr ""
812
 
813
+ #: app/main/widgets/BPMediaWidget.php:272
814
+ msgid "Title:"
815
  msgstr ""
816
 
817
+ #: app/main/widgets/BPMediaWidget.php:275
818
+ msgid "Number of posts to show:"
819
  msgstr ""
820
 
821
+ #: app/main/widgets/BPMediaWidget.php:279
822
+ msgid "Show All"
823
  msgstr ""
824
 
825
+ #: app/main/widgets/BPMediaWidget.php:282
826
+ msgid "Show Photos"
827
  msgstr ""
828
 
829
+ #: app/main/widgets/BPMediaWidget.php:285
830
+ msgid "Show Music"
831
  msgstr ""
832
 
833
+ #: app/main/widgets/BPMediaWidget.php:289
834
+ msgid "Show Videos"
835
  msgstr ""
836
 
837
+ #: app/main/includes/BPMediaHostWordpress.php:59
838
  msgid "Sorry, the requested media does not exist."
839
  msgstr ""
840
 
841
+ #: app/main/includes/BPMediaHostWordpress.php:114
842
  msgid "Error Uploading File"
843
  msgstr ""
844
 
845
+ #: app/main/includes/BPMediaHostWordpress.php:142
846
  msgid "MP4 file you have uploaded is corrupt."
847
  msgstr ""
848
 
849
+ #: app/main/includes/BPMediaHostWordpress.php:149
850
+ #: app/main/includes/BPMediaHostWordpress.php:154
851
  msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
852
  msgstr ""
853
 
854
+ #: app/main/includes/BPMediaHostWordpress.php:159
855
  msgid "The MP4 file you have uploaded is not a video file."
856
  msgstr ""
857
 
858
+ #: app/main/includes/BPMediaHostWordpress.php:171
859
  msgid "MP3 file you have uploaded is currupt."
860
  msgstr ""
861
 
862
+ #: app/main/includes/BPMediaHostWordpress.php:178
863
+ #: app/main/includes/BPMediaHostWordpress.php:183
864
  msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
865
  msgstr ""
866
 
867
+ #: app/main/includes/BPMediaHostWordpress.php:188
868
  msgid "The MP3 file you have uploaded is not an audio file."
869
  msgstr ""
870
 
871
+ #: app/main/includes/BPMediaHostWordpress.php:202
872
  msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
873
  msgstr ""
874
 
875
+ #: app/main/includes/BPMediaHostWordpress.php:209
876
  msgid "Error creating attachment for the media file, please try again"
877
  msgstr ""
878
 
879
+ #: app/main/includes/BPMediaHostWordpress.php:299
880
  #, php-format
881
  msgid "%s uploaded a media."
882
  msgstr ""
883
 
884
+ #: app/main/includes/BPMediaHostWordpress.php:320
885
  msgid "Uploaded by "
886
  msgstr ""
887
 
888
+ #: app/main/includes/BPMediaHostWordpress.php:464
889
  #, php-format
890
  msgid "Comment <span>%s</span>"
891
  msgstr ""
892
 
893
+ #: app/main/includes/BPMediaHostWordpress.php:468
894
  msgid "Favorite"
895
  msgstr ""
896
 
897
+ #: app/main/includes/BPMediaHostWordpress.php:470
898
  msgid "Remove Favorite"
899
  msgstr ""
900
 
901
+ #: app/main/includes/BPMediaHostWordpress.php:489
902
  msgid "Post"
903
  msgstr ""
904
 
905
+ #: app/main/includes/BPMediaHostWordpress.php:489
906
  msgid "or press esc to cancel."
907
  msgstr ""
908
 
909
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
910
  msgid "Media Title"
911
  msgstr ""
912
 
913
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
914
  msgid "Media Description"
915
  msgstr ""
916
 
917
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
918
  msgid "Select Media File"
919
  msgstr ""
920
 
921
+ #: app/main/includes/BPMediaComponent.php:77
922
  msgid "Search Media..."
923
  msgstr ""
924
 
925
+ #: app/main/includes/BPMediaComponent.php:333
926
  msgid "Edit Album"
927
  msgstr ""
928
 
929
+ #: app/main/includes/BPMediaComponent.php:334
930
  msgid "New Album"
931
  msgstr ""
932
 
933
+ #: app/main/includes/BPMediaComponent.php:335
934
  msgid "All Albums"
935
  msgstr ""
936
 
937
+ #: app/main/includes/BPMediaComponent.php:336
938
  msgid "View Album"
939
  msgstr ""
940
 
941
+ #: app/main/includes/BPMediaComponent.php:337
942
  msgid "Search Albums"
943
  msgstr ""
944
 
945
+ #: app/main/includes/BPMediaComponent.php:338
946
  msgid "No album found"
947
  msgstr ""
948
 
949
+ #: app/main/includes/BPMediaComponent.php:339
950
  msgid "No album found in Trash"
951
  msgstr ""
952
 
953
+ #: app/main/includes/BPMediaComponent.php:363
954
  msgid "Add New Media"
955
  msgstr ""
956
 
957
+ #: app/main/includes/BPMediaComponent.php:370
958
  msgid "BuddyPress Media's Media Files"
959
  msgstr ""
960
 
961
+ #: app/main/includes/BPMediaFunction.php:243
962
  #, php-format
963
  msgid "%1$s added new media in album %2$s"
964
  msgstr ""
965
 
966
+ #: app/main/includes/BPMediaFilters.php:138
967
  #, php-format
968
  msgid "Delete %s"
969
  msgstr ""
970
 
971
+ #: app/main/includes/BPMediaFilters.php:374
972
  msgid "Users"
973
  msgstr ""
974
 
975
+ #: app/main/includes/BPMediaFilters.php:376
976
  msgid "Total Photos"
977
  msgstr ""
978
 
979
+ #: app/main/includes/BPMediaFilters.php:377
980
  msgid "Total Videos"
981
  msgstr ""
982
 
983
+ #: app/main/includes/BPMediaFilters.php:378
984
  msgid "Total Audio"
985
  msgstr ""
986
 
987
+ #: app/main/includes/BPMediaFilters.php:379
988
  msgid "Total Albums"
989
  msgstr ""
990
 
991
+ #: app/main/includes/BPMediaFilters.php:381
992
  msgid "Groups"
993
  msgstr ""
994
 
995
+ #: app/main/includes/BPMediaActions.php:164
996
+ #: app/main/includes/BPMediaActions.php:316
997
  msgid "Featured"
998
  msgstr ""
999
 
1000
+ #: app/main/includes/BPMediaActions.php:165
1001
+ #: app/main/includes/BPMediaActions.php:321
1002
  msgid "Remove Featured"
1003
  msgstr ""
1004
 
1005
+ #: app/main/includes/BPMediaActions.php:304
1006
  msgid "Edit Media"
1007
  msgstr ""
1008
 
1009
+ #: app/main/includes/BPMediaActions.php:304
1010
  msgid "Edit"
1011
  msgstr ""
1012
 
1013
+ #: app/main/includes/BPMediaActions.php:316
1014
+ #: app/main/includes/BPMediaActions.php:321
1015
  msgid "Featured Media"
1016
  msgstr ""
1017
 
1018
+ #: app/main/includes/BPMediaActions.php:614
1019
  #, php-format
1020
  msgid "%1$s created an album %2$s"
1021
  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: 3.5
8
  Tested up to: 3.5
9
- Stable tag: 2.5.2
10
 
11
  Adds Photos, Music, Videos & Albums to your BuddyPress. Supports mobile devices (iPhone/iPad, etc) and automatic audio/video conversion.
12
 
@@ -16,7 +16,7 @@ BuddyPress Media adds Photos, Music, Videos & Albums to your BuddyPress. Support
16
 
17
  = Important =
18
 
19
- BuddyPress Media is now available in **Brazilian Portuguese**, **Spanish** and **Japanese**. BuddyPress Media includes [full translation support](https://rtcamp.com/tutorials/buddypress-media-translation/). Head over to the [translation project](http://rtcamp.com/translate/projects/buddypress-media/) to contribute your translations. If you don't see the language of your choice, let us know in the support forum, we'll add it.
20
 
21
  = iOS6 Uploads =
22
 
@@ -87,6 +87,12 @@ Please visit [BuddyPress Media's Features page](http://rtcamp.com/buddypress-med
87
  == Changelog ==
88
 
89
  Please visit [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-media/roadmap/ "Visit BuddyPress Media's Features page") to get some details about future releases.
 
 
 
 
 
 
90
  = 2.5.2 =
91
  * Fixes warning on admin side.
92
 
@@ -215,4 +221,4 @@ Please visit [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-medi
215
 
216
  == Upgrade Notice ==
217
  =2.5.2=
218
- Fixes warning shown on the admin side for some PHP versions.
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: 3.5
8
  Tested up to: 3.5
9
+ Stable tag: 2.5.3
10
 
11
  Adds Photos, Music, Videos & Albums to your BuddyPress. Supports mobile devices (iPhone/iPad, etc) and automatic audio/video conversion.
12
 
16
 
17
  = Important =
18
 
19
+ BuddyPress Media is now available in **Brazilian Portuguese**, **Spanish** and **Japanese**. Translations for German, Italian, French and Dutch are in progress. BuddyPress Media includes [full translation support](https://rtcamp.com/tutorials/buddypress-media-translation/). Head over to the [translation project](http://rtcamp.com/translate/projects/buddypress-media/) to contribute your translations. If you don't see the language of your choice, let us know in the support forum, we'll add it.
20
 
21
  = iOS6 Uploads =
22
 
87
  == Changelog ==
88
 
89
  Please visit [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-media/roadmap/ "Visit BuddyPress Media's Features page") to get some details about future releases.
90
+
91
+ = 2.5.3 =
92
+ * Added option to toggle BuddyPress Media menu in admin bar
93
+ * Added incomplete translations for German, Italian, French and Dutch languages
94
+ * A few bug fixes.
95
+
96
  = 2.5.2 =
97
  * Fixes warning on admin side.
98
 
221
 
222
  == Upgrade Notice ==
223
  =2.5.2=
224
+ Adds option to toggle menu in admin bar. Added incomplete translations for German, Italian, French and Dutch.