rtMedia for WordPress, BuddyPress and bbPress - Version 2.10.2

Version Description

  • Fixes a bug in admin
  • Fixes text-domain issues
  • Adds framework for notifications
  • Adds support for Tagging Addon
  • Updated translations, especially German and Persian
Download this release

Release Info

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

Code changes from version 2.10.1 to 2.10.2

app/helper/BPMediaAddon.php CHANGED
@@ -25,6 +25,16 @@ if (!class_exists('BPMediaAddon')) {
25
 
26
  public function get_addons() {
27
  $addons = array(
 
 
 
 
 
 
 
 
 
 
28
  array(
29
  'title' => __('BuddyPress-Media Instagram', 'buddypress-media'),
30
  'img_src' => 'http://cdn.rtcamp.com/wp-content/uploads/2013/03/BuddyPressMedia-Instagram.png',
25
 
26
  public function get_addons() {
27
  $addons = array(
28
+ array(
29
+ 'title' => __('BuddyPress-Media Photo Tagging', 'buddypress-media'),
30
+ 'img_src' => 'http://rtcamp.com/wp-content/uploads/2013/04/bpm-photo-tagging.png',
31
+ 'product_link' => 'http://rtcamp.com/store/buddypress-media-photo-tagging/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
32
+ 'desc' => '<p>' . __('BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media.', 'buddypress-media') . '</p>
33
+ <p><strong>' . __('Important', 'buddypress-media') . ':</strong> ' . __('You need to have ImageMagick installed on your server for this addon to work.', 'buddypress-media') . '</p>',
34
+ 'price' => '$19',
35
+ 'demo_link' => 'http://demo.rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
36
+ 'buy_now' => 'http://rtcamp.com/store/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media&add-to-cart=37506'
37
+ ),
38
  array(
39
  'title' => __('BuddyPress-Media Instagram', 'buddypress-media'),
40
  'img_src' => 'http://cdn.rtcamp.com/wp-content/uploads/2013/03/BuddyPressMedia-Instagram.png',
app/helper/BPMediaSettings.php CHANGED
@@ -180,9 +180,9 @@ if (!class_exists('BPMediaSettings')) {
180
 
181
  $bp_media_addon = new BPMediaAddon();
182
  add_settings_section('bpm-addons', __('BuddyPress Media Addons for Audio/Video Conversion', 'buddypress-media'), array($bp_media_addon, 'get_addons'), 'bp-media-addons');
183
-
184
- add_settings_section('bpm-support', __('Support', 'buddypress-media'), array($this,'bp_media_support_intro'), 'bp-media-support');
185
-
186
  if (!BPMediaPrivacy::is_installed()) {
187
  $bp_media_privacy = new BPMediaPrivacySettings();
188
  add_filter('bp_media_add_sub_tabs', array($bp_media_privacy, 'ui'), 99, 2);
@@ -226,44 +226,44 @@ if (!class_exists('BPMediaSettings')) {
226
  }
227
 
228
  public function network_notices() {
229
- $flag = 1;
230
- if (get_site_option('bpm-media-enable', false)) {
231
- echo '<div id="setting-error-bpm-media-enable" class="error"><p><strong>' . get_site_option('bpm-media-enable') . '</strong></p></div>';
232
- delete_site_option('bpm-media-enable');
233
- $flag = 0;
234
- }
235
- if (get_site_option('bpm-media-type', false)) {
236
- echo '<div id="setting-error-bpm-media-type" class="error"><p><strong>' . get_site_option('bpm-media-type') . '</strong></p></div>';
237
- delete_site_option('bpm-media-type');
238
- $flag = 0;
239
- }
240
- if (get_site_option('bpm-media-default-count', false)) {
241
- echo '<div id="setting-error-bpm-media-default-count" class="error"><p><strong>' . get_site_option('bpm-media-default-count') . '</strong></p></div>';
242
- delete_site_option('bpm-media-default-count');
243
- $flag = 0;
244
- }
245
 
246
- if (get_site_option('bpm-recount-success', false)) {
247
- echo '<div id="setting-error-bpm-recount-success" class="updated"><p><strong>' . get_site_option('bpm-recount-success') . '</strong></p></div>';
248
- delete_site_option('bpm-recount-success');
249
- $flag = 0;
250
- } elseif (get_site_option('bpm-recount-fail', false)) {
251
- echo '<div id="setting-error-bpm-recount-fail" class="error"><p><strong>' . get_site_option('bpm-recount-fail') . '</strong></p></div>';
252
- delete_site_option('bpm-recount-fail');
253
- $flag = 0;
254
- }
255
 
256
- if (get_site_option('bpm-settings-saved') && $flag) {
257
- echo '<div id="setting-error-bpm-settings-saved" class="updated"><p><strong>' . get_site_option('bpm-settings-saved') . '</strong></p></div>';
258
- }
259
- delete_site_option('bpm-settings-saved');
260
  }
261
-
262
- public function allowed_types(){
263
  $allowed_types = get_site_option('upload_filetypes', 'jpg jpeg png gif');
264
- $allowed_types = explode(' ',$allowed_types);
265
- $allowed_types = implode(', ',$allowed_types);
266
- echo '<span class="description">'.sprintf(__('Currently your network allows uploading of the following file types. You can change the settings <a href="%s">here</a>.<br /><code>%s</code></span>','buddypress-media'),network_admin_url('settings.php#upload_filetypes'),$allowed_types);
267
  }
268
 
269
  /**
@@ -591,24 +591,26 @@ if (!class_exists('BPMediaSettings')) {
591
  }
592
 
593
  public function privacy_notice() {
594
- if (BPMediaPrivacy::is_installed())
595
- return;
596
- $url = add_query_arg(
597
- array('page' => 'bp-media-privacy'), (is_multisite() ? network_admin_url('admin.php') : admin_url('admin.php'))
598
- );
 
599
 
600
- $notice = '
601
  <div class="error">
602
  <p>' . __('BuddyPress Media 2.6 requires a database upgrade. ', 'buddypress-media')
603
- . '<a href="' . $url . '">' . __('Update Database', 'buddypress-media') . '.</a></p>
604
  </div>
605
  ';
606
- echo $notice;
 
607
  }
608
-
609
- public function bp_media_support_intro(){
610
- echo '<p>'.__('If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target="_blank" href="http://rtcamp.com/support/forum/buddypress-media/technical-support/">rtCamp Support Forum</a>.','buddypress-media').'</p>';
611
- echo '<p>'.__('If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target="_blank" href="https://github.com/rtCamp/buddypress-media/issues/new">GitHub</a>.','buddypress-media').'</p>';
612
  }
613
 
614
  }
180
 
181
  $bp_media_addon = new BPMediaAddon();
182
  add_settings_section('bpm-addons', __('BuddyPress Media Addons for Audio/Video Conversion', 'buddypress-media'), array($bp_media_addon, 'get_addons'), 'bp-media-addons');
183
+
184
+ add_settings_section('bpm-support', __('Support', 'buddypress-media'), array($this, 'bp_media_support_intro'), 'bp-media-support');
185
+
186
  if (!BPMediaPrivacy::is_installed()) {
187
  $bp_media_privacy = new BPMediaPrivacySettings();
188
  add_filter('bp_media_add_sub_tabs', array($bp_media_privacy, 'ui'), 99, 2);
226
  }
227
 
228
  public function network_notices() {
229
+ $flag = 1;
230
+ if (get_site_option('bpm-media-enable', false)) {
231
+ echo '<div id="setting-error-bpm-media-enable" class="error"><p><strong>' . get_site_option('bpm-media-enable') . '</strong></p></div>';
232
+ delete_site_option('bpm-media-enable');
233
+ $flag = 0;
234
+ }
235
+ if (get_site_option('bpm-media-type', false)) {
236
+ echo '<div id="setting-error-bpm-media-type" class="error"><p><strong>' . get_site_option('bpm-media-type') . '</strong></p></div>';
237
+ delete_site_option('bpm-media-type');
238
+ $flag = 0;
239
+ }
240
+ if (get_site_option('bpm-media-default-count', false)) {
241
+ echo '<div id="setting-error-bpm-media-default-count" class="error"><p><strong>' . get_site_option('bpm-media-default-count') . '</strong></p></div>';
242
+ delete_site_option('bpm-media-default-count');
243
+ $flag = 0;
244
+ }
245
 
246
+ if (get_site_option('bpm-recount-success', false)) {
247
+ echo '<div id="setting-error-bpm-recount-success" class="updated"><p><strong>' . get_site_option('bpm-recount-success') . '</strong></p></div>';
248
+ delete_site_option('bpm-recount-success');
249
+ $flag = 0;
250
+ } elseif (get_site_option('bpm-recount-fail', false)) {
251
+ echo '<div id="setting-error-bpm-recount-fail" class="error"><p><strong>' . get_site_option('bpm-recount-fail') . '</strong></p></div>';
252
+ delete_site_option('bpm-recount-fail');
253
+ $flag = 0;
254
+ }
255
 
256
+ if (get_site_option('bpm-settings-saved') && $flag) {
257
+ echo '<div id="setting-error-bpm-settings-saved" class="updated"><p><strong>' . get_site_option('bpm-settings-saved') . '</strong></p></div>';
258
+ }
259
+ delete_site_option('bpm-settings-saved');
260
  }
261
+
262
+ public function allowed_types() {
263
  $allowed_types = get_site_option('upload_filetypes', 'jpg jpeg png gif');
264
+ $allowed_types = explode(' ', $allowed_types);
265
+ $allowed_types = implode(', ', $allowed_types);
266
+ echo '<span class="description">' . sprintf(__('Currently your network allows uploading of the following file types. You can change the settings <a href="%s">here</a>.<br /><code>%s</code></span>', 'buddypress-media'), network_admin_url('settings.php#upload_filetypes'), $allowed_types);
267
  }
268
 
269
  /**
591
  }
592
 
593
  public function privacy_notice() {
594
+ if (current_user_can('create_users')) {
595
+ if (BPMediaPrivacy::is_installed())
596
+ return;
597
+ $url = add_query_arg(
598
+ array('page' => 'bp-media-privacy'), (is_multisite() ? network_admin_url('admin.php') : admin_url('admin.php'))
599
+ );
600
 
601
+ $notice = '
602
  <div class="error">
603
  <p>' . __('BuddyPress Media 2.6 requires a database upgrade. ', 'buddypress-media')
604
+ . '<a href="' . $url . '">' . __('Update Database', 'buddypress-media') . '.</a></p>
605
  </div>
606
  ';
607
+ echo $notice;
608
+ }
609
  }
610
+
611
+ public function bp_media_support_intro() {
612
+ echo '<p>' . __('If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target="_blank" href="http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media">rtCamp Support Forum</a>.', 'buddypress-media') . '</p>';
613
+ echo '<p>' . __('If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target="_blank" href="https://github.com/rtCamp/buddypress-media/issues/new">GitHub</a>.', 'buddypress-media') . '</p>';
614
  }
615
 
616
  }
app/main/BPMediaComponent.php CHANGED
@@ -58,6 +58,7 @@ class BPMediaComponent extends BP_Component {
58
  $bp->pages->{$this->id}->slug : BP_MEDIA_SLUG,
59
  // 'has_directory' => true, // Set to false if not required
60
  'search_string' => __( 'Search Media...', 'buddypress-media' ),
 
61
  );
62
  parent::setup_globals( $globals );
63
  }
@@ -327,4 +328,16 @@ class BPMediaComponent extends BP_Component {
327
 
328
  }
329
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  ?>
58
  $bp->pages->{$this->id}->slug : BP_MEDIA_SLUG,
59
  // 'has_directory' => true, // Set to false if not required
60
  'search_string' => __( 'Search Media...', 'buddypress-media' ),
61
+ 'notification_callback' => 'bp_media_notifications_callback'
62
  );
63
  parent::setup_globals( $globals );
64
  }
328
 
329
  }
330
 
331
+ //needs to be a bloody singleton because BuddyPress does a function_exists!
332
+ function bp_media_notifications_callback($action, $media_id, $initiator_id, $total_items){
333
+ $params = array(
334
+ 'action' => $action,
335
+ 'media_id' => $media_id,
336
+ 'initiator_id' => $initiator_id,
337
+ 'total_items' => $total_items
338
+ );
339
+
340
+ return apply_filters('bp_media_notifications',$params);
341
+ }
342
+
343
  ?>
app/main/includes/BPMediaActions.php CHANGED
@@ -345,7 +345,7 @@ class BPMediaActions {
345
  if (bp_displayed_user_id() == bp_loggedin_user_id())
346
  $action_buttons[] = '<a href="' . $bp_media_current_entry->get_edit_url()
347
  . '" class="button item-button bp-secondary-action bp-media-edit" title="'
348
- . __('Edit Media', BP_MEDIA_TXT_DOMAIN) . '">' . __('Edit', BP_MEDIA_TXT_DOMAIN) . '</a>';
349
  }
350
 
351
  $action_buttons = apply_filters('bp_media_action_buttons', $action_buttons);
@@ -1136,12 +1136,12 @@ class BPMediaActions {
1136
  'meta_query' => $privacy_query,
1137
  'posts_per_page' => $count
1138
  );
1139
-
1140
  if ($count != -1) {
1141
  $paged = get_query_var('paged') ? get_query_var('paged') : 1;
1142
  $args['paged'] = $paged;
1143
  }
1144
-
1145
 
1146
  $type = str_replace(array('music', 'photos'), array('audio', 'image'), $type);
1147
 
345
  if (bp_displayed_user_id() == bp_loggedin_user_id())
346
  $action_buttons[] = '<a href="' . $bp_media_current_entry->get_edit_url()
347
  . '" class="button item-button bp-secondary-action bp-media-edit" title="'
348
+ . __('Edit Media', 'buddypress-media') . '">' . __('Edit', 'buddypress-media') . '</a>';
349
  }
350
 
351
  $action_buttons = apply_filters('bp_media_action_buttons', $action_buttons);
1136
  'meta_query' => $privacy_query,
1137
  'posts_per_page' => $count
1138
  );
1139
+
1140
  if ($count != -1) {
1141
  $paged = get_query_var('paged') ? get_query_var('paged') : 1;
1142
  $args['paged'] = $paged;
1143
  }
1144
+
1145
 
1146
  $type = str_replace(array('music', 'photos'), array('audio', 'image'), $type);
1147
 
app/main/includes/BPMediaFilters.php CHANGED
@@ -17,7 +17,7 @@ class BPMediaFilters {
17
  add_filter('bp_activity_get_user_join_filter', 'BPMediaFilters::activity_query_filter', 10);
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
-
21
  //WordPress Edit Image ( For applying edit image changes to custom sizes hack )
22
  global $bp_media;
23
  $media_sizes = $bp_media->media_sizes();
@@ -31,7 +31,7 @@ class BPMediaFilters {
31
  add_filter( 'pre_option_bp_media_single_image_size_w', create_function('','return '. $image_size['large']['width'].';') );
32
  add_filter( 'pre_option_bp_media_single_image_size_h', create_function('','return '. $image_size['large']['height'].';') );
33
  add_filter( 'pre_option_bp_media_single_image_crop', create_function('','return '. $image_size['large']['crop'].';') );
34
-
35
  // and we hook our function via wp_before_admin_bar_render
36
  global $bp_media;
37
  if (isset($bp_media->options['show_admin_menu']) && ($bp_media->options['show_admin_menu'] == true)) {
@@ -329,6 +329,7 @@ class BPMediaFilters {
329
  'href' => bp_get_admin_url(add_query_arg(array('page' => 'bp-media-settings'), 'admin.php'))
330
  );
331
 
 
332
  // Addons
333
  $bp_media_admin_nav[] = array(
334
  'parent' => 'bp-media-menu',
17
  add_filter('bp_activity_get_user_join_filter', 'BPMediaFilters::activity_query_filter', 10);
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
+
21
  //WordPress Edit Image ( For applying edit image changes to custom sizes hack )
22
  global $bp_media;
23
  $media_sizes = $bp_media->media_sizes();
31
  add_filter( 'pre_option_bp_media_single_image_size_w', create_function('','return '. $image_size['large']['width'].';') );
32
  add_filter( 'pre_option_bp_media_single_image_size_h', create_function('','return '. $image_size['large']['height'].';') );
33
  add_filter( 'pre_option_bp_media_single_image_crop', create_function('','return '. $image_size['large']['crop'].';') );
34
+
35
  // and we hook our function via wp_before_admin_bar_render
36
  global $bp_media;
37
  if (isset($bp_media->options['show_admin_menu']) && ($bp_media->options['show_admin_menu'] == true)) {
329
  'href' => bp_get_admin_url(add_query_arg(array('page' => 'bp-media-settings'), 'admin.php'))
330
  );
331
 
332
+
333
  // Addons
334
  $bp_media_admin_nav[] = array(
335
  'parent' => 'bp-media-menu',
app/main/profile/BPMediaAlbumScreen.php CHANGED
@@ -287,10 +287,7 @@ class BPMediaAlbumScreen extends BPMediaScreen {
287
  }
288
  if (isset($albums->posts) && is_array($albums->posts) && count($albums->posts) > 0) {
289
  foreach ($albums->posts as $album) {
290
- if ($album->post_title == $post_wall)
291
- $album_selector .= '<option value="' . $album->ID . '" selected="selected">' . $album->post_title . '</option>';
292
- else
293
- $album_selector .= '<option value="' . $album->ID . '">' . $album->post_title . '</option>';
294
  };
295
  }
296
 
287
  }
288
  if (isset($albums->posts) && is_array($albums->posts) && count($albums->posts) > 0) {
289
  foreach ($albums->posts as $album) {
290
+ $album_selector .= '<option value="' . $album->ID . '">' . $album->post_title . '</option>';
 
 
 
291
  };
292
  }
293
 
app/main/profile/BPMediaScreen.php CHANGED
@@ -95,12 +95,14 @@ class BPMediaScreen {
95
  }
96
 
97
  public function hook_before() {
 
98
  do_action('bp_media_before_content');
99
- do_action('bp_media_before_' . $this->slug);
100
  }
101
 
102
  public function hook_after() {
103
- do_action('bp_media_after_' . $this->slug);
 
104
  do_action('bp_media_after_content');
105
  }
106
 
@@ -335,7 +337,7 @@ class BPMediaScreen {
335
  maxlength="<?php echo max(array($bp_media_default_excerpts['single_entry_description'], $bp_media_default_excerpts['activity_entry_description'])) ?>"
336
  ><?php echo $bp_media_current_entry->get_content(); ?></textarea>
337
  <?php do_action('bp_media_add_media_fields', $this->media_type); ?>
338
-
339
  <div class="submit">
340
  <input type="submit" class="auto" value="<?php _e('Update', 'buddypress-media'); ?>" />
341
  <a href="<?php echo $bp_media_current_entry->get_url(); ?>" class="button" title="<?php _e('Back to Media File', 'buddypress-media'); ?>">
95
  }
96
 
97
  public function hook_before() {
98
+ global $bp;
99
  do_action('bp_media_before_content');
100
+ do_action('bp_media_before_' . $this->slug,$bp->action_variables[1]);
101
  }
102
 
103
  public function hook_after() {
104
+ global $bp;
105
+ do_action('bp_media_after_' . $this->slug,$bp->action_variables[1]);
106
  do_action('bp_media_after_content');
107
  }
108
 
337
  maxlength="<?php echo max(array($bp_media_default_excerpts['single_entry_description'], $bp_media_default_excerpts['activity_entry_description'])) ?>"
338
  ><?php echo $bp_media_current_entry->get_content(); ?></textarea>
339
  <?php do_action('bp_media_add_media_fields', $this->media_type); ?>
340
+
341
  <div class="submit">
342
  <input type="submit" class="auto" value="<?php _e('Update', 'buddypress-media'); ?>" />
343
  <a href="<?php echo $bp_media_current_entry->get_url(); ?>" class="button" title="<?php _e('Back to Media File', 'buddypress-media'); ?>">
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: BuddyPress Media
4
  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
5
  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!
6
- Version: 2.10.1
7
  Author: rtCamp
8
  Text Domain: buddypress-media
9
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
3
  Plugin Name: BuddyPress Media
4
  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
5
  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!
6
+ Version: 2.10.2
7
  Author: rtCamp
8
  Text Domain: buddypress-media
9
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
languages/buddypress-media-ar_AR.po ADDED
@@ -0,0 +1,1393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Arabic
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:10+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr "الحجم الأقصى للرفع"
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr "اختر ألبوم :"
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr "تمكين مقاطع الصوت (mp3)"
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr "تمكين مقاطع الفيديو بصيغة (mp4)"
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr "BuddyPress-وسائط انستقرام"
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr "مهم"
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "أرفق وسائط"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "عرض"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr "%1$s تم نشر تحديث في المجموعة %2$s"
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr ""
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "إعدادت آخرى"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr ""
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>أصدقاء</strong> -مرئي فقط لأصدقاء المستخدم "
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>المستخدمين</strong> - مرئي فقط للمسجلين"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>عام</strong> - مرئي للعامة"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>خاص </strong> - مرئي فقط للمستخدمين"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "نشاطات الرفع"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr "نشاطات الرفع"
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr ""
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr ""
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "عرض الإعدادت"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "عدد الوسائط"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "تمكين الصور"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "تعيين كغلاف للألبوم"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "عدم تعيين كغلاف للألبوم"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "إعدادت الخصوصية"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr ""
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "البدء"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>خاص</strong>, مرئي لي أنا فقط"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>الأصدقاء</strong>, مرئي لأصدقائي"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr ""
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "%s خاص"
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "هذا %1s مرئي فقط ل %2s&rsquo;s الأصدقاء"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "This %s مرئي فقط للمسجلين, فقط"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "مستوى الخصوصية الافتراضي لوسائطك تم تحديثها "
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr ""
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr "كل %s"
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+
553
+ #: app/admin/BPMediaAdmin.php:363
554
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
555
+ msgstr ""
556
+
557
+ #: app/admin/BPMediaAdmin.php:364
558
+ msgid "Add link to footer"
559
+ msgstr ""
560
+
561
+ #: app/admin/BPMediaAdmin.php:365
562
+ msgid "Tweet"
563
+ msgstr ""
564
+
565
+ #: app/admin/BPMediaAdmin.php:366
566
+ msgid "Rate on WordPress.org"
567
+ msgstr ""
568
+
569
+ #: app/admin/BPMediaAdmin.php:377
570
+ msgid "USD"
571
+ msgstr ""
572
+
573
+ #: app/admin/BPMediaAdmin.php:407
574
+ msgid "Subscribe"
575
+ msgstr ""
576
+
577
+ #: app/admin/BPMediaAdmin.php:99
578
+ msgid "BuddyPress Media Convert Videos"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
582
+ msgid "Convert Videos"
583
+ msgstr "تحويل مقاطع الفيديو"
584
+
585
+ #: app/admin/BPMediaAdmin.php:182
586
+ msgid "By"
587
+ msgstr "بواسطة"
588
+
589
+ #: app/admin/BPMediaAdmin.php:262
590
+ msgid "BuddyPress Media Covert Videos"
591
+ msgstr ""
592
+
593
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
594
+ msgid "Atleast one Media Type Must be selected"
595
+ msgstr ""
596
+
597
+ #: app/helper/BPMediaSettings.php:305
598
+ msgid "Media Type"
599
+ msgstr ""
600
+
601
+ #: app/helper/BPMediaSettings.php:603
602
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
603
+ msgstr ""
604
+
605
+ #: app/admin/BPMediaAdmin.php:91
606
+ msgid "BuddyPress Media Database Update"
607
+ msgstr ""
608
+
609
+ #: app/main/privacy/BPMediaPrivacy.php:121
610
+ msgid "<strong>Users</strong>, Visible to registered users"
611
+ msgstr "<strong>المستخدمين</strong>, مرئي للمستخدمين المسجلين"
612
+
613
+ #: app/main/privacy/BPMediaPrivacy.php:125
614
+ msgid "<strong>Public</strong>, Visible to the world"
615
+ msgstr "<strong> عام </strong> , مرئي للعامة "
616
+
617
+ #: app/helper/BPMediaSettings.php:172
618
+ msgid "Enable menu in WordPress admin bar"
619
+ msgstr ""
620
+
621
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
622
+ msgid "Update Database"
623
+ msgstr ""
624
+
625
+ #: app/helper/BPMediaSettings.php:132
626
+ msgid "Download Button"
627
+ msgstr "أيقونة التحميل"
628
+
629
+ #: app/helper/BPMediaSettings.php:135
630
+ msgid "Display download button under media"
631
+ msgstr ""
632
+
633
+ #: app/main/BuddyPressMedia.php:306
634
+ msgid "Privacy"
635
+ msgstr ""
636
+
637
+ #: app/helper/BPMediaSettings.php:140
638
+ msgid "Enable Privacy"
639
+ msgstr "تمكين الخصوصية "
640
+
641
+ #: app/helper/BPMediaSettings.php:143
642
+ msgid "Enable privacy"
643
+ msgstr ""
644
+
645
+ #: app/helper/BPMediaSettings.php:161
646
+ msgid "User Override"
647
+ msgstr "تجاهل المستخدم"
648
+
649
+ #: app/helper/BPMediaSettings.php:155
650
+ msgid "Default Privacy"
651
+ msgstr "خصوصية افتراضية"
652
+
653
+ #: app/helper/BPMediaSettings.php:33
654
+ msgid "Enabled Media Types"
655
+ msgstr " تمكين أنواع الوسائط "
656
+
657
+ #: app/helper/BPMediaSettings.php:169
658
+ msgid "Admin bar menu"
659
+ msgstr ""
660
+
661
+ #: app/helper/BPMediaSettings.php:318
662
+ msgid "Settings saved."
663
+ msgstr ""
664
+
665
+ #: app/main/profile/BPMediaTemplate.php:29
666
+ msgid "Wall Posts"
667
+ msgstr "حائط المنشورات"
668
+
669
+ #: app/main/profile/BPMediaTemplate.php:83
670
+ msgid "+ Create New Album"
671
+ msgstr "+ أنشاء ألبوم جديد"
672
+
673
+ #: app/main/profile/BPMediaTemplate.php:90
674
+ msgid "Cancel"
675
+ msgstr "إلغاء"
676
+
677
+ #: app/main/profile/BPMediaTemplate.php:213
678
+ msgid "Show More"
679
+ msgstr "عرض أكثر"
680
+
681
+ #: app/main/profile/BPMediaTemplate.php:267
682
+ msgid "Select"
683
+ msgstr "اختيار"
684
+
685
+ #: app/main/profile/BPMediaTemplate.php:286
686
+ msgid "Add Media"
687
+ msgstr "إضافة وسائط"
688
+
689
+ #: app/main/includes/BPMediaFilters.php:158
690
+ msgid "Delete %s"
691
+ msgstr "حذف %s"
692
+
693
+ #: app/main/widgets/BPMediaWidget.php:197
694
+ msgid "Widget Type:"
695
+ msgstr ""
696
+
697
+ #: app/main/widgets/BPMediaWidget.php:210
698
+ msgid "Show All"
699
+ msgstr "عرض الكل"
700
+
701
+ #: app/main/widgets/BPMediaWidget.php:213
702
+ msgid "Show Photos"
703
+ msgstr "عرض الصور"
704
+
705
+ #: app/main/widgets/BPMediaWidget.php:216
706
+ msgid "Show Music"
707
+ msgstr "عرض مقاطع الصوت"
708
+
709
+ #: app/main/widgets/BPMediaWidget.php:220
710
+ msgid "Show Videos"
711
+ msgstr "عرض مقاطع الفيديو"
712
+
713
+ #: app/main/widgets/BPMediaWidget.php:20
714
+ msgid "The most recent/popular media uploaded on your site"
715
+ msgstr "أكثر الوسائط الحالية / المشهورة تم رفعها على موقعك"
716
+
717
+ #: app/main/widgets/BPMediaWidget.php:21
718
+ msgid "BuddyPress Media Widget"
719
+ msgstr ""
720
+
721
+ #: app/main/widgets/BPMediaWidget.php:150
722
+ msgid "No "
723
+ msgstr "لا"
724
+
725
+ #: app/main/BuddyPressMedia.php:158
726
+ msgid "BuddyPress is not installed."
727
+ msgstr ""
728
+
729
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
730
+ msgid "BuddyPress Media Addons"
731
+ msgstr ""
732
+
733
+ #: app/admin/BPMediaAdmin.php:88
734
+ msgid "BuddyPress Media Component"
735
+ msgstr ""
736
+
737
+ #: app/helper/BPMediaSupport.php:121
738
+ msgid "Additional Information"
739
+ msgstr "معلومات إضافية"
740
+
741
+ #: app/helper/BPMediaSettings.php:286
742
+ msgid "Recount Success"
743
+ msgstr ""
744
+
745
+ #: app/helper/BPMediaSettings.php:291
746
+ msgid "Recount Fail"
747
+ msgstr ""
748
+
749
+ #: app/main/includes/BPMediaHostWordpress.php:170
750
+ msgid "MP4 file you have uploaded is corrupt."
751
+ msgstr ""
752
+
753
+ #: app/helper/BPMediaSupport.php:246
754
+ msgid "Thank you for your Feedback/Suggestion."
755
+ msgstr "شكرا ً على المقترح / التغذية الرجعية "
756
+
757
+ #: app/helper/BPMediaSupport.php:248
758
+ msgid "Thank you for posting your support request."
759
+ msgstr "شكرا لإرسالك طلب الدعم ."
760
+
761
+ #: app/helper/BPMediaSupport.php:249
762
+ msgid "We will get back to you shortly."
763
+ msgstr "سنعود قريبا ً"
764
+
765
+ #: app/helper/BPMediaSupport.php:252
766
+ msgid "Your server failed to send an email."
767
+ msgstr "فشل الخادم في إرسال البريد الإلكتروني"
768
+
769
+ #: app/helper/BPMediaSupport.php:253
770
+ msgid "Kindly contact your server support to fix this."
771
+ msgstr ""
772
+
773
+ #: app/helper/BPMediaSupport.php:254
774
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
775
+ msgstr ""
776
+
777
+ #: app/helper/BPMediaSupport.php:95
778
+ msgid "Name"
779
+ msgstr "الإسم"
780
+
781
+ #: app/helper/BPMediaSupport.php:98
782
+ msgid "Email"
783
+ msgstr "البريد الإلكتروني"
784
+
785
+ #: app/helper/BPMediaSupport.php:101
786
+ msgid "Website"
787
+ msgstr "الموقع"
788
+
789
+ #: app/helper/BPMediaSupport.php:104
790
+ msgid "Phone"
791
+ msgstr "الجوال"
792
+
793
+ #: app/helper/BPMediaSupport.php:107
794
+ msgid "Subject"
795
+ msgstr "الموضوع"
796
+
797
+ #: app/helper/BPMediaSupport.php:110
798
+ msgid "Details"
799
+ msgstr "التفاصيل"
800
+
801
+ #: app/helper/BPMediaSupport.php:161
802
+ msgid "BuddyPress Media Premium Support Request from"
803
+ msgstr ""
804
+
805
+ #: app/helper/BPMediaSupport.php:164
806
+ msgid "BuddyPress Media New Feature Request from"
807
+ msgstr ""
808
+
809
+ #: app/helper/BPMediaSupport.php:167
810
+ msgid "BuddyPress Media Bug Report from"
811
+ msgstr ""
812
+
813
+ #: app/helper/BPMediaSupport.php:170
814
+ msgid "BuddyPress Media Contact from"
815
+ msgstr ""
816
+
817
+ #: app/helper/BPMediaSettings.php:358
818
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
819
+ msgstr ""
820
+
821
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
822
+ #: app/helper/BPMediaSettings.php:531
823
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
824
+ msgstr ""
825
+
826
+ #: app/main/includes/BPMediaActions.php:874
827
+ msgid "%1$s created an album %2$s"
828
+ msgstr "%1$s تم إنشاء ألبوم%2$s"
829
+
830
+ #: app/main/BPMediaComponent.php:262
831
+ msgid "All Albums"
832
+ msgstr "كل الألبومات"
833
+
834
+ #: app/main/BPMediaComponent.php:263
835
+ msgid "View Album"
836
+ msgstr "مشاهدة الألبوم"
837
+
838
+ #: app/main/BPMediaComponent.php:264
839
+ msgid "Search Albums"
840
+ msgstr "البحث في الألبوم"
841
+
842
+ #: app/main/BPMediaComponent.php:265
843
+ msgid "No album found"
844
+ msgstr "لا يوجد أي البوم"
845
+
846
+ #: app/main/BPMediaComponent.php:266
847
+ msgid "No album found in Trash"
848
+ msgstr "لم يتم العثور على الألبوم في سلة المهملات"
849
+
850
+ #: app/main/BPMediaComponent.php:300
851
+ msgid "Add New Media"
852
+ msgstr "إضافة وسائط جديدة"
853
+
854
+ #: app/main/BPMediaComponent.php:308
855
+ msgid "BuddyPress Media's Media Files"
856
+ msgstr ""
857
+
858
+ #: app/main/includes/BPMediaFunction.php:229
859
+ msgid "%1$s added new media in album %2$s"
860
+ msgstr "%1$s تم إضافة وسائط جديدة في الألبوم %2$s"
861
+
862
+ #: app/importers/BPMediaAlbumimporter.php:81
863
+ msgid "Users"
864
+ msgstr ""
865
+
866
+ #: app/main/includes/BPMediaFilters.php:410
867
+ msgid "Total Photos"
868
+ msgstr "عدد الصور"
869
+
870
+ #: app/main/includes/BPMediaFilters.php:411
871
+ msgid "Total Videos"
872
+ msgstr "عدد مقاطع الفيديو"
873
+
874
+ #: app/main/includes/BPMediaFilters.php:412
875
+ msgid "Total Audio"
876
+ msgstr "مجموع مقاطع الصوت"
877
+
878
+ #: app/main/includes/BPMediaFilters.php:413
879
+ msgid "Total Albums"
880
+ msgstr "مجموع الألبومات"
881
+
882
+ #: app/helper/BPMediaSettings.php:118
883
+ msgid "Groups"
884
+ msgstr "المجموعات"
885
+
886
+ #: app/main/includes/BPMediaActions.php:348
887
+ msgid "Edit Media"
888
+ msgstr "تعديل الوسائط"
889
+
890
+ #: app/main/profile/BPMediaAlbumScreen.php:246
891
+ msgid "Edit"
892
+ msgstr "تحرير"
893
+
894
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
895
+ #: app/main/profile/BPMediaTemplate.php:282
896
+ msgid "Create"
897
+ msgstr "إنشاء"
898
+
899
+ #: app/main/BPMediaComponent.php:260
900
+ #: app/main/profile/BPMediaAlbumScreen.php:246
901
+ msgid "Edit Album"
902
+ msgstr "تعديل الألبوم"
903
+
904
+ #: app/main/BPMediaComponent.php:261
905
+ msgid "New Album"
906
+ msgstr "ألبوم جديد"
907
+
908
+ #: app/helper/BPMediaSupport.php:126
909
+ msgid "Your WP Admin Login:"
910
+ msgstr ""
911
+
912
+ #: app/helper/BPMediaSupport.php:129
913
+ msgid "Your WP Admin password:"
914
+ msgstr ""
915
+
916
+ #: app/helper/BPMediaSupport.php:132
917
+ msgid "Your SSH / FTP host:"
918
+ msgstr ""
919
+
920
+ #: app/helper/BPMediaSupport.php:135
921
+ msgid "Your SSH / FTP login:"
922
+ msgstr ""
923
+
924
+ #: app/helper/BPMediaSupport.php:138
925
+ msgid "Your SSH / FTP password:"
926
+ msgstr ""
927
+
928
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
929
+ msgid "Media Title"
930
+ msgstr "عنوان الوسائط"
931
+
932
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
933
+ msgid "Media Description"
934
+ msgstr "وصف الوسائط"
935
+
936
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
937
+ msgid "Select Media File"
938
+ msgstr "اختيار ملف الوسائط"
939
+
940
+ #: app/main/BPMediaComponent.php:60
941
+ msgid "Search Media..."
942
+ msgstr "بحث في الوسائط"
943
+
944
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
945
+ msgid "BuddyPress Media Support"
946
+ msgstr ""
947
+
948
+ #: app/helper/BPMediaSupport.php:81
949
+ msgid "Submit a Bug Report"
950
+ msgstr ""
951
+
952
+ #: app/helper/BPMediaSupport.php:84
953
+ msgid "Submit a New Feature Request"
954
+ msgstr ""
955
+
956
+ #: app/helper/BPMediaSupport.php:87
957
+ msgid "Submit a Premium Support Request"
958
+ msgstr ""
959
+
960
+ #: app/main/includes/BPMediaHostWordpress.php:615
961
+ msgid "Post"
962
+ msgstr "منشور"
963
+
964
+ #: app/main/includes/BPMediaHostWordpress.php:615
965
+ msgid "or press esc to cancel."
966
+ msgstr "أو إضغط على زر esc للإلغاء"
967
+
968
+ #: app/main/profile/BPMediaAlbumScreen.php:252
969
+ msgid "Delete"
970
+ msgstr "حذف"
971
+
972
+ #: app/main/includes/BPMediaHostWordpress.php:59
973
+ msgid "Sorry, the requested media does not exist."
974
+ msgstr "عذراً ، الوسائط المطلوبة غير موجودة ."
975
+
976
+ #: app/main/includes/BPMediaHostWordpress.php:137
977
+ msgid "Error Uploading File"
978
+ msgstr "خطأ في رفع الملف"
979
+
980
+ #: app/main/includes/BPMediaHostWordpress.php:177
981
+ #: app/main/includes/BPMediaHostWordpress.php:182
982
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
983
+ msgstr ""
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:187
986
+ msgid "The MP4 file you have uploaded is not a video file."
987
+ msgstr ""
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:198
990
+ msgid "MP3 file you have uploaded is currupt."
991
+ msgstr ""
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:205
994
+ #: app/main/includes/BPMediaHostWordpress.php:210
995
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
996
+ msgstr ""
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:215
999
+ msgid "The MP3 file you have uploaded is not an audio file."
1000
+ msgstr ""
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:227
1003
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1004
+ msgstr ""
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:236
1007
+ msgid "Error creating attachment for the media file, please try again"
1008
+ msgstr "خطأ في إنشاء مرفق لملف الوسائط ، الرجاء أعد المحاولة مرة آخرى ."
1009
+
1010
+ #: app/main/includes/BPMediaHostWordpress.php:346
1011
+ msgid "%s uploaded a media."
1012
+ msgstr "%s تم رفع الوسائط"
1013
+
1014
+ #: app/main/includes/BPMediaHostWordpress.php:367
1015
+ msgid "Uploaded by "
1016
+ msgstr "تم الرفع بواسطة"
1017
+
1018
+ #: app/main/includes/BPMediaHostWordpress.php:590
1019
+ msgid "Comment <span>%s</span>"
1020
+ msgstr "تعليق <span>%s</span>"
1021
+
1022
+ #: app/main/includes/BPMediaHostWordpress.php:594
1023
+ msgid "Favorite"
1024
+ msgstr "مفضل"
1025
+
1026
+ #: app/main/includes/BPMediaHostWordpress.php:596
1027
+ msgid "Remove Favorite"
1028
+ msgstr "إزل من المفضلة"
1029
+
1030
+ #: app/main/widgets/BPMediaWidget.php:203
1031
+ msgid "Title:"
1032
+ msgstr "العنوان :"
1033
+
1034
+ #: app/main/widgets/BPMediaWidget.php:206
1035
+ msgid "Number of posts to show:"
1036
+ msgstr "عدد المنشورات للعرض"
1037
+
1038
+ #: app/main/widgets/BPMediaWidget.php:199
1039
+ msgid "Recent Media"
1040
+ msgstr "الوسائط الحالية"
1041
+
1042
+ #: app/main/widgets/BPMediaWidget.php:72
1043
+ msgid "All"
1044
+ msgstr "كل"
1045
+
1046
+ #: app/main/group/BPMediaGroupsExtension.php:41
1047
+ #: app/main/group/BPMediaGroupsExtension.php:88
1048
+ msgid "Who can create Albums in this group?"
1049
+ msgstr "من هو الذي يستطيع إنشاء ألبوم في هذه المجموعة ؟"
1050
+
1051
+ #: app/main/group/BPMediaGroupsExtension.php:45
1052
+ #: app/main/group/BPMediaGroupsExtension.php:92
1053
+ msgid "All Group Members"
1054
+ msgstr "كل أعضاء المجموعة"
1055
+
1056
+ #: app/main/group/BPMediaGroupsExtension.php:49
1057
+ #: app/main/group/BPMediaGroupsExtension.php:96
1058
+ msgid "Group Admins and Mods only"
1059
+ msgstr "مدير المجموعة و المشرفين فقط"
1060
+
1061
+ #: app/main/group/BPMediaGroupsExtension.php:53
1062
+ #: app/main/group/BPMediaGroupsExtension.php:100
1063
+ msgid "Group Admin only"
1064
+ msgstr "مدير المجموعة فقط"
1065
+
1066
+ #: app/main/group/BPMediaGroupsExtension.php:104
1067
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1068
+ msgid "Save Changes"
1069
+ msgstr "حفظ التغييرات"
1070
+
1071
+ #: app/main/group/BPMediaGroupsExtension.php:130
1072
+ msgid "There was an error saving, please try again"
1073
+ msgstr "يوجد خطأ في الحفظ ، الرجاء أعد المحاولة مرة آخرى"
1074
+
1075
+ #: app/main/group/BPMediaGroupsExtension.php:132
1076
+ msgid "Settings saved successfully"
1077
+ msgstr "تم حفظ الإعدادات بنجاح"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:153
1080
+ msgid ""
1081
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1082
+ "\t home screen."
1083
+ msgstr ""
1084
+
1085
+ #: app/main/widgets/BPMediaWidget.php:200
1086
+ msgid "Popular Media"
1087
+ msgstr "الوسائط المشهورة"
1088
+
1089
+ #: app/main/profile/BPMediaScreen.php:396
1090
+ msgid "Media deleted successfully"
1091
+ msgstr "تم حذف الوسائط بنجاح"
1092
+
1093
+ #: app/main/profile/BPMediaTemplate.php:98
1094
+ #: app/main/profile/BPMediaUploadScreen.php:33
1095
+ msgid "Upload Media"
1096
+ msgstr "رفع الواسائط"
1097
+
1098
+ #: app/main/profile/BPMediaUploadScreen.php:71
1099
+ msgid "You are not allowed to be here"
1100
+ msgstr "غير مسموح لك لتكون هنا "
1101
+
1102
+ #: app/main/profile/BPMediaUploadScreen.php:98
1103
+ #: app/main/profile/BPMediaUploadScreen.php:122
1104
+ msgid "File uploaded is not supported"
1105
+ msgstr "الملف المرفوع غير مدعم"
1106
+
1107
+ #: app/main/profile/BPMediaUploadScreen.php:105
1108
+ msgid "Image uploads are disabled"
1109
+ msgstr "الصورة المرفوعة معطلة"
1110
+
1111
+ #: app/main/profile/BPMediaUploadScreen.php:111
1112
+ msgid "Video uploads are disabled"
1113
+ msgstr "مقطع الفيديو المرفوع معطل"
1114
+
1115
+ #: app/main/profile/BPMediaUploadScreen.php:117
1116
+ msgid "Audio uploads are disabled"
1117
+ msgstr "مقطع الصوت المرفوع معطل"
1118
+
1119
+ #: app/main/profile/BPMediaUploadScreen.php:135
1120
+ msgid "Upload Successful"
1121
+ msgstr "تم الرفع بنجاح"
1122
+
1123
+ #: app/main/profile/BPMediaUploadScreen.php:140
1124
+ msgid "You did not specified a file to upload"
1125
+ msgstr "لم يتم تحديد الملف المخصص للرفع"
1126
+
1127
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1128
+ msgid "Sorry, no media items were found in this album."
1129
+ msgstr " عذرا ً ، لا يوجد وسائط في هذا الألبوم"
1130
+
1131
+ #: app/main/profile/BPMediaAlbum.php:74
1132
+ msgid "Sorry, the requested album does not exist."
1133
+ msgstr "عذراً ، الألبوم المطلوب غير موجود ."
1134
+
1135
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1136
+ msgid "Sorry, the requested media does not belong to the group"
1137
+ msgstr "عذراً ، الوسائط المطلوبة لا تنتمي للمجموعة"
1138
+
1139
+ #: app/main/BPMediaGroupLoader.php:252
1140
+ msgid "Media Settings"
1141
+ msgstr ""
1142
+
1143
+ #: app/main/group/BPMediaGroupsExtension.php:40
1144
+ #: app/main/group/BPMediaGroupsExtension.php:87
1145
+ msgid "Album Creation Control"
1146
+ msgstr "تحكم بإنشاء الألبوم"
1147
+
1148
+ #: app/main/profile/BPMediaScreen.php:114
1149
+ #: app/main/profile/BPMediaScreen.php:374
1150
+ msgid "The requested url does not exist"
1151
+ msgstr "عنوان الرابط URL المطلوب غير موجود ."
1152
+
1153
+ #: app/main/profile/BPMediaScreen.php:196
1154
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1155
+ msgid "Sorry, no %s were found."
1156
+ msgstr "عذراً , لا %s يوجد ."
1157
+
1158
+ #: app/main/profile/BPMediaScreen.php:307
1159
+ msgid "Edit %s"
1160
+ msgstr "تعديل %s"
1161
+
1162
+ #: app/main/profile/BPMediaScreen.php:328
1163
+ msgid "%s Title"
1164
+ msgstr "%s العنوان"
1165
+
1166
+ #: app/main/profile/BPMediaScreen.php:334
1167
+ msgid "%s Description"
1168
+ msgstr "%s وصف"
1169
+
1170
+ #: app/main/profile/BPMediaScreen.php:342
1171
+ msgid "Update"
1172
+ msgstr "تحديث"
1173
+
1174
+ #: app/main/profile/BPMediaScreen.php:343
1175
+ msgid "Back to Media File"
1176
+ msgstr "الرجوع إلى ملف الوسائط"
1177
+
1178
+ #: app/main/profile/BPMediaScreen.php:344
1179
+ msgid "Back to Media"
1180
+ msgstr "الرجوع إلى الوسائط"
1181
+
1182
+ #: app/main/profile/BPMediaScreen.php:367
1183
+ msgid "You do not have access to this page."
1184
+ msgstr "لا يمكن الوصول لهذه الصفحة"
1185
+
1186
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1187
+ #: app/main/BuddyPressMedia.php:327
1188
+ msgid "Albums"
1189
+ msgstr ""
1190
+
1191
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1192
+ msgid "Album"
1193
+ msgstr "الألبوم"
1194
+
1195
+ #: app/main/BuddyPressMedia.php:333
1196
+ msgid "Upload"
1197
+ msgstr "رفع"
1198
+
1199
+ #: app/main/profile/BPMediaTemplate.php:246
1200
+ msgid "Select Album"
1201
+ msgstr "اختيار ألبوم"
1202
+
1203
+ #: app/main/profile/BPMediaTemplate.php:247
1204
+ #: app/main/profile/BPMediaTemplate.php:275
1205
+ msgid "x"
1206
+ msgstr ""
1207
+
1208
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1209
+ #: app/main/profile/BPMediaTemplate.php:274
1210
+ msgid "Create Album"
1211
+ msgstr "‘نشاء ألبوم"
1212
+
1213
+ #: app/main/profile/BPMediaTemplate.php:278
1214
+ msgid "Album Name"
1215
+ msgstr "اسم الألبوم"
1216
+
1217
+ #: app/main/profile/BPMediaTemplate.php:96
1218
+ msgid "Drop files here"
1219
+ msgstr "اسحب الملفات هنا"
1220
+
1221
+ #: app/main/profile/BPMediaTemplate.php:97
1222
+ msgid " or "
1223
+ msgstr "أو"
1224
+
1225
+ #: app/admin/BPMediaAdmin.php:410
1226
+ msgid "Latest News"
1227
+ msgstr ""
1228
+
1229
+ #: app/helper/BPMediaSettings.php:34
1230
+ msgid "Photos"
1231
+ msgstr "الصور"
1232
+
1233
+ #: app/main/BuddyPressMedia.php:312
1234
+ msgid "Photo"
1235
+ msgstr ""
1236
+
1237
+ #: app/main/BuddyPressMedia.php:315
1238
+ msgid "Videos"
1239
+ msgstr ""
1240
+
1241
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1242
+ msgid "Music"
1243
+ msgstr ""
1244
+
1245
+ #: app/admin/BPMediaAdmin.php:389
1246
+ msgid "Donate"
1247
+ msgstr ""
1248
+
1249
+ #: app/admin/BPMediaAdmin.php:405
1250
+ msgid "RSS Feed"
1251
+ msgstr ""
1252
+
1253
+ #: app/admin/BPMediaAdmin.php:403
1254
+ msgid "Facebook"
1255
+ msgstr ""
1256
+
1257
+ #: app/admin/BPMediaAdmin.php:404
1258
+ msgid "Follow us on Twitter"
1259
+ msgstr ""
1260
+
1261
+ #: app/admin/BPMediaAdmin.php:404
1262
+ msgid "Twitter"
1263
+ msgstr ""
1264
+
1265
+ #: app/admin/BPMediaAdmin.php:405
1266
+ msgid "Subscribe to our feeds"
1267
+ msgstr ""
1268
+
1269
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1270
+ msgid "Addons"
1271
+ msgstr ""
1272
+
1273
+ #: app/admin/BPMediaAdmin.php:97
1274
+ msgid "Support "
1275
+ msgstr ""
1276
+
1277
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1278
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1279
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1280
+ #: app/main/BuddyPressMedia.php:304
1281
+ msgid "Media"
1282
+ msgstr "الوسائط"
1283
+
1284
+ #: app/helper/BPMediaSettings.php:184
1285
+ msgid "Support"
1286
+ msgstr ""
1287
+
1288
+ #: app/admin/BPMediaAdmin.php:182
1289
+ msgid "Empowering The Web With WordPress"
1290
+ msgstr ""
1291
+
1292
+ #: app/admin/BPMediaAdmin.php:403
1293
+ msgid "Become a fan on Facebook"
1294
+ msgstr ""
1295
+
1296
+ #: app/helper/BPMediaSettings.php:182
1297
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1298
+ msgstr ""
1299
+
1300
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1301
+ msgid "Recounting of media files done successfully"
1302
+ msgstr ""
1303
+
1304
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1305
+ msgid "Recounting Failed"
1306
+ msgstr ""
1307
+
1308
+ #: app/helper/BPMediaSettings.php:405
1309
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1310
+ msgstr ""
1311
+
1312
+ #: app/helper/BPMediaSettings.php:533
1313
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1314
+ msgstr ""
1315
+
1316
+ #: app/helper/BPMediaAddon.php:49
1317
+ msgid "BuddyPress-Media Kaltura Add-on"
1318
+ msgstr ""
1319
+
1320
+ #: app/helper/BPMediaAddon.php:52
1321
+ msgid "Add support for more video formats using Kaltura video solution."
1322
+ msgstr ""
1323
+
1324
+ #: app/helper/BPMediaAddon.php:53
1325
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1326
+ msgstr ""
1327
+
1328
+ #: app/helper/BPMediaAddon.php:59
1329
+ msgid "BuddyPress-Media FFMPEG Add-on"
1330
+ msgstr ""
1331
+
1332
+ #: app/helper/BPMediaAddon.php:62
1333
+ msgid "Add supports for more audio & video formats using open-source media-node."
1334
+ msgstr ""
1335
+
1336
+ #: app/helper/BPMediaAddon.php:63
1337
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1338
+ msgstr ""
1339
+
1340
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1341
+ msgid "Buy Now"
1342
+ msgstr "الشراء الآن"
1343
+
1344
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1345
+ msgid "Live Demo"
1346
+ msgstr ""
1347
+
1348
+ #: app/main/group/BPMediaGroupAction.php:124
1349
+ #: app/main/includes/BPMediaHostWordpress.php:742
1350
+ msgid "%1$s added a %2$s"
1351
+ msgstr "%1$s تم إضافة %2$s"
1352
+
1353
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1354
+ #: app/admin/BPMediaAdmin.php:213
1355
+ msgid "BuddyPress Media"
1356
+ msgstr ""
1357
+
1358
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1359
+ #: app/main/BuddyPressMedia.php:443
1360
+ msgid "Settings"
1361
+ msgstr "إعدادت"
1362
+
1363
+ #: app/helper/BPMediaFeed.php:43
1364
+ msgid "No items"
1365
+ msgstr "لا يوجد أي عنصر"
1366
+
1367
+ #: app/helper/BPMediaFeed.php:49
1368
+ msgid "Posted "
1369
+ msgstr "تم النشر"
1370
+
1371
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1372
+ msgid "BuddyPress Media Settings"
1373
+ msgstr "إعدادت وسائط BuddyPress "
1374
+
1375
+ #: app/helper/BPMediaSettings.php:39
1376
+ msgid "Video"
1377
+ msgstr "مقاطع الفيديو"
1378
+
1379
+ #: app/helper/BPMediaSettings.php:44
1380
+ msgid "Audio"
1381
+ msgstr "مقاطع الصوت"
1382
+
1383
+ #: app/main/includes/BPMediaActions.php:330
1384
+ msgid "Download"
1385
+ msgstr "تحميل"
1386
+
1387
+ #: app/admin/BPMediaAdmin.php:367
1388
+ msgid "Spread the Word"
1389
+ msgstr ""
1390
+
1391
+ #: app/helper/BPMediaAdminWidget.php:29
1392
+ msgid "Argument missing. id is required."
1393
+ msgstr ""
languages/buddypress-media-de_DE.po ADDED
@@ -0,0 +1,1408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in German
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:32:15+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr "Absenden"
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr "Bitte wähle ein Album!"
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr "Privat"
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr "Kein Medium gefunden"
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr "Album löschen"
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr "Alles Sichtbare auswählen"
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr "Auswahl auf alles Sichtbare aufheben"
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr "Ausgewählte Medien löschen"
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr "Verschieben"
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr "Auswahl verschieben"
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr "Alles verschieben"
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr "Etwas ging schief. Versuche es noch einmal."
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr "Bist du sicher, dass du dieses Album zusammenführen willst?"
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr "Möchtest du das Album nach dem Zusammenführen löschen?"
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr "Bist du sicher, dass du die ausgewählten Medien löschen möchtest?"
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr "Bist du sicher, dass du diese Aktivität und damit verbundene Medien löschen möchtest?"
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr "Bist du sicher?"
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr "Bitte wähle Medien aus."
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr "Bitte wähle eine Aktion."
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr "Du hast den Album-Namen nicht ausgefüllt"
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr "Tut mir leid, in dieser Gruppe kannst du kein Album erstellen"
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr "Netzwerk-Einstellungen automatisch aktualisieren"
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr "Du hast Video in BuddyPress Media aktiviert, das Netzwerk erlaubt aber den Dateityp mp4 nicht. Klick <a href=\"%s\">hier</a>, um das manuell zu ändern."
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr "Du hast Audio in BuddyPress Media aktiviert, das Netzwerk erlaubt aber den Dateityp mp3 nicht. Klick <a href=\"%s\">hier</a>, um das manuell zu ändern. "
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr "Netzwerk-Einstellungen erfolgreich aktualisiert."
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr "Du hast Bilder in BuddyPress Media aktiviert, das Netzwerk erlaubt aber das Hochladen von %s nicht. Klick <a href=\"%s\">hier</a>, um das manuell zu ändern. "
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr "Empfohlen"
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr "Wenn du Änderungen an Breite, Höhe oder Zuschneide-Einstellungen vornimmst, musst du das Plugin \"<a href=\"%s\">Regenerate Thumbnails</a>\" nutzen, um alte Bilder neu zu generieren.\""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr "Breite"
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr "Höhe"
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr "Zuschneiden"
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr "Wenn du Vorschläge, Ideen oder Fehlermeldungen hast, kannst du auf <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a> eine Anfrage stellen."
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr "Bitte lade diese Seite nicht neu."
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr "Ein Fehler ist aufgetreten. Bitte die Seite <a href onclick=\"location.reload();\">neu laden</a>."
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr "Dein Netzwerk erlaubt derzeit das Hochladen der folgenden Dateitypen. Du kannst die Einstellungen <a href=\"%s\">hier</a> ändern.<br /><code>%s</code></span>"
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr "Bild-Einstellungen"
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr "Vorschaubild-Größe"
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr "Genutzt in Alben, Sidebar, Media-Widget und Aktivitäten"
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr "Mittlere Größe"
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr "Genutzt in den Aktivitäten für einzeln hochgeladene Medien"
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr "Große Größe"
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr "Genutzt in der Einzelansicht"
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr "Video-Player-Einstellungen"
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr "Player-Größe für Aktivitäten"
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr "Player-Größe für Einzelansicht"
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr "Audio-Player-Einstellungen"
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr "Maximale Uploadgröße"
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr "Album auswählen"
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr "&"
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr "Die folgenden %d BP Album Media IDs konnten nicht importiert werden"
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr "Ich importierte bp-album zu @buddypressmedia http://goo.gl/8Upmv auf %s"
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr "Herzlichen Glückwunsch!"
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr "Alle Medien von BP Album wurden importiert."
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr "Twittern"
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr "Wie auch immer, ein Haufen nutzloser Dateien und eine Datenbank-Tabelle fressen noch deine Ressourcen. Wenn alles funktioniert, kannst du diese Daten löschen."
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr "Jetzt löschen"
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr "Später löschen"
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr "Probier doch mal ein paar Instagram-Ähnliche Effekte für deine Bilder aus..."
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr "Anscheinend nutzt du BP Album nicht. Gibt es ein anderes BuddyPress-Plugin, wofür du eine Importfunktion brauchst?"
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr "Erstelle dazu <a href=\"%s\">eine Aufgabe auf GitHub</a>."
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr "Warnung!"
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr "Der Importprozess ist nicht rückgängig zu machen. Auch wenn alles getestet ist, lege bitte ein <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">Backup deiner Datenbank und der Dateien an</a>, bevor du fortfährst. Falls du dich damit nicht auskennst, <a target=\"_blank\" href=\"%s\">beauftrage uns</a> oder einen anderen Profi."
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr "Wenn du \"WP_DEBUG\" in der Datei wp-config.php stehen hast, vergewissere dich, dass es auf \"false\" steht, damit es nicht mit dem Importprozess kollidiert."
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr "Ich habe ein Backup der Datenbank und der Dateien dieser Seite angelegt."
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr "Import starten"
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr "Kommentare"
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr "Kommentare: 0/0 (keine Kommentare zu importieren)"
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr "Benutzer-Favoriten"
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr "BP Album ist aktiv und wird Probleme beim Import verursachen."
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr "Hier Klicken, um BP Album zu deaktivieren und mit dem Import fortzufahren"
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr "Der Import mancher Medien schlug fehl. Die Dateien könnten beschädigt oder gelöscht sein."
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr "Importer"
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr "BP Album Importer"
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr "Aktiviere Audio (mp3)"
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr "Lightbox-Integration"
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr "Lightbox"
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr "Lightbox für Medien einschalten"
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr "Für diese Funktion benötigst du ImageMagick auf deinem Server."
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr "Aktiviere Video (mp4)"
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr "BuddyPress-Media Instagram"
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr "BuddyPress Media Instagram fügt Instagram-Ähnliche Filter für Bilder hinzu."
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr "Wichtig"
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "Medien Anhängen"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "Ansehen"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr "%1$s hat etwas in der Gruppe %2$s geschrieben"
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr "Um BuddyPress Media zu nutzen, musst du zuerst BuddyPress installieren."
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr "<a href=\"%s\">Installiere BuddyPress</a>"
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr "ODER"
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr "Nutze <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">Premium-Erweiterungen</a> ab $9"
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr "Debug-Informationen"
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr "\"Anzahl der Medien\" sollte numerisch und größer als 0 sein."
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr "Standard-Anzahl"
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr "Keine"
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr "Debug-Informationen"
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr "Medien-Anzahl reparieren"
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr "Nutzer erlauben, Admin-Standards zu überschreiben (<em>Empfohlen</em>)"
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "Weitere Einstellungen"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr "Neu zählen"
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>Freunde</strong> - Sichtbar für Freunde des Nutzers"
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>Nutzer</strong> - Sichtbar für registrierte Nutzer"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>Öffentlich</strong> - Sichtbar für alle"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>Privat</strong> - Sichtbar nur für den Nutzer"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "Aktivitäts-Upload"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr "Aktivitäts-Uploads"
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr "Hochladen als Aktivität aktivieren"
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr "Gruppenintegration"
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr "Medien in Gruppen erlauben"
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "Einstellungen anzeigen"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "Anzahl der Medien"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "Aktiviere Fotos"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Als Titelbild festlegen"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Nicht mehr als Titelbild festlegen"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Privatsphäre"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "BP Media Datenbank aktualisieren"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Start"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>Privat</strong>, nur für mich selbst sichtbar"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>Freunde</strong>, sichtbar für meine Freunde"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr "Lege fest, welche Privatsphäre als Standard gesetzt sein soll"
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "Diese(s) %s ist privat"
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "Diese(s) %1s ist nur für Freunde von %2s sichtbar"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "Diese(s) %s ist nur für angemeldete Mitglieder sichtbar"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "Die Standardeinstellung zur Privatsphäre wurde aktualisiert"
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+ "Bitte konfiguriere dieses Widget\n"
528
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a href=\"%s\" target=\"_blank\"\n"
529
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\ttitle=\"BP Media Widget konfigurieren\">\n"
530
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\thier</a>."
531
+
532
+ #: app/main/profile/BPMediaAlbumScreen.php:300
533
+ msgid "to"
534
+ msgstr "nach"
535
+
536
+ #: app/main/profile/BPMediaScreen.php:125
537
+ msgid "All %s"
538
+ msgstr "Alle %s"
539
+
540
+ #: app/main/BuddyPressMedia.php:547
541
+ msgid ""
542
+ "The BuddyPress version installed is an\n"
543
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
544
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
545
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
546
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
547
+ msgstr ""
548
+ "Die installierte BuddyPress Version ist eine\n"
549
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tältere Version und wird nicht mehr unterstützt,\n"
550
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tBitte aktualisiere BuddyPress, um das\n"
551
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tBuddyPress Media Plugin nutzen zu können.\n"
552
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
553
+
554
+ #: app/main/BuddyPressMedia.php:560
555
+ msgid ""
556
+ "You have not installed BuddyPress.\n"
557
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
558
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
559
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
560
+ msgstr ""
561
+ "You have not installed BuddyPress.\n"
562
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tBitte installiere die neueste Version von BuddyPress,\n"
563
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tum das BuddyPress Media plugin nutzen zu können.\n"
564
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
565
+
566
+ #: app/admin/BPMediaAdmin.php:363
567
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
568
+ msgstr "Ich verwende @buddypressmedia http://goo.gl/8Upmv auf %s"
569
+
570
+ #: app/admin/BPMediaAdmin.php:364
571
+ msgid "Add link to footer"
572
+ msgstr "Link zum Footer hinzufügen"
573
+
574
+ #: app/admin/BPMediaAdmin.php:365
575
+ msgid "Tweet"
576
+ msgstr "Tweet"
577
+
578
+ #: app/admin/BPMediaAdmin.php:366
579
+ msgid "Rate on WordPress.org"
580
+ msgstr "Auf WordPress.org bewerten"
581
+
582
+ #: app/admin/BPMediaAdmin.php:377
583
+ msgid "USD"
584
+ msgstr "USD"
585
+
586
+ #: app/admin/BPMediaAdmin.php:407
587
+ msgid "Subscribe"
588
+ msgstr "Eintragen"
589
+
590
+ #: app/admin/BPMediaAdmin.php:99
591
+ msgid "BuddyPress Media Convert Videos"
592
+ msgstr "BuddyPress Media Video-Konverter"
593
+
594
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
595
+ msgid "Convert Videos"
596
+ msgstr "Videos konvertieren"
597
+
598
+ #: app/admin/BPMediaAdmin.php:182
599
+ msgid "By"
600
+ msgstr "Von"
601
+
602
+ #: app/admin/BPMediaAdmin.php:262
603
+ msgid "BuddyPress Media Covert Videos"
604
+ msgstr "BuddyPress Media Video-Konverter"
605
+
606
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
607
+ msgid "Atleast one Media Type Must be selected"
608
+ msgstr "Es muss mindestens ein Medien-Typ gewählt werden."
609
+
610
+ #: app/helper/BPMediaSettings.php:305
611
+ msgid "Media Type"
612
+ msgstr "Media-Typ"
613
+
614
+ #: app/helper/BPMediaSettings.php:603
615
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
616
+ msgstr "BuddyPress Media 2.6 erfordert eine Datenbank-Aktualisierung. "
617
+
618
+ #: app/admin/BPMediaAdmin.php:91
619
+ msgid "BuddyPress Media Database Update"
620
+ msgstr "BuddyPress Media Datenbank-Aktualisierung"
621
+
622
+ #: app/main/privacy/BPMediaPrivacy.php:121
623
+ msgid "<strong>Users</strong>, Visible to registered users"
624
+ msgstr "<strong>Benutzer</strong>, für registrierte Benutzer sichtbar"
625
+
626
+ #: app/main/privacy/BPMediaPrivacy.php:125
627
+ msgid "<strong>Public</strong>, Visible to the world"
628
+ msgstr "<strong>Öffentlich</strong>, sichtbar für die ganze Welt"
629
+
630
+ #: app/helper/BPMediaSettings.php:172
631
+ msgid "Enable menu in WordPress admin bar"
632
+ msgstr "Menü in der WordPress-Adminbar aktivieren"
633
+
634
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
635
+ msgid "Update Database"
636
+ msgstr "Datenbank aktualisieren"
637
+
638
+ #: app/helper/BPMediaSettings.php:132
639
+ msgid "Download Button"
640
+ msgstr "Download Button"
641
+
642
+ #: app/helper/BPMediaSettings.php:135
643
+ msgid "Display download button under media"
644
+ msgstr "Download Button unter den Medien anzeigen"
645
+
646
+ #: app/main/BuddyPressMedia.php:306
647
+ msgid "Privacy"
648
+ msgstr "Privatsphäre"
649
+
650
+ #: app/helper/BPMediaSettings.php:140
651
+ msgid "Enable Privacy"
652
+ msgstr "Privatsphäre aktivieren"
653
+
654
+ #: app/helper/BPMediaSettings.php:143
655
+ msgid "Enable privacy"
656
+ msgstr "Privatsphäre aktivieren"
657
+
658
+ #: app/helper/BPMediaSettings.php:161
659
+ msgid "User Override"
660
+ msgstr "Benutzeränderungen"
661
+
662
+ #: app/helper/BPMediaSettings.php:155
663
+ msgid "Default Privacy"
664
+ msgstr "Standart Privatsphäre"
665
+
666
+ #: app/helper/BPMediaSettings.php:33
667
+ msgid "Enabled Media Types"
668
+ msgstr "Aktivierte Medien-Typen"
669
+
670
+ #: app/helper/BPMediaSettings.php:169
671
+ msgid "Admin bar menu"
672
+ msgstr "Admin Bar Menü"
673
+
674
+ #: app/helper/BPMediaSettings.php:318
675
+ msgid "Settings saved."
676
+ msgstr "Einstellungen gespeichert."
677
+
678
+ #: app/main/profile/BPMediaTemplate.php:29
679
+ msgid "Wall Posts"
680
+ msgstr "Pinnwandeinträge"
681
+
682
+ #: app/main/profile/BPMediaTemplate.php:83
683
+ msgid "+ Create New Album"
684
+ msgstr "Neues Album erstellen"
685
+
686
+ #: app/main/profile/BPMediaTemplate.php:90
687
+ msgid "Cancel"
688
+ msgstr "Abbrechen"
689
+
690
+ #: app/main/profile/BPMediaTemplate.php:213
691
+ msgid "Show More"
692
+ msgstr "Mehr anzeigen"
693
+
694
+ #: app/main/profile/BPMediaTemplate.php:267
695
+ msgid "Select"
696
+ msgstr "Auswählen"
697
+
698
+ #: app/main/profile/BPMediaTemplate.php:286
699
+ msgid "Add Media"
700
+ msgstr "Medien hinzufügen"
701
+
702
+ #: app/main/includes/BPMediaFilters.php:158
703
+ msgid "Delete %s"
704
+ msgstr "Lösche %s"
705
+
706
+ #: app/main/widgets/BPMediaWidget.php:197
707
+ msgid "Widget Type:"
708
+ msgstr "Widget-Typ:"
709
+
710
+ #: app/main/widgets/BPMediaWidget.php:210
711
+ msgid "Show All"
712
+ msgstr "Alles anzeigen"
713
+
714
+ #: app/main/widgets/BPMediaWidget.php:213
715
+ msgid "Show Photos"
716
+ msgstr "Bilder anzeigen"
717
+
718
+ #: app/main/widgets/BPMediaWidget.php:216
719
+ msgid "Show Music"
720
+ msgstr "Musik anzeigen"
721
+
722
+ #: app/main/widgets/BPMediaWidget.php:220
723
+ msgid "Show Videos"
724
+ msgstr "Videos anzeigen"
725
+
726
+ #: app/main/widgets/BPMediaWidget.php:20
727
+ msgid "The most recent/popular media uploaded on your site"
728
+ msgstr "Die jüngsten/beliebtesten hochgeladenen Medien"
729
+
730
+ #: app/main/widgets/BPMediaWidget.php:21
731
+ msgid "BuddyPress Media Widget"
732
+ msgstr "BuddyPress Media Widget"
733
+
734
+ #: app/main/widgets/BPMediaWidget.php:150
735
+ msgid "No "
736
+ msgstr "Nein"
737
+
738
+ #: app/main/BuddyPressMedia.php:158
739
+ msgid "BuddyPress is not installed."
740
+ msgstr "BuddyPress ist nicht installiert."
741
+
742
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
743
+ msgid "BuddyPress Media Addons"
744
+ msgstr "BuddyPress Media Erweiterungen"
745
+
746
+ #: app/admin/BPMediaAdmin.php:88
747
+ msgid "BuddyPress Media Component"
748
+ msgstr "BuddyPress Media Komponent"
749
+
750
+ #: app/helper/BPMediaSupport.php:121
751
+ msgid "Additional Information"
752
+ msgstr "Zusätzliche Information"
753
+
754
+ #: app/helper/BPMediaSettings.php:286
755
+ msgid "Recount Success"
756
+ msgstr "Erfolg überprüfen"
757
+
758
+ #: app/helper/BPMediaSettings.php:291
759
+ msgid "Recount Fail"
760
+ msgstr "Fehler überprüfen"
761
+
762
+ #: app/main/includes/BPMediaHostWordpress.php:170
763
+ msgid "MP4 file you have uploaded is corrupt."
764
+ msgstr "Die hochgeladene MP4-Datei ist defekt."
765
+
766
+ #: app/helper/BPMediaSupport.php:246
767
+ msgid "Thank you for your Feedback/Suggestion."
768
+ msgstr "Danke für die Rückmeldungen/Vorschläge."
769
+
770
+ #: app/helper/BPMediaSupport.php:248
771
+ msgid "Thank you for posting your support request."
772
+ msgstr "Danke für die Support-Anfrage."
773
+
774
+ #: app/helper/BPMediaSupport.php:249
775
+ msgid "We will get back to you shortly."
776
+ msgstr "Wir melden uns gleich wieder."
777
+
778
+ #: app/helper/BPMediaSupport.php:252
779
+ msgid "Your server failed to send an email."
780
+ msgstr "Ihr Server konnte die Email nicht senden."
781
+
782
+ #: app/helper/BPMediaSupport.php:253
783
+ msgid "Kindly contact your server support to fix this."
784
+ msgstr "Kontaktieren Sie Ihren Server-Support, um dies zu beheben."
785
+
786
+ #: app/helper/BPMediaSupport.php:254
787
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
788
+ msgstr "Sie können <a href=\"%s\">hier</a> alternativ eine Support-Anfrage stellen."
789
+
790
+ #: app/helper/BPMediaSupport.php:95
791
+ msgid "Name"
792
+ msgstr "Name"
793
+
794
+ #: app/helper/BPMediaSupport.php:98
795
+ msgid "Email"
796
+ msgstr "Email"
797
+
798
+ #: app/helper/BPMediaSupport.php:101
799
+ msgid "Website"
800
+ msgstr "Internetseite"
801
+
802
+ #: app/helper/BPMediaSupport.php:104
803
+ msgid "Phone"
804
+ msgstr "Telefon"
805
+
806
+ #: app/helper/BPMediaSupport.php:107
807
+ msgid "Subject"
808
+ msgstr "Betreff"
809
+
810
+ #: app/helper/BPMediaSupport.php:110
811
+ msgid "Details"
812
+ msgstr "Details"
813
+
814
+ #: app/helper/BPMediaSupport.php:161
815
+ msgid "BuddyPress Media Premium Support Request from"
816
+ msgstr "BuddyPress Media Premium Support-Anfrage von"
817
+
818
+ #: app/helper/BPMediaSupport.php:164
819
+ msgid "BuddyPress Media New Feature Request from"
820
+ msgstr "BuddyPress Media New Feature Anfrage von"
821
+
822
+ #: app/helper/BPMediaSupport.php:167
823
+ msgid "BuddyPress Media Bug Report from"
824
+ msgstr "BuddyPress Media Fehler-Report von"
825
+
826
+ #: app/helper/BPMediaSupport.php:170
827
+ msgid "BuddyPress Media Contact from"
828
+ msgstr "BuddyPress Media Kontakt von"
829
+
830
+ #: app/helper/BPMediaSettings.php:358
831
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
832
+ msgstr "Bitte füllen Sie das \"option\" Feld ( erforderlich ) im Argument aus. Überspringen Sie das Argument, um zum add_settings_field im folgenden array( 'option' => 'option_name' ) Format zu gelangen."
833
+
834
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
835
+ #: app/helper/BPMediaSettings.php:531
836
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
837
+ msgstr "Bitte füllen Sie das \"option\" Feld ( erforderlich ) im Argument aus. Überspringen Sie das Argument, um zum add_settings_field im folgenden array( 'option' => 'option_name' ) Format zu gelangen."
838
+
839
+ #: app/main/includes/BPMediaActions.php:874
840
+ msgid "%1$s created an album %2$s"
841
+ msgstr "%1$s hat das album %2$s erstellt"
842
+
843
+ #: app/main/BPMediaComponent.php:262
844
+ msgid "All Albums"
845
+ msgstr "Alle Alben"
846
+
847
+ #: app/main/BPMediaComponent.php:263
848
+ msgid "View Album"
849
+ msgstr "Album ansehen"
850
+
851
+ #: app/main/BPMediaComponent.php:264
852
+ msgid "Search Albums"
853
+ msgstr "Alben durchsuchen"
854
+
855
+ #: app/main/BPMediaComponent.php:265
856
+ msgid "No album found"
857
+ msgstr "Kein Album gefunden"
858
+
859
+ #: app/main/BPMediaComponent.php:266
860
+ msgid "No album found in Trash"
861
+ msgstr "Kein Album im Mülleimer gefunden"
862
+
863
+ #: app/main/BPMediaComponent.php:300
864
+ msgid "Add New Media"
865
+ msgstr "Neue Mediendatei hinzufügen"
866
+
867
+ #: app/main/BPMediaComponent.php:308
868
+ msgid "BuddyPress Media's Media Files"
869
+ msgstr "BuddyPress Media's Dateien"
870
+
871
+ #: app/main/includes/BPMediaFunction.php:229
872
+ msgid "%1$s added new media in album %2$s"
873
+ msgstr "%1$s hat neue Medien in Album %2$s hinzugefügt"
874
+
875
+ #: app/importers/BPMediaAlbumimporter.php:81
876
+ msgid "Users"
877
+ msgstr "Benutzer"
878
+
879
+ #: app/main/includes/BPMediaFilters.php:410
880
+ msgid "Total Photos"
881
+ msgstr "Fotos gesamt"
882
+
883
+ #: app/main/includes/BPMediaFilters.php:411
884
+ msgid "Total Videos"
885
+ msgstr "Videos gesamt"
886
+
887
+ #: app/main/includes/BPMediaFilters.php:412
888
+ msgid "Total Audio"
889
+ msgstr "Audio gesamt"
890
+
891
+ #: app/main/includes/BPMediaFilters.php:413
892
+ msgid "Total Albums"
893
+ msgstr "Alben gesamt"
894
+
895
+ #: app/helper/BPMediaSettings.php:118
896
+ msgid "Groups"
897
+ msgstr "Gruppen"
898
+
899
+ #: app/main/includes/BPMediaActions.php:348
900
+ msgid "Edit Media"
901
+ msgstr "Medien Bearbeiiten"
902
+
903
+ #: app/main/profile/BPMediaAlbumScreen.php:246
904
+ msgid "Edit"
905
+ msgstr "Bearbeiten"
906
+
907
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
908
+ #: app/main/profile/BPMediaTemplate.php:282
909
+ msgid "Create"
910
+ msgstr "Erstellen"
911
+
912
+ #: app/main/BPMediaComponent.php:260
913
+ #: app/main/profile/BPMediaAlbumScreen.php:246
914
+ msgid "Edit Album"
915
+ msgstr "Album bearbeiten"
916
+
917
+ #: app/main/BPMediaComponent.php:261
918
+ msgid "New Album"
919
+ msgstr "Neues Album"
920
+
921
+ #: app/helper/BPMediaSupport.php:126
922
+ msgid "Your WP Admin Login:"
923
+ msgstr "Ihr WP Admin Login:"
924
+
925
+ #: app/helper/BPMediaSupport.php:129
926
+ msgid "Your WP Admin password:"
927
+ msgstr "Ihr WP Admin Passwort:"
928
+
929
+ #: app/helper/BPMediaSupport.php:132
930
+ msgid "Your SSH / FTP host:"
931
+ msgstr "Ihr SSH / FTP Host:"
932
+
933
+ #: app/helper/BPMediaSupport.php:135
934
+ msgid "Your SSH / FTP login:"
935
+ msgstr "Ihr SSH / FTP Login:"
936
+
937
+ #: app/helper/BPMediaSupport.php:138
938
+ msgid "Your SSH / FTP password:"
939
+ msgstr "Ihr SSH / FTP Passwort:"
940
+
941
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
942
+ msgid "Media Title"
943
+ msgstr "Medien-Titel"
944
+
945
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
946
+ msgid "Media Description"
947
+ msgstr "Medien-Beschreibung"
948
+
949
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
950
+ msgid "Select Media File"
951
+ msgstr "Medien-Datei auswählen"
952
+
953
+ #: app/main/BPMediaComponent.php:60
954
+ msgid "Search Media..."
955
+ msgstr "Medien suchen..."
956
+
957
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
958
+ msgid "BuddyPress Media Support"
959
+ msgstr "BuddyPress Media Support"
960
+
961
+ #: app/helper/BPMediaSupport.php:81
962
+ msgid "Submit a Bug Report"
963
+ msgstr "Übermitteln Sie einen Fehler Bericht"
964
+
965
+ #: app/helper/BPMediaSupport.php:84
966
+ msgid "Submit a New Feature Request"
967
+ msgstr "Übermitteln Sie eine Anfrage für ein neues Feature"
968
+
969
+ #: app/helper/BPMediaSupport.php:87
970
+ msgid "Submit a Premium Support Request"
971
+ msgstr "Übermitteln Sie eine Premium Support Anfrage"
972
+
973
+ #: app/main/includes/BPMediaHostWordpress.php:615
974
+ msgid "Post"
975
+ msgstr "Veröffentlichen"
976
+
977
+ #: app/main/includes/BPMediaHostWordpress.php:615
978
+ msgid "or press esc to cancel."
979
+ msgstr "oder ESC zum Abbrechen drücken."
980
+
981
+ #: app/main/profile/BPMediaAlbumScreen.php:252
982
+ msgid "Delete"
983
+ msgstr "Löschen"
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:59
986
+ msgid "Sorry, the requested media does not exist."
987
+ msgstr "Sorry, die angeforderte Datei existiert nicht."
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:137
990
+ msgid "Error Uploading File"
991
+ msgstr "Fehler beim Hochladen der Datei"
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:177
994
+ #: app/main/includes/BPMediaHostWordpress.php:182
995
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
996
+ msgstr "Die hochgeladene MP4-Datei benutzt einen nicht unterstützten Video-Codec. Unterstützt wird H.264."
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:187
999
+ msgid "The MP4 file you have uploaded is not a video file."
1000
+ msgstr "Die hochgeladene MP4-Datei ist keine Video-Datei."
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:198
1003
+ msgid "MP3 file you have uploaded is currupt."
1004
+ msgstr "Die hochgeladene MP3-Datei ist defekt."
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:205
1007
+ #: app/main/includes/BPMediaHostWordpress.php:210
1008
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1009
+ msgstr "Die hochgeladene Datei verwendet ein nicht unterstütztes Audio-Format. Unterstützt wird MP3."
1010
+
1011
+ #: app/main/includes/BPMediaHostWordpress.php:215
1012
+ msgid "The MP3 file you have uploaded is not an audio file."
1013
+ msgstr "Die hochgeladene MP3-Datei ist keine Audio-Datei."
1014
+
1015
+ #: app/main/includes/BPMediaHostWordpress.php:227
1016
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1017
+ msgstr "Die hochgeladene Medien-Datei wird nicht unterstützt. Unterstützte Dateitypen sind .jpg, .png, .gif, .mp3, .mov und .mp4."
1018
+
1019
+ #: app/main/includes/BPMediaHostWordpress.php:236
1020
+ msgid "Error creating attachment for the media file, please try again"
1021
+ msgstr "Fehler beim Erstellen des Datei-Anhangs. Bitte versuchen Sie es erneut"
1022
+
1023
+ #: app/main/includes/BPMediaHostWordpress.php:346
1024
+ msgid "%s uploaded a media."
1025
+ msgstr "%s hat eine Mediendatei hochgeladen."
1026
+
1027
+ #: app/main/includes/BPMediaHostWordpress.php:367
1028
+ msgid "Uploaded by "
1029
+ msgstr "Hochgeladen von"
1030
+
1031
+ #: app/main/includes/BPMediaHostWordpress.php:590
1032
+ msgid "Comment <span>%s</span>"
1033
+ msgstr "Kommentar <span>%s</span>"
1034
+
1035
+ #: app/main/includes/BPMediaHostWordpress.php:594
1036
+ msgid "Favorite"
1037
+ msgstr "Favorit"
1038
+
1039
+ #: app/main/includes/BPMediaHostWordpress.php:596
1040
+ msgid "Remove Favorite"
1041
+ msgstr "Favorit entfernen"
1042
+
1043
+ #: app/main/widgets/BPMediaWidget.php:203
1044
+ msgid "Title:"
1045
+ msgstr "Titel:"
1046
+
1047
+ #: app/main/widgets/BPMediaWidget.php:206
1048
+ msgid "Number of posts to show:"
1049
+ msgstr "Anzahl der anzuzeigenden Beiträge:"
1050
+
1051
+ #: app/main/widgets/BPMediaWidget.php:199
1052
+ msgid "Recent Media"
1053
+ msgstr "Aktuelle Medien"
1054
+
1055
+ #: app/main/widgets/BPMediaWidget.php:72
1056
+ msgid "All"
1057
+ msgstr "Alle"
1058
+
1059
+ #: app/main/group/BPMediaGroupsExtension.php:41
1060
+ #: app/main/group/BPMediaGroupsExtension.php:88
1061
+ msgid "Who can create Albums in this group?"
1062
+ msgstr "Wer kann Alben in dieser Gruppe erstellen?"
1063
+
1064
+ #: app/main/group/BPMediaGroupsExtension.php:45
1065
+ #: app/main/group/BPMediaGroupsExtension.php:92
1066
+ msgid "All Group Members"
1067
+ msgstr "Alle Gruppemitglieder"
1068
+
1069
+ #: app/main/group/BPMediaGroupsExtension.php:49
1070
+ #: app/main/group/BPMediaGroupsExtension.php:96
1071
+ msgid "Group Admins and Mods only"
1072
+ msgstr "Nur Gruppen-Administratoren und -Moderatoren"
1073
+
1074
+ #: app/main/group/BPMediaGroupsExtension.php:53
1075
+ #: app/main/group/BPMediaGroupsExtension.php:100
1076
+ msgid "Group Admin only"
1077
+ msgstr "Nur Gruppen-Administratoren"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:104
1080
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1081
+ msgid "Save Changes"
1082
+ msgstr "Änderungen speichern"
1083
+
1084
+ #: app/main/group/BPMediaGroupsExtension.php:130
1085
+ msgid "There was an error saving, please try again"
1086
+ msgstr "Fehler beim Speichern. Bitte versuchen Sie es erneut"
1087
+
1088
+ #: app/main/group/BPMediaGroupsExtension.php:132
1089
+ msgid "Settings saved successfully"
1090
+ msgstr "Einstellungen gespeichert"
1091
+
1092
+ #: app/main/group/BPMediaGroupsExtension.php:153
1093
+ msgid ""
1094
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1095
+ "\t home screen."
1096
+ msgstr ""
1097
+ "Sie können hier einen kleinen Ausschnitt der Informationen Ihrer Gruppen-Erweiterung anzeigen lassen. Er wird in der Gruppe\n"
1098
+ "→\t Startseite angezeigt."
1099
+
1100
+ #: app/main/widgets/BPMediaWidget.php:200
1101
+ msgid "Popular Media"
1102
+ msgstr "Beliebte Medien"
1103
+
1104
+ #: app/main/profile/BPMediaScreen.php:396
1105
+ msgid "Media deleted successfully"
1106
+ msgstr "Medien erfolgreich gelöscht"
1107
+
1108
+ #: app/main/profile/BPMediaTemplate.php:98
1109
+ #: app/main/profile/BPMediaUploadScreen.php:33
1110
+ msgid "Upload Media"
1111
+ msgstr "Medien hochladen"
1112
+
1113
+ #: app/main/profile/BPMediaUploadScreen.php:71
1114
+ msgid "You are not allowed to be here"
1115
+ msgstr "Sie haben keine Berechtigung für diesen Bereich"
1116
+
1117
+ #: app/main/profile/BPMediaUploadScreen.php:98
1118
+ #: app/main/profile/BPMediaUploadScreen.php:122
1119
+ msgid "File uploaded is not supported"
1120
+ msgstr "Hochladen von Dateien wird nicht unterstützt"
1121
+
1122
+ #: app/main/profile/BPMediaUploadScreen.php:105
1123
+ msgid "Image uploads are disabled"
1124
+ msgstr "Hochladen von Bildern ist deaktiviert"
1125
+
1126
+ #: app/main/profile/BPMediaUploadScreen.php:111
1127
+ msgid "Video uploads are disabled"
1128
+ msgstr "Hochladen von Videodateien ist deaktiviert"
1129
+
1130
+ #: app/main/profile/BPMediaUploadScreen.php:117
1131
+ msgid "Audio uploads are disabled"
1132
+ msgstr "Hochladen von Audiodateien ist deaktiviert"
1133
+
1134
+ #: app/main/profile/BPMediaUploadScreen.php:135
1135
+ msgid "Upload Successful"
1136
+ msgstr "Hochladen erfolgreich"
1137
+
1138
+ #: app/main/profile/BPMediaUploadScreen.php:140
1139
+ msgid "You did not specified a file to upload"
1140
+ msgstr "Keine Datei zum Hochladen ausgewählt"
1141
+
1142
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1143
+ msgid "Sorry, no media items were found in this album."
1144
+ msgstr "In diesem Album wurden leider keine Medien gefunden."
1145
+
1146
+ #: app/main/profile/BPMediaAlbum.php:74
1147
+ msgid "Sorry, the requested album does not exist."
1148
+ msgstr "Das angeforderte Album existiert leider nicht."
1149
+
1150
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1151
+ msgid "Sorry, the requested media does not belong to the group"
1152
+ msgstr "Die angeforderte Mediendatei gehört nicht zur Gruppe"
1153
+
1154
+ #: app/main/BPMediaGroupLoader.php:252
1155
+ msgid "Media Settings"
1156
+ msgstr "Medien-Einstellungen"
1157
+
1158
+ #: app/main/group/BPMediaGroupsExtension.php:40
1159
+ #: app/main/group/BPMediaGroupsExtension.php:87
1160
+ msgid "Album Creation Control"
1161
+ msgstr "Alben-Erstellungs-Kontrolle"
1162
+
1163
+ #: app/main/profile/BPMediaScreen.php:114
1164
+ #: app/main/profile/BPMediaScreen.php:374
1165
+ msgid "The requested url does not exist"
1166
+ msgstr "Die angeforderte URL existiert nicht"
1167
+
1168
+ #: app/main/profile/BPMediaScreen.php:196
1169
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1170
+ msgid "Sorry, no %s were found."
1171
+ msgstr "Sorry, keine %s gefunden."
1172
+
1173
+ #: app/main/profile/BPMediaScreen.php:307
1174
+ msgid "Edit %s"
1175
+ msgstr "%s bearbeiten"
1176
+
1177
+ #: app/main/profile/BPMediaScreen.php:328
1178
+ msgid "%s Title"
1179
+ msgstr "%s Titel"
1180
+
1181
+ #: app/main/profile/BPMediaScreen.php:334
1182
+ msgid "%s Description"
1183
+ msgstr "%s Beschreibung"
1184
+
1185
+ #: app/main/profile/BPMediaScreen.php:342
1186
+ msgid "Update"
1187
+ msgstr "Aktualisieren"
1188
+
1189
+ #: app/main/profile/BPMediaScreen.php:343
1190
+ msgid "Back to Media File"
1191
+ msgstr "Zurück zur Mediendatei"
1192
+
1193
+ #: app/main/profile/BPMediaScreen.php:344
1194
+ msgid "Back to Media"
1195
+ msgstr "Zurück zu den Medien"
1196
+
1197
+ #: app/main/profile/BPMediaScreen.php:367
1198
+ msgid "You do not have access to this page."
1199
+ msgstr "Sie haben keinen Zugang zu dieser Seite."
1200
+
1201
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1202
+ #: app/main/BuddyPressMedia.php:327
1203
+ msgid "Albums"
1204
+ msgstr "Alben"
1205
+
1206
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1207
+ msgid "Album"
1208
+ msgstr "Album"
1209
+
1210
+ #: app/main/BuddyPressMedia.php:333
1211
+ msgid "Upload"
1212
+ msgstr "Hochladen"
1213
+
1214
+ #: app/main/profile/BPMediaTemplate.php:246
1215
+ msgid "Select Album"
1216
+ msgstr "Album auswählen"
1217
+
1218
+ #: app/main/profile/BPMediaTemplate.php:247
1219
+ #: app/main/profile/BPMediaTemplate.php:275
1220
+ msgid "x"
1221
+ msgstr "x"
1222
+
1223
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1224
+ #: app/main/profile/BPMediaTemplate.php:274
1225
+ msgid "Create Album"
1226
+ msgstr "Album erstellen"
1227
+
1228
+ #: app/main/profile/BPMediaTemplate.php:278
1229
+ msgid "Album Name"
1230
+ msgstr "Album-Name"
1231
+
1232
+ #: app/main/profile/BPMediaTemplate.php:96
1233
+ msgid "Drop files here"
1234
+ msgstr "Dateien hierher ziehen"
1235
+
1236
+ #: app/main/profile/BPMediaTemplate.php:97
1237
+ msgid " or "
1238
+ msgstr "oder"
1239
+
1240
+ #: app/admin/BPMediaAdmin.php:410
1241
+ msgid "Latest News"
1242
+ msgstr "Letzte Neuigkeiten"
1243
+
1244
+ #: app/helper/BPMediaSettings.php:34
1245
+ msgid "Photos"
1246
+ msgstr "Fotos"
1247
+
1248
+ #: app/main/BuddyPressMedia.php:312
1249
+ msgid "Photo"
1250
+ msgstr "Foto"
1251
+
1252
+ #: app/main/BuddyPressMedia.php:315
1253
+ msgid "Videos"
1254
+ msgstr "Videos"
1255
+
1256
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1257
+ msgid "Music"
1258
+ msgstr "Musik"
1259
+
1260
+ #: app/admin/BPMediaAdmin.php:389
1261
+ msgid "Donate"
1262
+ msgstr "Spenden"
1263
+
1264
+ #: app/admin/BPMediaAdmin.php:405
1265
+ msgid "RSS Feed"
1266
+ msgstr "RSS Feed"
1267
+
1268
+ #: app/admin/BPMediaAdmin.php:403
1269
+ msgid "Facebook"
1270
+ msgstr "Facebook"
1271
+
1272
+ #: app/admin/BPMediaAdmin.php:404
1273
+ msgid "Follow us on Twitter"
1274
+ msgstr "Folgen Sie uns auf Twitter"
1275
+
1276
+ #: app/admin/BPMediaAdmin.php:404
1277
+ msgid "Twitter"
1278
+ msgstr "Twitter"
1279
+
1280
+ #: app/admin/BPMediaAdmin.php:405
1281
+ msgid "Subscribe to our feeds"
1282
+ msgstr "Tragen Sie sich für unsere Feeds ein"
1283
+
1284
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1285
+ msgid "Addons"
1286
+ msgstr "Addons"
1287
+
1288
+ #: app/admin/BPMediaAdmin.php:97
1289
+ msgid "Support "
1290
+ msgstr "Support "
1291
+
1292
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1293
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1294
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1295
+ #: app/main/BuddyPressMedia.php:304
1296
+ msgid "Media"
1297
+ msgstr "Medien"
1298
+
1299
+ #: app/helper/BPMediaSettings.php:184
1300
+ msgid "Support"
1301
+ msgstr "Support"
1302
+
1303
+ #: app/admin/BPMediaAdmin.php:182
1304
+ msgid "Empowering The Web With WordPress"
1305
+ msgstr "Das Web mit WordPress erweitern"
1306
+
1307
+ #: app/admin/BPMediaAdmin.php:403
1308
+ msgid "Become a fan on Facebook"
1309
+ msgstr "Werde ein Fan auf Facebook"
1310
+
1311
+ #: app/helper/BPMediaSettings.php:182
1312
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1313
+ msgstr "BuddyPress Media Addons für die Audio-/Video-Umwandlung"
1314
+
1315
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1316
+ msgid "Recounting of media files done successfully"
1317
+ msgstr "Mediendateien erfolgreich gezählt"
1318
+
1319
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1320
+ msgid "Recounting Failed"
1321
+ msgstr "Zählen fehlgeschlagen"
1322
+
1323
+ #: app/helper/BPMediaSettings.php:405
1324
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1325
+ msgstr "Sie müssen entweder Radio-Buttons oder Checkboxes nutzen"
1326
+
1327
+ #: app/helper/BPMediaSettings.php:533
1328
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1329
+ msgstr "Bitte geben Sie ein paar Variablen für das Dropdown-Menü ein. Format: array( 'value' => 'option' )"
1330
+
1331
+ #: app/helper/BPMediaAddon.php:49
1332
+ msgid "BuddyPress-Media Kaltura Add-on"
1333
+ msgstr "BuddyPress-Media Kaltura Add-on"
1334
+
1335
+ #: app/helper/BPMediaAddon.php:52
1336
+ msgid "Add support for more video formats using Kaltura video solution."
1337
+ msgstr "Unterstützung für weitere Video-Formate durch Nutzung der Kaltura-Video-Lösung hinzufügen."
1338
+
1339
+ #: app/helper/BPMediaAddon.php:53
1340
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1341
+ msgstr "Funktioniert mit Kaltura.com, selbst-gehosteter Kaltura-CE und Kalture-on-Voraussetzung"
1342
+
1343
+ #: app/helper/BPMediaAddon.php:59
1344
+ msgid "BuddyPress-Media FFMPEG Add-on"
1345
+ msgstr "BuddyPress-Media FFMPEG Add-on"
1346
+
1347
+ #: app/helper/BPMediaAddon.php:62
1348
+ msgid "Add supports for more audio & video formats using open-source media-node."
1349
+ msgstr "Fügt Unterstützungen für weitere Audio- & Video-Formate durch Nutzung von Open-Source-Ansätzen hinzu."
1350
+
1351
+ #: app/helper/BPMediaAddon.php:63
1352
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1353
+ msgstr "Media-Element kommt mit automatischem Setup-Skript für Ubuntu/Debian."
1354
+
1355
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1356
+ msgid "Buy Now"
1357
+ msgstr "Jetzt kaufen"
1358
+
1359
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1360
+ msgid "Live Demo"
1361
+ msgstr "Live Demo"
1362
+
1363
+ #: app/main/group/BPMediaGroupAction.php:124
1364
+ #: app/main/includes/BPMediaHostWordpress.php:742
1365
+ msgid "%1$s added a %2$s"
1366
+ msgstr "%1$s hat ein %2$s hinzugefügt"
1367
+
1368
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1369
+ #: app/admin/BPMediaAdmin.php:213
1370
+ msgid "BuddyPress Media"
1371
+ msgstr "BuddyPress Media"
1372
+
1373
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1374
+ #: app/main/BuddyPressMedia.php:443
1375
+ msgid "Settings"
1376
+ msgstr "Einstellungen"
1377
+
1378
+ #: app/helper/BPMediaFeed.php:43
1379
+ msgid "No items"
1380
+ msgstr "Kein Einträge"
1381
+
1382
+ #: app/helper/BPMediaFeed.php:49
1383
+ msgid "Posted "
1384
+ msgstr "Veröffentlicht"
1385
+
1386
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1387
+ msgid "BuddyPress Media Settings"
1388
+ msgstr "BuddyPress Media Einstellungen"
1389
+
1390
+ #: app/helper/BPMediaSettings.php:39
1391
+ msgid "Video"
1392
+ msgstr "Video"
1393
+
1394
+ #: app/helper/BPMediaSettings.php:44
1395
+ msgid "Audio"
1396
+ msgstr "Audio"
1397
+
1398
+ #: app/main/includes/BPMediaActions.php:330
1399
+ msgid "Download"
1400
+ msgstr "Download"
1401
+
1402
+ #: app/admin/BPMediaAdmin.php:367
1403
+ msgid "Spread the Word"
1404
+ msgstr "Bekannt machen"
1405
+
1406
+ #: app/helper/BPMediaAdminWidget.php:29
1407
+ msgid "Argument missing. id is required."
1408
+ msgstr "Argument fehlt. id ist erforderlich."
languages/buddypress-media-es_ES.po ADDED
@@ -0,0 +1,1406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Spanish (Spain)
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:45+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr "Enviar"
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr "Por favor selecciona un álbum !!"
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr "Privado"
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr "No se han encontrado archivos multimedia"
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr "Eliminar álbum"
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr "Selecciona todo lo mostrado"
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr "Deseleciona todo lo mostrado"
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr "Elimina los archivos seleccionados"
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr "Mover"
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr "Mover los seleccionados"
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr "Mover todo"
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr "Algo ha ido mal. Por favor, inténtalo de nuevo."
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr "Estás seguro de fusionar este álbum?"
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr "Quieres eliminar este álbum después de fusionarlo?"
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr "Estás seguro de eliminar los archivos seleccionados?"
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr "Estás seguro?"
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr "Por favor selecciona archivos multimedia"
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr "Por favor selecciona una acción"
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr "No has rellenado el campo del nombre del álbum"
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr "Lo sentimos, no puedes crear álbums en este grupo"
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr "Tienes la opción de video activada en Buddypress Media pero la configuración de los archivos permitidos en tu red no permite cargar mp4. Haz click <a href=\"%s\">aqui</a> para cambiar los ajustes manualmente."
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr "Por favor, no actualices esta página."
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr "Algo ha ido mal. Por favor <a href onclick=\"location.reload();\">actualiza</a> la página."
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr "Actualmente tu red permite cargar los siguientes tipos de archivo. Puedes cambiar estos ajustes <a href=\"%s\">aqui</a>.<br /><code>%s</code></span>"
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr "Ajustes de imagen"
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr "Tamaño de la miniatura"
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr "Se utiliza en álbums, la fuente de actividad en el widget del sidebar."
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr "Tamaño medio"
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr "Se utiliza en la fuente de actividad para cargar un archivo"
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr "Tamaño grande"
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr "Ajustes del reproductor de vídeo "
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr "Limpiar ahora"
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr "Limpiar más tarde"
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr "Por qué no pruebas a aplicar algunos efectos como los de instagram a tus imágenes?"
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr "Parece que no utilizas BP Album. Hay algún otro plugin de Buddypres desde el que quieras importar?"
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr "Atención!"
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr "El proceso de importación es irreversible. Realiza una <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">copia de seguridad de tu base de datos y archivos</a> antes de continuar por si algo falla en el proceso. Si no tienes conocimientos sobre bases de datos y los archivos, puedes <a target=\"_blank\" href=\"%s\">contratarnos a nosotros</a>, u otro profesional."
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr "Si has establecido \"WP_DEBUG\" en tu archivo wp-config.php, asegúrate de establecerlo como \"false\", así no causará conflicto con el proceso de importación."
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr "He hecho una copia de seguridad de la base de datos y de los archivos del sitio."
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr "Iniciar importación"
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr "Comentarios"
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr "Comentarios: 0/0 (No hay comentarios para importar)"
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr "Favoritos de los usuarios"
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr "BP-Album está activo en tu sitio y puede causar problemas en la importación."
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr "Click aqui para desactivar BP-Album y continuar la importación"
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "Agregar Multimedia"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "Ver"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr "%1$s posted an update in the group %2$s"
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr "Para utilizar Media BuddyPress, BuddyPress debe instalarse primero."
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr "<a href=\"%s\">Instalar buddypress ahora</a>"
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr "O"
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr "Depurar Informacion"
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr "\"Número de medios\" valor de recuento debe ser numérico y mayor que 0."
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr "Cuenta predeterminada"
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr "Ninguno"
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr "Depurar informacion"
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr "Reparación de cuentas multimedia"
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr "Permitir a los usuarios anular valores predeterminados de administrador (<em>Recomendado</em>)"
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "Otras Opciones"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr "Contar"
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>Amigos</strong> - Visible para los amigos del usuario"
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>Usuarios</strong> - Visible para usuarios registrados"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>público</strong> - Visible a todos"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>privado</strong> - Sólo visible para el usuario"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "Subir Actividad"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr "Subir Actividad"
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr "Activar carga de actividad"
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr "Grupos de Integración"
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr "Permitir multimedia en los grupos"
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "Configuración de pantalla"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "numero de multimedia"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "Activar Fotos"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Establecer como portada del álbum "
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Quitar como portada del albúm"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Opciones de privacidad"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "Actualizar la base de datos de Medios de Buddypress"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Comenzar"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>Privado</strong>, Visible solo para mí mismo"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>Amigos</strong>, Visible para mis amigos"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr "Establecer niveles de privacidad por defecto para sus medios"
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "Este %s es privado"
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "Este %1s esta disponible solo para %2s&rsquo;s amigos"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "Este %s es visiblesolo para los usuarios registrados"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "El nivel de privacidad por defecto para sus medios ha sido actualizado"
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+ "Por favor configure este widget\n"
528
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a href=\"%s\" target=\"_blank\"\n"
529
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\ttitle=\"Configurar el widget de BP Media\">\n"
530
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\there</a>."
531
+
532
+ #: app/main/profile/BPMediaAlbumScreen.php:300
533
+ msgid "to"
534
+ msgstr "Para"
535
+
536
+ #: app/main/profile/BPMediaScreen.php:125
537
+ msgid "All %s"
538
+ msgstr "Todos los %s"
539
+
540
+ #: app/main/BuddyPressMedia.php:547
541
+ msgid ""
542
+ "The BuddyPress version installed is an\n"
543
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
544
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
545
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
546
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
547
+ msgstr ""
548
+ "The BuddyPress version installed is an\n"
549
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tolder version and is not supported,\n"
550
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tplease update BuddyPress to use\n"
551
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tBuddyPress Media Plugin.\n"
552
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
553
+
554
+ #: app/main/BuddyPressMedia.php:560
555
+ msgid ""
556
+ "You have not installed BuddyPress.\n"
557
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
558
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
559
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
560
+ msgstr ""
561
+ "You have not installed BuddyPress.\n"
562
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tPlease install latest version of BuddyPress\n"
563
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tto use BuddyPress Media plugin.\n"
564
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
565
+
566
+ #: app/admin/BPMediaAdmin.php:363
567
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
568
+ msgstr "Yo uso @buddypressmedia http://goo.gl/8Upmv en %s "
569
+
570
+ #: app/admin/BPMediaAdmin.php:364
571
+ msgid "Add link to footer"
572
+ msgstr "Agregar un enlace en el pie de página"
573
+
574
+ #: app/admin/BPMediaAdmin.php:365
575
+ msgid "Tweet"
576
+ msgstr "Tweetear"
577
+
578
+ #: app/admin/BPMediaAdmin.php:366
579
+ msgid "Rate on WordPress.org"
580
+ msgstr "Calificar en Wordpress.org"
581
+
582
+ #: app/admin/BPMediaAdmin.php:377
583
+ msgid "USD"
584
+ msgstr "USD"
585
+
586
+ #: app/admin/BPMediaAdmin.php:407
587
+ msgid "Subscribe"
588
+ msgstr "Suscríbete"
589
+
590
+ #: app/admin/BPMediaAdmin.php:99
591
+ msgid "BuddyPress Media Convert Videos"
592
+ msgstr "BuddyPress Multimedia Convertir Videos"
593
+
594
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
595
+ msgid "Convert Videos"
596
+ msgstr "Convertir Videos"
597
+
598
+ #: app/admin/BPMediaAdmin.php:182
599
+ msgid "By"
600
+ msgstr "Por"
601
+
602
+ #: app/admin/BPMediaAdmin.php:262
603
+ msgid "BuddyPress Media Covert Videos"
604
+ msgstr "BuddyPress Media Covert Videos"
605
+
606
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
607
+ msgid "Atleast one Media Type Must be selected"
608
+ msgstr "al menos un tipo de multimedia debe seleccionar"
609
+
610
+ #: app/helper/BPMediaSettings.php:305
611
+ msgid "Media Type"
612
+ msgstr "Multimedia tipo"
613
+
614
+ #: app/helper/BPMediaSettings.php:603
615
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
616
+ msgstr "BuddyPress 2.6 Multimedia requiere una actualización de base de datos. "
617
+
618
+ #: app/admin/BPMediaAdmin.php:91
619
+ msgid "BuddyPress Media Database Update"
620
+ msgstr "BuddyPress Multimedia base de datos actualizada"
621
+
622
+ #: app/main/privacy/BPMediaPrivacy.php:121
623
+ msgid "<strong>Users</strong>, Visible to registered users"
624
+ msgstr "<strong>Usuarios</strong>, Visible para usuarios registrados"
625
+
626
+ #: app/main/privacy/BPMediaPrivacy.php:125
627
+ msgid "<strong>Public</strong>, Visible to the world"
628
+ msgstr "<strong>Publico</strong>, Visible a todos"
629
+
630
+ #: app/helper/BPMediaSettings.php:172
631
+ msgid "Enable menu in WordPress admin bar"
632
+ msgstr "Para abrir el menú de administración en WordPress bar"
633
+
634
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
635
+ msgid "Update Database"
636
+ msgstr "Actualización de la base de datos"
637
+
638
+ #: app/helper/BPMediaSettings.php:132
639
+ msgid "Download Button"
640
+ msgstr "Botón Descargar"
641
+
642
+ #: app/helper/BPMediaSettings.php:135
643
+ msgid "Display download button under media"
644
+ msgstr "Mostrar botón de descarga en multimedia"
645
+
646
+ #: app/main/BuddyPressMedia.php:306
647
+ msgid "Privacy"
648
+ msgstr "Privacidad"
649
+
650
+ #: app/helper/BPMediaSettings.php:140
651
+ msgid "Enable Privacy"
652
+ msgstr "Activar privacidad"
653
+
654
+ #: app/helper/BPMediaSettings.php:143
655
+ msgid "Enable privacy"
656
+ msgstr "Activar privacidad"
657
+
658
+ #: app/helper/BPMediaSettings.php:161
659
+ msgid "User Override"
660
+ msgstr "Ignorar usuario"
661
+
662
+ #: app/helper/BPMediaSettings.php:155
663
+ msgid "Default Privacy"
664
+ msgstr "Privacidad predefinida"
665
+
666
+ #: app/helper/BPMediaSettings.php:33
667
+ msgid "Enabled Media Types"
668
+ msgstr "Activar tipos de multimedia"
669
+
670
+ #: app/helper/BPMediaSettings.php:169
671
+ msgid "Admin bar menu"
672
+ msgstr "Menú de la barra de administración"
673
+
674
+ #: app/helper/BPMediaSettings.php:318
675
+ msgid "Settings saved."
676
+ msgstr "Configuración guardada."
677
+
678
+ #: app/main/profile/BPMediaTemplate.php:29
679
+ msgid "Wall Posts"
680
+ msgstr "Mensajes de Muro"
681
+
682
+ #: app/main/profile/BPMediaTemplate.php:83
683
+ msgid "+ Create New Album"
684
+ msgstr "+ Crear Nuevo Album"
685
+
686
+ #: app/main/profile/BPMediaTemplate.php:90
687
+ msgid "Cancel"
688
+ msgstr "Cancelar"
689
+
690
+ #: app/main/profile/BPMediaTemplate.php:213
691
+ msgid "Show More"
692
+ msgstr "Mostrar Más"
693
+
694
+ #: app/main/profile/BPMediaTemplate.php:267
695
+ msgid "Select"
696
+ msgstr "Seleccionar"
697
+
698
+ #: app/main/profile/BPMediaTemplate.php:286
699
+ msgid "Add Media"
700
+ msgstr "Añadir una Foto"
701
+
702
+ #: app/main/includes/BPMediaFilters.php:158
703
+ msgid "Delete %s"
704
+ msgstr "Borrar %s"
705
+
706
+ #: app/main/widgets/BPMediaWidget.php:197
707
+ msgid "Widget Type:"
708
+ msgstr "Tipo de Widget:"
709
+
710
+ #: app/main/widgets/BPMediaWidget.php:210
711
+ msgid "Show All"
712
+ msgstr "Mostrar Todo"
713
+
714
+ #: app/main/widgets/BPMediaWidget.php:213
715
+ msgid "Show Photos"
716
+ msgstr "Mostrar Fotos"
717
+
718
+ #: app/main/widgets/BPMediaWidget.php:216
719
+ msgid "Show Music"
720
+ msgstr "Mostrar Música"
721
+
722
+ #: app/main/widgets/BPMediaWidget.php:220
723
+ msgid "Show Videos"
724
+ msgstr "Mostrar Vídeos"
725
+
726
+ #: app/main/widgets/BPMediaWidget.php:20
727
+ msgid "The most recent/popular media uploaded on your site"
728
+ msgstr "El más Reciente / Popular multimedia subido en su sitio"
729
+
730
+ #: app/main/widgets/BPMediaWidget.php:21
731
+ msgid "BuddyPress Media Widget"
732
+ msgstr "BuddyPress Multimedia Widget"
733
+
734
+ #: app/main/widgets/BPMediaWidget.php:150
735
+ msgid "No "
736
+ msgstr "no"
737
+
738
+ #: app/main/BuddyPressMedia.php:158
739
+ msgid "BuddyPress is not installed."
740
+ msgstr "BuddyPress no está instalado."
741
+
742
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
743
+ msgid "BuddyPress Media Addons"
744
+ msgstr " BuddyPress Media Complementos"
745
+
746
+ #: app/admin/BPMediaAdmin.php:88
747
+ msgid "BuddyPress Media Component"
748
+ msgstr "BuddyPress Media Componentes"
749
+
750
+ #: app/helper/BPMediaSupport.php:121
751
+ msgid "Additional Information"
752
+ msgstr "Información Adicional"
753
+
754
+ #: app/helper/BPMediaSettings.php:286
755
+ msgid "Recount Success"
756
+ msgstr "Contar de nuevo éxito"
757
+
758
+ #: app/helper/BPMediaSettings.php:291
759
+ msgid "Recount Fail"
760
+ msgstr "Contar de nuevo fallar"
761
+
762
+ #: app/main/includes/BPMediaHostWordpress.php:170
763
+ msgid "MP4 file you have uploaded is corrupt."
764
+ msgstr "MP4 archivo que has subido está corrupto."
765
+
766
+ #: app/helper/BPMediaSupport.php:246
767
+ msgid "Thank you for your Feedback/Suggestion."
768
+ msgstr "Gracias por tu comentario / sugerencia."
769
+
770
+ #: app/helper/BPMediaSupport.php:248
771
+ msgid "Thank you for posting your support request."
772
+ msgstr "Gracias por publicar su solicitud de soporte."
773
+
774
+ #: app/helper/BPMediaSupport.php:249
775
+ msgid "We will get back to you shortly."
776
+ msgstr "Nos pondremos en contacto con usted en breve."
777
+
778
+ #: app/helper/BPMediaSupport.php:252
779
+ msgid "Your server failed to send an email."
780
+ msgstr "El servidor no pudo enviar un correo electrónico."
781
+
782
+ #: app/helper/BPMediaSupport.php:253
783
+ msgid "Kindly contact your server support to fix this."
784
+ msgstr "Por favor póngase en contacto con soporte de servidor para solucionar este problema."
785
+
786
+ #: app/helper/BPMediaSupport.php:254
787
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
788
+ msgstr "Como alternativa, puede crear una solicitud de soporte <a href=\"%s\">aquí</a>"
789
+
790
+ #: app/helper/BPMediaSupport.php:95
791
+ msgid "Name"
792
+ msgstr "Nombre"
793
+
794
+ #: app/helper/BPMediaSupport.php:98
795
+ msgid "Email"
796
+ msgstr "Email"
797
+
798
+ #: app/helper/BPMediaSupport.php:101
799
+ msgid "Website"
800
+ msgstr "Sitio web"
801
+
802
+ #: app/helper/BPMediaSupport.php:104
803
+ msgid "Phone"
804
+ msgstr "Teléfono"
805
+
806
+ #: app/helper/BPMediaSupport.php:107
807
+ msgid "Subject"
808
+ msgstr "Sujeto"
809
+
810
+ #: app/helper/BPMediaSupport.php:110
811
+ msgid "Details"
812
+ msgstr "Detalles"
813
+
814
+ #: app/helper/BPMediaSupport.php:161
815
+ msgid "BuddyPress Media Premium Support Request from"
816
+ msgstr "BuddyPress Media premium Solicitud de soporte de"
817
+
818
+ #: app/helper/BPMediaSupport.php:164
819
+ msgid "BuddyPress Media New Feature Request from"
820
+ msgstr "BuddyPress Media Solicitação de recurso novo"
821
+
822
+ #: app/helper/BPMediaSupport.php:167
823
+ msgid "BuddyPress Media Bug Report from"
824
+ msgstr "BuddyPress Media Relatar erro"
825
+
826
+ #: app/helper/BPMediaSupport.php:170
827
+ msgid "BuddyPress Media Contact from"
828
+ msgstr "BuddyPress Media Contato para"
829
+
830
+ #: app/helper/BPMediaSettings.php:358
831
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
832
+ msgstr "Por favor, forneça \"opção\" valor ( required ) no argumento. Passe argumento para add_settings_field no seguinte formato array( 'option' => 'option_name' ) "
833
+
834
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
835
+ #: app/helper/BPMediaSettings.php:531
836
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
837
+ msgstr "Por favor, forneça \"opção\" valor ( required ) no argumento. Passe argumento para add_settings_field no seguinte formato array( 'option' => 'option_name' )"
838
+
839
+ #: app/main/includes/BPMediaActions.php:874
840
+ msgid "%1$s created an album %2$s"
841
+ msgstr "%1$s criado um álbum %2$s"
842
+
843
+ #: app/main/BPMediaComponent.php:262
844
+ msgid "All Albums"
845
+ msgstr "Todos os Albuns"
846
+
847
+ #: app/main/BPMediaComponent.php:263
848
+ msgid "View Album"
849
+ msgstr "Ver Album"
850
+
851
+ #: app/main/BPMediaComponent.php:264
852
+ msgid "Search Albums"
853
+ msgstr "Procurar Albuns"
854
+
855
+ #: app/main/BPMediaComponent.php:265
856
+ msgid "No album found"
857
+ msgstr "Nenhum álbum encontrado"
858
+
859
+ #: app/main/BPMediaComponent.php:266
860
+ msgid "No album found in Trash"
861
+ msgstr "Nenhum álbum encontrado no lixo"
862
+
863
+ #: app/main/BPMediaComponent.php:300
864
+ msgid "Add New Media"
865
+ msgstr "Adicionar Novas Mídias"
866
+
867
+ #: app/main/BPMediaComponent.php:308
868
+ msgid "BuddyPress Media's Media Files"
869
+ msgstr "BuddyPress Mídia arquivos de mídia"
870
+
871
+ #: app/main/includes/BPMediaFunction.php:229
872
+ msgid "%1$s added new media in album %2$s"
873
+ msgstr "%1$s adicionadas novas mídias no álbum %2$s"
874
+
875
+ #: app/importers/BPMediaAlbumimporter.php:81
876
+ msgid "Users"
877
+ msgstr "Usuarios"
878
+
879
+ #: app/main/includes/BPMediaFilters.php:410
880
+ msgid "Total Photos"
881
+ msgstr "Total de fotos"
882
+
883
+ #: app/main/includes/BPMediaFilters.php:411
884
+ msgid "Total Videos"
885
+ msgstr "Total de Vídeos"
886
+
887
+ #: app/main/includes/BPMediaFilters.php:412
888
+ msgid "Total Audio"
889
+ msgstr "Total de Audio"
890
+
891
+ #: app/main/includes/BPMediaFilters.php:413
892
+ msgid "Total Albums"
893
+ msgstr "Total de Albuns"
894
+
895
+ #: app/helper/BPMediaSettings.php:118
896
+ msgid "Groups"
897
+ msgstr "Grupos"
898
+
899
+ #: app/main/includes/BPMediaActions.php:348
900
+ msgid "Edit Media"
901
+ msgstr "Editar Imagen"
902
+
903
+ #: app/main/profile/BPMediaAlbumScreen.php:246
904
+ msgid "Edit"
905
+ msgstr "Editar"
906
+
907
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
908
+ #: app/main/profile/BPMediaTemplate.php:282
909
+ msgid "Create"
910
+ msgstr "Criar"
911
+
912
+ #: app/main/BPMediaComponent.php:260
913
+ #: app/main/profile/BPMediaAlbumScreen.php:246
914
+ msgid "Edit Album"
915
+ msgstr "Editar Album"
916
+
917
+ #: app/main/BPMediaComponent.php:261
918
+ msgid "New Album"
919
+ msgstr "Nuevo Album"
920
+
921
+ #: app/helper/BPMediaSupport.php:126
922
+ msgid "Your WP Admin Login:"
923
+ msgstr "Seu Login WP Admin:"
924
+
925
+ #: app/helper/BPMediaSupport.php:129
926
+ msgid "Your WP Admin password:"
927
+ msgstr "Sua senha WP Admin:"
928
+
929
+ #: app/helper/BPMediaSupport.php:132
930
+ msgid "Your SSH / FTP host:"
931
+ msgstr "Seu host SSH / FTP:"
932
+
933
+ #: app/helper/BPMediaSupport.php:135
934
+ msgid "Your SSH / FTP login:"
935
+ msgstr "Seu login SSH / FTP:"
936
+
937
+ #: app/helper/BPMediaSupport.php:138
938
+ msgid "Your SSH / FTP password:"
939
+ msgstr "Sua senha SSH / FTP:"
940
+
941
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
942
+ msgid "Media Title"
943
+ msgstr "Titulo de la Imagen"
944
+
945
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
946
+ msgid "Media Description"
947
+ msgstr "Descripcion"
948
+
949
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
950
+ msgid "Select Media File"
951
+ msgstr "Selecione arquivo de mídia"
952
+
953
+ #: app/main/BPMediaComponent.php:60
954
+ msgid "Search Media..."
955
+ msgstr "Procurar mídia..."
956
+
957
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
958
+ msgid "BuddyPress Media Support"
959
+ msgstr "Buddypress Media suporte"
960
+
961
+ #: app/helper/BPMediaSupport.php:81
962
+ msgid "Submit a Bug Report"
963
+ msgstr "Enviar um relatório de erro"
964
+
965
+ #: app/helper/BPMediaSupport.php:84
966
+ msgid "Submit a New Feature Request"
967
+ msgstr "Enviar um Pedido de Novos Recursos"
968
+
969
+ #: app/helper/BPMediaSupport.php:87
970
+ msgid "Submit a Premium Support Request"
971
+ msgstr "Enviar um Pedido de Suporte Premium"
972
+
973
+ #: app/main/includes/BPMediaHostWordpress.php:615
974
+ msgid "Post"
975
+ msgstr "Postar"
976
+
977
+ #: app/main/includes/BPMediaHostWordpress.php:615
978
+ msgid "or press esc to cancel."
979
+ msgstr "ou pressione esc para cancelar."
980
+
981
+ #: app/main/profile/BPMediaAlbumScreen.php:252
982
+ msgid "Delete"
983
+ msgstr "Deletar"
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:59
986
+ msgid "Sorry, the requested media does not exist."
987
+ msgstr "Desculpe, mídia solicitada não existe."
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:137
990
+ msgid "Error Uploading File"
991
+ msgstr "Erro no upload do arquivo"
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:177
994
+ #: app/main/includes/BPMediaHostWordpress.php:182
995
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
996
+ msgstr "O arquivo MP4 que você enviou está usando um codec de vídeo não suportado. Codec de vídeo H.264 é suportado."
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:187
999
+ msgid "The MP4 file you have uploaded is not a video file."
1000
+ msgstr "O arquivo MP4 que você enviou não é um arquivo de vídeo."
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:198
1003
+ msgid "MP3 file you have uploaded is currupt."
1004
+ msgstr "Arquivo MP3 que você enviou esta corrompido."
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:205
1007
+ #: app/main/includes/BPMediaHostWordpress.php:210
1008
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1009
+ msgstr "O arquivo MP3 que você enviou está usando um formato de áudio não suportado. Formato audio suportado é MP3."
1010
+
1011
+ #: app/main/includes/BPMediaHostWordpress.php:215
1012
+ msgid "The MP3 file you have uploaded is not an audio file."
1013
+ msgstr "O arquivo MP3 que você enviou não é um arquivo de áudio."
1014
+
1015
+ #: app/main/includes/BPMediaHostWordpress.php:227
1016
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1017
+ msgstr "Os arquivos de Mídia que você tentou enviar não é suportado. Arquivos de mídia compatíveis são .jpg, .png, .gif, .mp3, .mov and .mp4."
1018
+
1019
+ #: app/main/includes/BPMediaHostWordpress.php:236
1020
+ msgid "Error creating attachment for the media file, please try again"
1021
+ msgstr "Erro na criação de acessórios para o arquivo de mídia, por favor, tente novamente"
1022
+
1023
+ #: app/main/includes/BPMediaHostWordpress.php:346
1024
+ msgid "%s uploaded a media."
1025
+ msgstr "%s enviado uma mídia."
1026
+
1027
+ #: app/main/includes/BPMediaHostWordpress.php:367
1028
+ msgid "Uploaded by "
1029
+ msgstr "Subido por"
1030
+
1031
+ #: app/main/includes/BPMediaHostWordpress.php:590
1032
+ msgid "Comment <span>%s</span>"
1033
+ msgstr "Comentario <span>%s</span>"
1034
+
1035
+ #: app/main/includes/BPMediaHostWordpress.php:594
1036
+ msgid "Favorite"
1037
+ msgstr "Favorito"
1038
+
1039
+ #: app/main/includes/BPMediaHostWordpress.php:596
1040
+ msgid "Remove Favorite"
1041
+ msgstr "Remover favorito"
1042
+
1043
+ #: app/main/widgets/BPMediaWidget.php:203
1044
+ msgid "Title:"
1045
+ msgstr "Titulo:"
1046
+
1047
+ #: app/main/widgets/BPMediaWidget.php:206
1048
+ msgid "Number of posts to show:"
1049
+ msgstr "Número de posts a exibir"
1050
+
1051
+ #: app/main/widgets/BPMediaWidget.php:199
1052
+ msgid "Recent Media"
1053
+ msgstr "Últimas mídias"
1054
+
1055
+ #: app/main/widgets/BPMediaWidget.php:72
1056
+ msgid "All"
1057
+ msgstr "Todo"
1058
+
1059
+ #: app/main/group/BPMediaGroupsExtension.php:41
1060
+ #: app/main/group/BPMediaGroupsExtension.php:88
1061
+ msgid "Who can create Albums in this group?"
1062
+ msgstr "Quem pode criar álbuns nesse grupo?"
1063
+
1064
+ #: app/main/group/BPMediaGroupsExtension.php:45
1065
+ #: app/main/group/BPMediaGroupsExtension.php:92
1066
+ msgid "All Group Members"
1067
+ msgstr "Todos os membros do grupo"
1068
+
1069
+ #: app/main/group/BPMediaGroupsExtension.php:49
1070
+ #: app/main/group/BPMediaGroupsExtension.php:96
1071
+ msgid "Group Admins and Mods only"
1072
+ msgstr "Apenas administradores e editores do grupo"
1073
+
1074
+ #: app/main/group/BPMediaGroupsExtension.php:53
1075
+ #: app/main/group/BPMediaGroupsExtension.php:100
1076
+ msgid "Group Admin only"
1077
+ msgstr "Apenas administradores do grupo"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:104
1080
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1081
+ msgid "Save Changes"
1082
+ msgstr "Salvar mudanças"
1083
+
1084
+ #: app/main/group/BPMediaGroupsExtension.php:130
1085
+ msgid "There was an error saving, please try again"
1086
+ msgstr "Houve um erro na gravação. Por favor, tente novamente"
1087
+
1088
+ #: app/main/group/BPMediaGroupsExtension.php:132
1089
+ msgid "Settings saved successfully"
1090
+ msgstr "Configurações salvas com sucesso"
1091
+
1092
+ #: app/main/group/BPMediaGroupsExtension.php:153
1093
+ msgid ""
1094
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1095
+ "\t home screen."
1096
+ msgstr "Você pode mostrar uma pequena descrição de sua extensão do grupo aqui. Ela será mostrada na página principal do grupo"
1097
+
1098
+ #: app/main/widgets/BPMediaWidget.php:200
1099
+ msgid "Popular Media"
1100
+ msgstr "Mídia popular"
1101
+
1102
+ #: app/main/profile/BPMediaScreen.php:396
1103
+ msgid "Media deleted successfully"
1104
+ msgstr "Mídia excluída com sucesso"
1105
+
1106
+ #: app/main/profile/BPMediaTemplate.php:98
1107
+ #: app/main/profile/BPMediaUploadScreen.php:33
1108
+ msgid "Upload Media"
1109
+ msgstr "Subir Foto"
1110
+
1111
+ #: app/main/profile/BPMediaUploadScreen.php:71
1112
+ msgid "You are not allowed to be here"
1113
+ msgstr "Você não está autorizado a estar aqui"
1114
+
1115
+ #: app/main/profile/BPMediaUploadScreen.php:98
1116
+ #: app/main/profile/BPMediaUploadScreen.php:122
1117
+ msgid "File uploaded is not supported"
1118
+ msgstr "O envio de arquivos não é suportado"
1119
+
1120
+ #: app/main/profile/BPMediaUploadScreen.php:105
1121
+ msgid "Image uploads are disabled"
1122
+ msgstr "O envio de imagens está desabilitado"
1123
+
1124
+ #: app/main/profile/BPMediaUploadScreen.php:111
1125
+ msgid "Video uploads are disabled"
1126
+ msgstr "O envio de vídeos está desabilitado"
1127
+
1128
+ #: app/main/profile/BPMediaUploadScreen.php:117
1129
+ msgid "Audio uploads are disabled"
1130
+ msgstr "O envio de áudio está desabilitado"
1131
+
1132
+ #: app/main/profile/BPMediaUploadScreen.php:135
1133
+ msgid "Upload Successful"
1134
+ msgstr "Upload Completada"
1135
+
1136
+ #: app/main/profile/BPMediaUploadScreen.php:140
1137
+ msgid "You did not specified a file to upload"
1138
+ msgstr "Você não especificou um arquivo para fazer o envio"
1139
+
1140
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1141
+ msgid "Sorry, no media items were found in this album."
1142
+ msgstr "Desculpe, não foram encontrados arquivos de mídia neste álbum"
1143
+
1144
+ #: app/main/profile/BPMediaAlbum.php:74
1145
+ msgid "Sorry, the requested album does not exist."
1146
+ msgstr "Desculpe, o álbum não existe"
1147
+
1148
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1149
+ msgid "Sorry, the requested media does not belong to the group"
1150
+ msgstr "Desculpe, a mídia em questão não pertence ao grupo"
1151
+
1152
+ #: app/main/BPMediaGroupLoader.php:252
1153
+ msgid "Media Settings"
1154
+ msgstr "Configurações de mídia"
1155
+
1156
+ #: app/main/group/BPMediaGroupsExtension.php:40
1157
+ #: app/main/group/BPMediaGroupsExtension.php:87
1158
+ msgid "Album Creation Control"
1159
+ msgstr "Controle para criação de áudio"
1160
+
1161
+ #: app/main/profile/BPMediaScreen.php:114
1162
+ #: app/main/profile/BPMediaScreen.php:374
1163
+ msgid "The requested url does not exist"
1164
+ msgstr "A URL requisitada não existe"
1165
+
1166
+ #: app/main/profile/BPMediaScreen.php:196
1167
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1168
+ msgid "Sorry, no %s were found."
1169
+ msgstr "Desculpe, não foi encontrada nenhuma página com %s"
1170
+
1171
+ #: app/main/profile/BPMediaScreen.php:307
1172
+ msgid "Edit %s"
1173
+ msgstr "Editar %s"
1174
+
1175
+ #: app/main/profile/BPMediaScreen.php:328
1176
+ msgid "%s Title"
1177
+ msgstr "Título de %s"
1178
+
1179
+ #: app/main/profile/BPMediaScreen.php:334
1180
+ msgid "%s Description"
1181
+ msgstr "Descripcion de %s"
1182
+
1183
+ #: app/main/profile/BPMediaScreen.php:342
1184
+ msgid "Update"
1185
+ msgstr "Actualizar"
1186
+
1187
+ #: app/main/profile/BPMediaScreen.php:343
1188
+ msgid "Back to Media File"
1189
+ msgstr "Voltar para o arquivo de mídia"
1190
+
1191
+ #: app/main/profile/BPMediaScreen.php:344
1192
+ msgid "Back to Media"
1193
+ msgstr "Voltar para a mídia"
1194
+
1195
+ #: app/main/profile/BPMediaScreen.php:367
1196
+ msgid "You do not have access to this page."
1197
+ msgstr "Você não pode acessar esta página"
1198
+
1199
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1200
+ #: app/main/BuddyPressMedia.php:327
1201
+ msgid "Albums"
1202
+ msgstr "Albums"
1203
+
1204
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1205
+ msgid "Album"
1206
+ msgstr "Álbum"
1207
+
1208
+ #: app/main/BuddyPressMedia.php:333
1209
+ msgid "Upload"
1210
+ msgstr "Subir"
1211
+
1212
+ #: app/main/profile/BPMediaTemplate.php:246
1213
+ msgid "Select Album"
1214
+ msgstr "Selecionar álbum"
1215
+
1216
+ #: app/main/profile/BPMediaTemplate.php:247
1217
+ #: app/main/profile/BPMediaTemplate.php:275
1218
+ msgid "x"
1219
+ msgstr "x"
1220
+
1221
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1222
+ #: app/main/profile/BPMediaTemplate.php:274
1223
+ msgid "Create Album"
1224
+ msgstr "Crear Album"
1225
+
1226
+ #: app/main/profile/BPMediaTemplate.php:278
1227
+ msgid "Album Name"
1228
+ msgstr "Nome do álbum"
1229
+
1230
+ #: app/main/profile/BPMediaTemplate.php:96
1231
+ msgid "Drop files here"
1232
+ msgstr "Arrastra a tus archivos aquí"
1233
+
1234
+ #: app/main/profile/BPMediaTemplate.php:97
1235
+ msgid " or "
1236
+ msgstr "ou"
1237
+
1238
+ #: app/admin/BPMediaAdmin.php:410
1239
+ msgid "Latest News"
1240
+ msgstr "Últimas notícias"
1241
+
1242
+ #: app/helper/BPMediaSettings.php:34
1243
+ msgid "Photos"
1244
+ msgstr "Imágenes"
1245
+
1246
+ #: app/main/BuddyPressMedia.php:312
1247
+ msgid "Photo"
1248
+ msgstr "Imagen"
1249
+
1250
+ #: app/main/BuddyPressMedia.php:315
1251
+ msgid "Videos"
1252
+ msgstr "Vídeos"
1253
+
1254
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1255
+ msgid "Music"
1256
+ msgstr "Música"
1257
+
1258
+ #: app/admin/BPMediaAdmin.php:389
1259
+ msgid "Donate"
1260
+ msgstr "Doar"
1261
+
1262
+ #: app/admin/BPMediaAdmin.php:405
1263
+ msgid "RSS Feed"
1264
+ msgstr "RSS"
1265
+
1266
+ #: app/admin/BPMediaAdmin.php:403
1267
+ msgid "Facebook"
1268
+ msgstr "Facebook"
1269
+
1270
+ #: app/admin/BPMediaAdmin.php:404
1271
+ msgid "Follow us on Twitter"
1272
+ msgstr "Seguinos en Twitter"
1273
+
1274
+ #: app/admin/BPMediaAdmin.php:404
1275
+ msgid "Twitter"
1276
+ msgstr "Twitter"
1277
+
1278
+ #: app/admin/BPMediaAdmin.php:405
1279
+ msgid "Subscribe to our feeds"
1280
+ msgstr "Subscribite a nuestras actualizaciones"
1281
+
1282
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1283
+ msgid "Addons"
1284
+ msgstr "Addons"
1285
+
1286
+ #: app/admin/BPMediaAdmin.php:97
1287
+ msgid "Support "
1288
+ msgstr "Suporte"
1289
+
1290
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1291
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1292
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1293
+ #: app/main/BuddyPressMedia.php:304
1294
+ msgid "Media"
1295
+ msgstr "Multimedia"
1296
+
1297
+ #: app/helper/BPMediaSettings.php:184
1298
+ msgid "Support"
1299
+ msgstr "Suporte"
1300
+
1301
+ #: app/admin/BPMediaAdmin.php:182
1302
+ msgid "Empowering The Web With WordPress"
1303
+ msgstr "Empodere a web com WordPress"
1304
+
1305
+ #: app/admin/BPMediaAdmin.php:403
1306
+ msgid "Become a fan on Facebook"
1307
+ msgstr "Sejá um fã no Facebook"
1308
+
1309
+ #: app/helper/BPMediaSettings.php:182
1310
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1311
+ msgstr "BuddyPress Media Addons para a conversão de áudio e vídeo"
1312
+
1313
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1314
+ msgid "Recounting of media files done successfully"
1315
+ msgstr "Recontagem de mídia realizado com sucesso"
1316
+
1317
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1318
+ msgid "Recounting Failed"
1319
+ msgstr "Falha na recontagem"
1320
+
1321
+ #: app/helper/BPMediaSettings.php:405
1322
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1323
+ msgstr "É preciso especificar duas opções ou usar uma das seleções individuais"
1324
+
1325
+ #: app/helper/BPMediaSettings.php:533
1326
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1327
+ msgstr "Por favor, digite os valores para construir o menu dropdown. Formato: array('value' => 'option)"
1328
+
1329
+ #: app/helper/BPMediaAddon.php:49
1330
+ msgid "BuddyPress-Media Kaltura Add-on"
1331
+ msgstr "BuddyPress-Media Kaltura Add-on"
1332
+
1333
+ #: app/helper/BPMediaAddon.php:52
1334
+ msgid "Add support for more video formats using Kaltura video solution."
1335
+ msgstr "Adicione suporte a mais formatos de vídeo utilizando a solução de vídeos Kaltura"
1336
+
1337
+ #: app/helper/BPMediaAddon.php:53
1338
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1339
+ msgstr "Funciona com Kaltura.com, serviços hospedados do Kaltura-CE e Kaltura-on-premise"
1340
+
1341
+ #: app/helper/BPMediaAddon.php:59
1342
+ msgid "BuddyPress-Media FFMPEG Add-on"
1343
+ msgstr "BuddyPress-Media FFMPEG Add-on"
1344
+
1345
+ #: app/helper/BPMediaAddon.php:62
1346
+ msgid "Add supports for more audio & video formats using open-source media-node."
1347
+ msgstr "Adicione suporte a mais formatos de áudio e vídeo utilizando a ferramenta open source ffmpeg"
1348
+
1349
+ #: app/helper/BPMediaAddon.php:63
1350
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1351
+ msgstr "Contém com configuração automática para sistemas Ubuntu/Debian"
1352
+
1353
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1354
+ msgid "Buy Now"
1355
+ msgstr "Compre agora"
1356
+
1357
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1358
+ msgid "Live Demo"
1359
+ msgstr "Demo"
1360
+
1361
+ #: app/main/group/BPMediaGroupAction.php:124
1362
+ #: app/main/includes/BPMediaHostWordpress.php:742
1363
+ msgid "%1$s added a %2$s"
1364
+ msgstr "%1$s adicionado ao %2$s"
1365
+
1366
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1367
+ #: app/admin/BPMediaAdmin.php:213
1368
+ msgid "BuddyPress Media"
1369
+ msgstr "BuddyPress Media"
1370
+
1371
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1372
+ #: app/main/BuddyPressMedia.php:443
1373
+ msgid "Settings"
1374
+ msgstr "Configuración"
1375
+
1376
+ #: app/helper/BPMediaFeed.php:43
1377
+ msgid "No items"
1378
+ msgstr "No hay elementos"
1379
+
1380
+ #: app/helper/BPMediaFeed.php:49
1381
+ msgid "Posted "
1382
+ msgstr "Publicado"
1383
+
1384
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1385
+ msgid "BuddyPress Media Settings"
1386
+ msgstr "Buddypress Media Configuración"
1387
+
1388
+ #: app/helper/BPMediaSettings.php:39
1389
+ msgid "Video"
1390
+ msgstr "Vídeo"
1391
+
1392
+ #: app/helper/BPMediaSettings.php:44
1393
+ msgid "Audio"
1394
+ msgstr "Audio"
1395
+
1396
+ #: app/main/includes/BPMediaActions.php:330
1397
+ msgid "Download"
1398
+ msgstr "Download"
1399
+
1400
+ #: app/admin/BPMediaAdmin.php:367
1401
+ msgid "Spread the Word"
1402
+ msgstr "Comparte"
1403
+
1404
+ #: app/helper/BPMediaAdminWidget.php:29
1405
+ msgid "Argument missing. id is required."
1406
+ msgstr "Falta argumento. La ID es necesaria."
languages/buddypress-media-fa_IR.po ADDED
@@ -0,0 +1,1408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Persian
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:32:08+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr "ارسال"
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr "لطفا یک آلبوم را انتخاب نمایید ."
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr "خصوصی"
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr "هیچ رسانه ای پیدا نشد ."
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr "حذف آلبوم"
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr "انتخاب تمام قابل مشاهده ها"
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr "عدم انتخاب تمام قابل مشاهده ها"
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr "حذف رسانه های انتخاب شده"
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr "انتقال"
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr "انتقال انتخاب شده ها"
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr "انتقال همه"
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr "خطایی رخ داد . لطفا دوباره تلاش نمایید ."
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr "آیا مطمئنید که می خواهید این آلبوم را ترکیب کنید ؟ "
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr "آیا مایلید پس از ترکیب این آلبوم حذف شود ؟"
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr "آیا مطمئنید که می خواهید رسانه های انتخاب شده را حذف نمایید ؟"
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr "آیا مطمئنید که می خواهید این فعالیت را به همراه رسانه اش حذف نمایید ؟"
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr "آیا مطمئن هستید؟"
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr "لطفا رسانه خود را انتخاب نمایید ."
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr "لطفا عمل مورد نظر خود را انتخاب نمایید ."
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr "شما نام آلبوم را وارد نکرده اید ."
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr "با عرض پوزش ! شما قادر به ایجاد آلبوم در این گروه نیستید ."
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr "تنظیمات شبکه را به طور خودکار به روز کن ."
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr "تنظیمات شبکه با موفقیت به روز شد ."
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr "پیشنهاد می شود"
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr "عرض"
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr "ارتفاع"
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr "برش"
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr "لطفا این صفحه را رفرش نکنید"
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr "تنظیمات تصویر"
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr "اندازه تصویر بندانگشتی"
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr "استفاده شده در آلبوم ها ابزارک کناری رسانه در فعالیت"
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr "سایز متوسط"
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr "استفاده شده در فعالیت برای آپلود یک رسانه"
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr "سایز بزرگ"
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr "استفاده شده در رسانه تنها"
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr "تنظیمات پخش کننده ویدیو"
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr "اندازه پخش کننده فعالیت"
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr "اندازه پخش کننده تنها"
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr "اندازه پخش کننده صوت"
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr "حداکثر حجم آپلود"
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr "انتخاب آلبوم"
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr " و "
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr "شماره های %d از آلبوم بادی پرس را نمی توان وارد کرد ."
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr "من bp-album را به @buddypressmedia http://goo.gl/8Upmv در %s اضافه کردم ."
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr "!تبریک"
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr "تمام فایل ها از BP Album منتقل شدند."
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr "این را توییت کن"
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr "در حال حاضر یک سری فایل ها و جداول پایگاه داده غیر ضروری از منابع شما استفاده می کنند . اگر مشکلی نیست شما می توانید این اطلاعات را پاک نمایید ."
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr "همین حالا پاک کن"
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr "بعدا پاک کن"
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr "چرا افکت هایی مثل اینستاگرام به تصاویر خود اضافه نمی کنید ؟"
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr "به نظر میرسه شما از BP Album استفاده نمی کنید . آیا می خواهید از افزونه دیگری اطلاعات را وارد کنید ؟"
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr "<a href=\"%s\">ایجاد یک موضوع </a> در GitHub چیزی مشابه را تقاضا می کند ."
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr "هشدار"
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr "این واردسازی غیرقابل بازگشت می باشد . اگرچه همه چیز تست شده است ولی لطفا قبل از ادامه <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">آموزش پشتیبان گیری</a> یک پشتیبان از پایگاه داده و اطلاعات خود بگیرید .اگر نمی دانید چطور این کار را انجام دهید می توانید <a target=\"_blank\" href=\"%s\"> ما را استخدام کنید </a> یا به یک فرد متخصص اطلاع دهید ."
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr "اگر شما \"WP_DEBUG\" را در فایل wp-config.php تنظیم کرده اید لطفا قبل از مراحل واردکردن اطلاعات آن را به مقدار \"false\" تغییر دهید تا تداخلی ایجاد نشود ."
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr "من یک پشتیبان از فایل ها وو پایگاه داده این سایت تهیه کرده ام ."
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr "شروع انتقال"
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr "دیدگاه ها"
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr "دیدگاه ها : ۰/۰ (هیچ دیدگاهی برای انتقال وجود ندارد )"
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr "علاقه مندی های کاربر"
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr "BP-Album در سایت شما فعال می باشد و باعث ایجاد مشکل در روند انتقال خواهد شد ."
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr "بر روی اینجا کلیک کنید تا BP-Album غیر فعال شده و روند انتقال ادامه پیدا کند"
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr "بعضی از رسانه ها منتقل نشده اند . ممکن است خراب و یا پاک شده باشند ."
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr "وارد کننده"
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr "وارد کننده BP-Album"
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr "فعال سازی صدا (mp3)"
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr "ترکیب با Lightbox"
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr "Lightbox"
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr "Lightbox را برای رسانه ها فعال کن"
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr "برای استفاده از این افزونه نیاز است تا شما ImageMagick را بر روی سرور خود نصب کرده باشید ."
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr "فعال سازی ویدیو (mp4)"
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr "BuddyPress-Media Instagram"
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr "BuddyPress-Media Instagram به تصاویر شما افکت های اینستاگرام را اضافه می کند ."
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr "مهم"
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "افزودن رسانه"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "نمایش"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr "%1$s یک به روز رسانی در گروه %2$s ارسال کرد"
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr "برای استفاده از رسانه بادی پرس ابتدا شما بایتس بادی پرس را نصب نمایید ."
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr "<a href=\"%s\">نصب بادی پرس</a>"
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr "یا"
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr "از <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\"> افزونه های پریموم </a> استفاده کنید . از $9 شروع می شود ."
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr "اطلاعات اشکال زدایی"
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr "\"تعداد رسانه ها \" بایستی عدد و بزرگتر از صفر باشد ."
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr "تعداد پیش فرض"
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr "هیچ کدام"
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr "اطلاعات اشکال زدایی"
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr "اصلاح تعداد رسانه "
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr "به کاربران اجازه بده تا تنظیمات پیش فرض خود را داشته باشند (<em>پیشنهاد می شود</em>)"
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "تنظیامت دیگر"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr "شمارش دوباره"
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>دوستان</strong> - برای دوستان من نمایش بده"
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>کاربران</strong> - به کاربران عضو نشان بده"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>عمومی </strong> - به همه نشان بده"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>خصوصی </strong> - تنها به کاربر نشان بده"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "بارگذاری فعالیت"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr "بارگذاری های فعالیت"
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr "فعال سازی امکان بارگذاری برای فعالیت"
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr "ادغام با گروه ها"
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr "اجازه ارسال رسانه در گروه ها را بده"
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "نمایش تنظیمات"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "تعداد رسانه"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "فعال سازی تصاویر"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "به عنوان جلد آلبوم قرار بده"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "جلد آلبوم را بردار"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "تنظیمات حریم خصوصی"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "به روز رسانی پایگاه داده رسانه بادی پرس"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "شروع"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>خصوصی </strong> فقط به خودم نشان بده"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>دوستان</strong> به دوستانم نشان بده"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr "سطح پیش فرض حریم خصوصی خود را تعیین کنید . "
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr " %s خصوصی است ."
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "%1s تنها برای دوستان %2s&rsquo;s نمایش داده می شود ."
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "%s تنها برای کاربران وارد شده نمایش داده می شود ."
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "سطح پیش فرض حریم خصوصی شما به روز شد ."
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+ "لطفا این ابزارک را تنظیم کنید\n"
528
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a href=\"%s\" target=\"_blank\"\n"
529
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\ttitle=\"تنظیم ابزارک رسانه بادی پرس\">\n"
530
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tاینجا</a>."
531
+
532
+ #: app/main/profile/BPMediaAlbumScreen.php:300
533
+ msgid "to"
534
+ msgstr "به"
535
+
536
+ #: app/main/profile/BPMediaScreen.php:125
537
+ msgid "All %s"
538
+ msgstr "همه %s"
539
+
540
+ #: app/main/BuddyPressMedia.php:547
541
+ msgid ""
542
+ "The BuddyPress version installed is an\n"
543
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
544
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
545
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
546
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
547
+ msgstr ""
548
+ "نسخه بادی پرس نصب شده \n"
549
+ " نسخه قدیمی است و پشتیبانی نمی شود .\n"
550
+ " برای استفاده بادی پرس خود را به روز کنید .\n"
551
+ " افزونه رسانه بادی پرس\n"
552
+ " <a class=\"alignright\" href=\"%1$s\">X</a>"
553
+
554
+ #: app/main/BuddyPressMedia.php:560
555
+ msgid ""
556
+ "You have not installed BuddyPress.\n"
557
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
558
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
559
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
560
+ msgstr ""
561
+ "شما بادی پرس را نصب نکرده اید .\n"
562
+ " لطفا آخرین نسخه بادی پرس را نصب نمایید\n"
563
+ " برای استفاده از افزونه رسانه بادی پرس\n"
564
+ " <a class=\"alignright\" href=\"%1$s\">X</a>"
565
+
566
+ #: app/admin/BPMediaAdmin.php:363
567
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
568
+ msgstr "من از buddypressmedia http://goo.gl/8Upmv در %s استفاده می کنم"
569
+
570
+ #: app/admin/BPMediaAdmin.php:364
571
+ msgid "Add link to footer"
572
+ msgstr "افزودن پیوند به پانوشت"
573
+
574
+ #: app/admin/BPMediaAdmin.php:365
575
+ msgid "Tweet"
576
+ msgstr "توییت"
577
+
578
+ #: app/admin/BPMediaAdmin.php:366
579
+ msgid "Rate on WordPress.org"
580
+ msgstr "در سایت WordPress.org امتیاز بدهید"
581
+
582
+ #: app/admin/BPMediaAdmin.php:377
583
+ msgid "USD"
584
+ msgstr "USD"
585
+
586
+ #: app/admin/BPMediaAdmin.php:407
587
+ msgid "Subscribe"
588
+ msgstr "آبونه شدن"
589
+
590
+ #: app/admin/BPMediaAdmin.php:99
591
+ msgid "BuddyPress Media Convert Videos"
592
+ msgstr "رسانه بادی پرس تبدیل کردن ویدیو"
593
+
594
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
595
+ msgid "Convert Videos"
596
+ msgstr "تبدیل کردن ویدیو ها"
597
+
598
+ #: app/admin/BPMediaAdmin.php:182
599
+ msgid "By"
600
+ msgstr "توسط"
601
+
602
+ #: app/admin/BPMediaAdmin.php:262
603
+ msgid "BuddyPress Media Covert Videos"
604
+ msgstr "تبدیل ویدیو های رسانه بادی پرس"
605
+
606
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
607
+ msgid "Atleast one Media Type Must be selected"
608
+ msgstr "حداقل یکی از انواع رسانه باید انتخاب شده باشند"
609
+
610
+ #: app/helper/BPMediaSettings.php:305
611
+ msgid "Media Type"
612
+ msgstr "نوع رسانه"
613
+
614
+ #: app/helper/BPMediaSettings.php:603
615
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
616
+ msgstr "رسانه بادی پرس ۲.۶ نیاز به به روز رسانی پایگاه داده دارد ."
617
+
618
+ #: app/admin/BPMediaAdmin.php:91
619
+ msgid "BuddyPress Media Database Update"
620
+ msgstr "به روز رسانی پایگاه داده رسانه بادی پرس"
621
+
622
+ #: app/main/privacy/BPMediaPrivacy.php:121
623
+ msgid "<strong>Users</strong>, Visible to registered users"
624
+ msgstr "<strong>کاربران</strong> به کاربران عضو نشان بده"
625
+
626
+ #: app/main/privacy/BPMediaPrivacy.php:125
627
+ msgid "<strong>Public</strong>, Visible to the world"
628
+ msgstr "<strong>عمومی</strong> به همه نشان بده"
629
+
630
+ #: app/helper/BPMediaSettings.php:172
631
+ msgid "Enable menu in WordPress admin bar"
632
+ msgstr "منو را در میله مدیریت وردپرس فعال کن"
633
+
634
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
635
+ msgid "Update Database"
636
+ msgstr "به روز رسانی پایگاه داده"
637
+
638
+ #: app/helper/BPMediaSettings.php:132
639
+ msgid "Download Button"
640
+ msgstr "دکمه دانلود"
641
+
642
+ #: app/helper/BPMediaSettings.php:135
643
+ msgid "Display download button under media"
644
+ msgstr "دکمه دانلود را در زیر رسانه نشان بده"
645
+
646
+ #: app/main/BuddyPressMedia.php:306
647
+ msgid "Privacy"
648
+ msgstr "حریم خصوصی"
649
+
650
+ #: app/helper/BPMediaSettings.php:140
651
+ msgid "Enable Privacy"
652
+ msgstr "حریم خصوصی را فعال کن"
653
+
654
+ #: app/helper/BPMediaSettings.php:143
655
+ msgid "Enable privacy"
656
+ msgstr "حریم خصوصی را فعال کن"
657
+
658
+ #: app/helper/BPMediaSettings.php:161
659
+ msgid "User Override"
660
+ msgstr "برتر بودن تنظیمات کاربر"
661
+
662
+ #: app/helper/BPMediaSettings.php:155
663
+ msgid "Default Privacy"
664
+ msgstr "حریم خصوصی پیش فرض"
665
+
666
+ #: app/helper/BPMediaSettings.php:33
667
+ msgid "Enabled Media Types"
668
+ msgstr "انواع رسانه فعال"
669
+
670
+ #: app/helper/BPMediaSettings.php:169
671
+ msgid "Admin bar menu"
672
+ msgstr "منو میله مدیر"
673
+
674
+ #: app/helper/BPMediaSettings.php:318
675
+ msgid "Settings saved."
676
+ msgstr "تنظیمات ذخیره شدند ."
677
+
678
+ #: app/main/profile/BPMediaTemplate.php:29
679
+ msgid "Wall Posts"
680
+ msgstr "ارسال های دیوار"
681
+
682
+ #: app/main/profile/BPMediaTemplate.php:83
683
+ msgid "+ Create New Album"
684
+ msgstr "+ ایجاد یک آلبوم جدید"
685
+
686
+ #: app/main/profile/BPMediaTemplate.php:90
687
+ msgid "Cancel"
688
+ msgstr "لغو"
689
+
690
+ #: app/main/profile/BPMediaTemplate.php:213
691
+ msgid "Show More"
692
+ msgstr "نمایش بیشتر"
693
+
694
+ #: app/main/profile/BPMediaTemplate.php:267
695
+ msgid "Select"
696
+ msgstr "انتخاب"
697
+
698
+ #: app/main/profile/BPMediaTemplate.php:286
699
+ msgid "Add Media"
700
+ msgstr "افزودن رسانه"
701
+
702
+ #: app/main/includes/BPMediaFilters.php:158
703
+ msgid "Delete %s"
704
+ msgstr "حذف %s "
705
+
706
+ #: app/main/widgets/BPMediaWidget.php:197
707
+ msgid "Widget Type:"
708
+ msgstr "نوع ابزارک :"
709
+
710
+ #: app/main/widgets/BPMediaWidget.php:210
711
+ msgid "Show All"
712
+ msgstr "نمایش همه"
713
+
714
+ #: app/main/widgets/BPMediaWidget.php:213
715
+ msgid "Show Photos"
716
+ msgstr "نمایش تصاویر"
717
+
718
+ #: app/main/widgets/BPMediaWidget.php:216
719
+ msgid "Show Music"
720
+ msgstr "نمایش موسیقی ها"
721
+
722
+ #: app/main/widgets/BPMediaWidget.php:220
723
+ msgid "Show Videos"
724
+ msgstr "نمایش ویدیوها"
725
+
726
+ #: app/main/widgets/BPMediaWidget.php:20
727
+ msgid "The most recent/popular media uploaded on your site"
728
+ msgstr "جدیدترین و محبوب ترین رسانه های ارسال شده در سایت شما "
729
+
730
+ #: app/main/widgets/BPMediaWidget.php:21
731
+ msgid "BuddyPress Media Widget"
732
+ msgstr "ابزارک رسانه بادی پرس"
733
+
734
+ #: app/main/widgets/BPMediaWidget.php:150
735
+ msgid "No "
736
+ msgstr "خیر"
737
+
738
+ #: app/main/BuddyPressMedia.php:158
739
+ msgid "BuddyPress is not installed."
740
+ msgstr "بادی پرس نصب نشده است ."
741
+
742
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
743
+ msgid "BuddyPress Media Addons"
744
+ msgstr "افزونه های رسانه بادی پرس"
745
+
746
+ #: app/admin/BPMediaAdmin.php:88
747
+ msgid "BuddyPress Media Component"
748
+ msgstr "کامپوننت رسانه بادی پرس"
749
+
750
+ #: app/helper/BPMediaSupport.php:121
751
+ msgid "Additional Information"
752
+ msgstr "اطلاعات اضافی"
753
+
754
+ #: app/helper/BPMediaSettings.php:286
755
+ msgid "Recount Success"
756
+ msgstr "موفقیت بازشماری"
757
+
758
+ #: app/helper/BPMediaSettings.php:291
759
+ msgid "Recount Fail"
760
+ msgstr "عدم موفقیت بازشماری"
761
+
762
+ #: app/main/includes/BPMediaHostWordpress.php:170
763
+ msgid "MP4 file you have uploaded is corrupt."
764
+ msgstr "فایل MP4 که شما ارسال کردید خراب می باشد ."
765
+
766
+ #: app/helper/BPMediaSupport.php:246
767
+ msgid "Thank you for your Feedback/Suggestion."
768
+ msgstr "با تشکر از ارسال نظرتان"
769
+
770
+ #: app/helper/BPMediaSupport.php:248
771
+ msgid "Thank you for posting your support request."
772
+ msgstr "با تشکر از ارسال تقاضای پشتیبانی شما"
773
+
774
+ #: app/helper/BPMediaSupport.php:249
775
+ msgid "We will get back to you shortly."
776
+ msgstr "ما به زودی برمی گردیم"
777
+
778
+ #: app/helper/BPMediaSupport.php:252
779
+ msgid "Your server failed to send an email."
780
+ msgstr "سرور شما نتوانست ایمیلی ارسال کند ."
781
+
782
+ #: app/helper/BPMediaSupport.php:253
783
+ msgid "Kindly contact your server support to fix this."
784
+ msgstr "با پشتیبانی سرور خود تماس بگیرید تا این مشکل را برطرف نمایند ."
785
+
786
+ #: app/helper/BPMediaSupport.php:254
787
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
788
+ msgstr "هم چنین شما می توانید در <a href=\"%s\">اینجا</a> نیز تقاضا پشتیبانی خود را ارسال نمایید."
789
+
790
+ #: app/helper/BPMediaSupport.php:95
791
+ msgid "Name"
792
+ msgstr "نام"
793
+
794
+ #: app/helper/BPMediaSupport.php:98
795
+ msgid "Email"
796
+ msgstr "ایمیل"
797
+
798
+ #: app/helper/BPMediaSupport.php:101
799
+ msgid "Website"
800
+ msgstr "وب سایت"
801
+
802
+ #: app/helper/BPMediaSupport.php:104
803
+ msgid "Phone"
804
+ msgstr "شماره تماس"
805
+
806
+ #: app/helper/BPMediaSupport.php:107
807
+ msgid "Subject"
808
+ msgstr "موضوع"
809
+
810
+ #: app/helper/BPMediaSupport.php:110
811
+ msgid "Details"
812
+ msgstr "جزییات"
813
+
814
+ #: app/helper/BPMediaSupport.php:161
815
+ msgid "BuddyPress Media Premium Support Request from"
816
+ msgstr "فرم تقاضای پشتیبانی پریموم رسانه بادی پرس"
817
+
818
+ #: app/helper/BPMediaSupport.php:164
819
+ msgid "BuddyPress Media New Feature Request from"
820
+ msgstr "فرم تقاضای قابلیت جدید برای رسانه بادی پرس"
821
+
822
+ #: app/helper/BPMediaSupport.php:167
823
+ msgid "BuddyPress Media Bug Report from"
824
+ msgstr "فرم گزارش خطا در رسانه بادی پرس"
825
+
826
+ #: app/helper/BPMediaSupport.php:170
827
+ msgid "BuddyPress Media Contact from"
828
+ msgstr "فرم تماس با رسانه بادی پرس"
829
+
830
+ #: app/helper/BPMediaSettings.php:358
831
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
832
+ msgstr "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
833
+
834
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
835
+ #: app/helper/BPMediaSettings.php:531
836
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
837
+ msgstr "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
838
+
839
+ #: app/main/includes/BPMediaActions.php:874
840
+ msgid "%1$s created an album %2$s"
841
+ msgstr "%1$s آلبوم %2$s را ایجاد کرد"
842
+
843
+ #: app/main/BPMediaComponent.php:262
844
+ msgid "All Albums"
845
+ msgstr "همه آلبوم ها"
846
+
847
+ #: app/main/BPMediaComponent.php:263
848
+ msgid "View Album"
849
+ msgstr "نمایش آلبوم"
850
+
851
+ #: app/main/BPMediaComponent.php:264
852
+ msgid "Search Albums"
853
+ msgstr "جستجو در آلبوم ها"
854
+
855
+ #: app/main/BPMediaComponent.php:265
856
+ msgid "No album found"
857
+ msgstr "هیچ آلبومی پیدا نشد"
858
+
859
+ #: app/main/BPMediaComponent.php:266
860
+ msgid "No album found in Trash"
861
+ msgstr "هیچ آلبومی در سطل زباله پیدا نشد"
862
+
863
+ #: app/main/BPMediaComponent.php:300
864
+ msgid "Add New Media"
865
+ msgstr "افزودن یک رسانه تازه"
866
+
867
+ #: app/main/BPMediaComponent.php:308
868
+ msgid "BuddyPress Media's Media Files"
869
+ msgstr "فایل های رسانه ی رسانه بادی پرس"
870
+
871
+ #: app/main/includes/BPMediaFunction.php:229
872
+ msgid "%1$s added new media in album %2$s"
873
+ msgstr "%1$s یک رسانه جدید در آلبوم %2$s اضافه کرد"
874
+
875
+ #: app/importers/BPMediaAlbumimporter.php:81
876
+ msgid "Users"
877
+ msgstr "کاربران"
878
+
879
+ #: app/main/includes/BPMediaFilters.php:410
880
+ msgid "Total Photos"
881
+ msgstr "تمام تصاویر"
882
+
883
+ #: app/main/includes/BPMediaFilters.php:411
884
+ msgid "Total Videos"
885
+ msgstr "تمام ویدیو ها"
886
+
887
+ #: app/main/includes/BPMediaFilters.php:412
888
+ msgid "Total Audio"
889
+ msgstr "تمام صوت ها"
890
+
891
+ #: app/main/includes/BPMediaFilters.php:413
892
+ msgid "Total Albums"
893
+ msgstr "تمام آلبوم ها"
894
+
895
+ #: app/helper/BPMediaSettings.php:118
896
+ msgid "Groups"
897
+ msgstr "گروه ها"
898
+
899
+ #: app/main/includes/BPMediaActions.php:348
900
+ msgid "Edit Media"
901
+ msgstr "ویرایش رسانه"
902
+
903
+ #: app/main/profile/BPMediaAlbumScreen.php:246
904
+ msgid "Edit"
905
+ msgstr "ویرایش"
906
+
907
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
908
+ #: app/main/profile/BPMediaTemplate.php:282
909
+ msgid "Create"
910
+ msgstr "ایجاد"
911
+
912
+ #: app/main/BPMediaComponent.php:260
913
+ #: app/main/profile/BPMediaAlbumScreen.php:246
914
+ msgid "Edit Album"
915
+ msgstr "ویرایش آلبوم"
916
+
917
+ #: app/main/BPMediaComponent.php:261
918
+ msgid "New Album"
919
+ msgstr "آلبوم تازه"
920
+
921
+ #: app/helper/BPMediaSupport.php:126
922
+ msgid "Your WP Admin Login:"
923
+ msgstr "نام کاربری مدیریت وردپرس شما :"
924
+
925
+ #: app/helper/BPMediaSupport.php:129
926
+ msgid "Your WP Admin password:"
927
+ msgstr "رمز عبور مدیریت وردپرس شما :"
928
+
929
+ #: app/helper/BPMediaSupport.php:132
930
+ msgid "Your SSH / FTP host:"
931
+ msgstr "هاست SSH / FTP شما :"
932
+
933
+ #: app/helper/BPMediaSupport.php:135
934
+ msgid "Your SSH / FTP login:"
935
+ msgstr "نام کاربری SSH / FTP شما :"
936
+
937
+ #: app/helper/BPMediaSupport.php:138
938
+ msgid "Your SSH / FTP password:"
939
+ msgstr "رمز عبور SSH / FTP شما :"
940
+
941
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
942
+ msgid "Media Title"
943
+ msgstr "عنوان رسانه"
944
+
945
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
946
+ msgid "Media Description"
947
+ msgstr "توضیحات رسانه"
948
+
949
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
950
+ msgid "Select Media File"
951
+ msgstr "انتخاب فایل رسانه"
952
+
953
+ #: app/main/BPMediaComponent.php:60
954
+ msgid "Search Media..."
955
+ msgstr "جستجو رسانه ..."
956
+
957
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
958
+ msgid "BuddyPress Media Support"
959
+ msgstr "پشتیبانی رسانه بادی پرس"
960
+
961
+ #: app/helper/BPMediaSupport.php:81
962
+ msgid "Submit a Bug Report"
963
+ msgstr "ارسال گزارش خطا"
964
+
965
+ #: app/helper/BPMediaSupport.php:84
966
+ msgid "Submit a New Feature Request"
967
+ msgstr "ارسال تقاضای یک ویژگی جدید"
968
+
969
+ #: app/helper/BPMediaSupport.php:87
970
+ msgid "Submit a Premium Support Request"
971
+ msgstr "ارسال تقاضای پشتیبانی پریموم "
972
+
973
+ #: app/main/includes/BPMediaHostWordpress.php:615
974
+ msgid "Post"
975
+ msgstr "ارسال"
976
+
977
+ #: app/main/includes/BPMediaHostWordpress.php:615
978
+ msgid "or press esc to cancel."
979
+ msgstr "یا دکمه Esc را بزنید تا لغو شود"
980
+
981
+ #: app/main/profile/BPMediaAlbumScreen.php:252
982
+ msgid "Delete"
983
+ msgstr "حذف"
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:59
986
+ msgid "Sorry, the requested media does not exist."
987
+ msgstr "رسانه مورد نظر شما پیدا نشد ."
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:137
990
+ msgid "Error Uploading File"
991
+ msgstr "خطا در بارگذاری فایل"
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:177
994
+ #: app/main/includes/BPMediaHostWordpress.php:182
995
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
996
+ msgstr "فایل MP4 ارسالی شما از کدکی استفاده می کند که پشتیبانی نمی شود . کدکی که پشتیبانی می شود H.264 می باشد ."
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:187
999
+ msgid "The MP4 file you have uploaded is not a video file."
1000
+ msgstr "فایل H.264 ارسالی شما یک فایل ویدیویی نمی باشد "
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:198
1003
+ msgid "MP3 file you have uploaded is currupt."
1004
+ msgstr "فایل MP3 که شما بارگذاری نمودید خراب می باشد"
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:205
1007
+ #: app/main/includes/BPMediaHostWordpress.php:210
1008
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1009
+ msgstr "فایل که شما بارگذاری کردید از یک فرمت صوتی پشتیبانی نشده استفاده می نماید . فرمت پشتیبانی شده MP3 می باشد ."
1010
+
1011
+ #: app/main/includes/BPMediaHostWordpress.php:215
1012
+ msgid "The MP3 file you have uploaded is not an audio file."
1013
+ msgstr "فایل MP3 که شما بارگذاری نمودید یک فایل صوتی نمی باشد ."
1014
+
1015
+ #: app/main/includes/BPMediaHostWordpress.php:227
1016
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1017
+ msgstr "فایل رسانه ای که شما مایل به ارسال هستید پشتیبانی نمی شود . فرمت هایی که پشتیبانی میشود عبارتند از : .jpg, .png, .gif, .mp3, .mov و .mp4."
1018
+
1019
+ #: app/main/includes/BPMediaHostWordpress.php:236
1020
+ msgid "Error creating attachment for the media file, please try again"
1021
+ msgstr "خطا در ایجاد ضمیمه برای فایل رسانه لطفا دوباره تلاش نمایید"
1022
+
1023
+ #: app/main/includes/BPMediaHostWordpress.php:346
1024
+ msgid "%s uploaded a media."
1025
+ msgstr "%s یک رسانه ارسال کرد."
1026
+
1027
+ #: app/main/includes/BPMediaHostWordpress.php:367
1028
+ msgid "Uploaded by "
1029
+ msgstr "ارسال شده توسط "
1030
+
1031
+ #: app/main/includes/BPMediaHostWordpress.php:590
1032
+ msgid "Comment <span>%s</span>"
1033
+ msgstr " دیدگاه <span>%s</span>"
1034
+
1035
+ #: app/main/includes/BPMediaHostWordpress.php:594
1036
+ msgid "Favorite"
1037
+ msgstr "افزودن به علاقمندی ها"
1038
+
1039
+ #: app/main/includes/BPMediaHostWordpress.php:596
1040
+ msgid "Remove Favorite"
1041
+ msgstr "حذف از علاقه مندی ها"
1042
+
1043
+ #: app/main/widgets/BPMediaWidget.php:203
1044
+ msgid "Title:"
1045
+ msgstr "عنوان"
1046
+
1047
+ #: app/main/widgets/BPMediaWidget.php:206
1048
+ msgid "Number of posts to show:"
1049
+ msgstr "تعداد ارسال هایی که نمایش داده می شوند :"
1050
+
1051
+ #: app/main/widgets/BPMediaWidget.php:199
1052
+ msgid "Recent Media"
1053
+ msgstr "رسانه اخیر"
1054
+
1055
+ #: app/main/widgets/BPMediaWidget.php:72
1056
+ msgid "All"
1057
+ msgstr "همه"
1058
+
1059
+ #: app/main/group/BPMediaGroupsExtension.php:41
1060
+ #: app/main/group/BPMediaGroupsExtension.php:88
1061
+ msgid "Who can create Albums in this group?"
1062
+ msgstr "چه کسی می تواند در این گروه آلبوم ایجاد نماید ؟"
1063
+
1064
+ #: app/main/group/BPMediaGroupsExtension.php:45
1065
+ #: app/main/group/BPMediaGroupsExtension.php:92
1066
+ msgid "All Group Members"
1067
+ msgstr "تمام اعضای گروه"
1068
+
1069
+ #: app/main/group/BPMediaGroupsExtension.php:49
1070
+ #: app/main/group/BPMediaGroupsExtension.php:96
1071
+ msgid "Group Admins and Mods only"
1072
+ msgstr "فقط مدیران و ویرایشگران گروه"
1073
+
1074
+ #: app/main/group/BPMediaGroupsExtension.php:53
1075
+ #: app/main/group/BPMediaGroupsExtension.php:100
1076
+ msgid "Group Admin only"
1077
+ msgstr "فقط مدیر گروه"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:104
1080
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1081
+ msgid "Save Changes"
1082
+ msgstr "ذخیره تنظیمات"
1083
+
1084
+ #: app/main/group/BPMediaGroupsExtension.php:130
1085
+ msgid "There was an error saving, please try again"
1086
+ msgstr "خطا در ذخیره تنظمیات لطفا دوباره تلاش کنید ."
1087
+
1088
+ #: app/main/group/BPMediaGroupsExtension.php:132
1089
+ msgid "Settings saved successfully"
1090
+ msgstr "تنظیمات با موفقیت ذخیره شدند ."
1091
+
1092
+ #: app/main/group/BPMediaGroupsExtension.php:153
1093
+ msgid ""
1094
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1095
+ "\t home screen."
1096
+ msgstr "شما می توانید یک اطلاعات کوچک از گروه اکتنشن خود را در اینجا نمایش دهید . این در گروه نمایش پیدا می کند ."
1097
+
1098
+ #: app/main/widgets/BPMediaWidget.php:200
1099
+ msgid "Popular Media"
1100
+ msgstr "رسانه محبوب"
1101
+
1102
+ #: app/main/profile/BPMediaScreen.php:396
1103
+ msgid "Media deleted successfully"
1104
+ msgstr "رسانه با موفقیت حذف گردید"
1105
+
1106
+ #: app/main/profile/BPMediaTemplate.php:98
1107
+ #: app/main/profile/BPMediaUploadScreen.php:33
1108
+ msgid "Upload Media"
1109
+ msgstr "بارگذاری رسانه"
1110
+
1111
+ #: app/main/profile/BPMediaUploadScreen.php:71
1112
+ msgid "You are not allowed to be here"
1113
+ msgstr "شما مجاز نیستید که در اینجا باشید ."
1114
+
1115
+ #: app/main/profile/BPMediaUploadScreen.php:98
1116
+ #: app/main/profile/BPMediaUploadScreen.php:122
1117
+ msgid "File uploaded is not supported"
1118
+ msgstr "فایل ارسال شده پشتیبانی نمی شود ."
1119
+
1120
+ #: app/main/profile/BPMediaUploadScreen.php:105
1121
+ msgid "Image uploads are disabled"
1122
+ msgstr "ارسال تصویر غیر فعال شده است ."
1123
+
1124
+ #: app/main/profile/BPMediaUploadScreen.php:111
1125
+ msgid "Video uploads are disabled"
1126
+ msgstr "ارسال ویدیو غیر فعال شده است ."
1127
+
1128
+ #: app/main/profile/BPMediaUploadScreen.php:117
1129
+ msgid "Audio uploads are disabled"
1130
+ msgstr "ارسال صوت غیر فعال شده است ."
1131
+
1132
+ #: app/main/profile/BPMediaUploadScreen.php:135
1133
+ msgid "Upload Successful"
1134
+ msgstr "با موفقیت بارگذاری شد ."
1135
+
1136
+ #: app/main/profile/BPMediaUploadScreen.php:140
1137
+ msgid "You did not specified a file to upload"
1138
+ msgstr "شما هیچ فایلی را برای بارگذاری انتخاب نکردید ."
1139
+
1140
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1141
+ msgid "Sorry, no media items were found in this album."
1142
+ msgstr "هیچ مورد رسانه ای در این آلبوم پیدا نشد ."
1143
+
1144
+ #: app/main/profile/BPMediaAlbum.php:74
1145
+ msgid "Sorry, the requested album does not exist."
1146
+ msgstr "آلبوم مورد نظر شما پیدا نشد ."
1147
+
1148
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1149
+ msgid "Sorry, the requested media does not belong to the group"
1150
+ msgstr "رسانه مورد نظر متعلق به گروه نمی باشد."
1151
+
1152
+ #: app/main/BPMediaGroupLoader.php:252
1153
+ msgid "Media Settings"
1154
+ msgstr "تنظیمات رسانه"
1155
+
1156
+ #: app/main/group/BPMediaGroupsExtension.php:40
1157
+ #: app/main/group/BPMediaGroupsExtension.php:87
1158
+ msgid "Album Creation Control"
1159
+ msgstr "کنترل ایجاد آلبوم"
1160
+
1161
+ #: app/main/profile/BPMediaScreen.php:114
1162
+ #: app/main/profile/BPMediaScreen.php:374
1163
+ msgid "The requested url does not exist"
1164
+ msgstr "url مورد نظر شما وجود ندارد"
1165
+
1166
+ #: app/main/profile/BPMediaScreen.php:196
1167
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1168
+ msgid "Sorry, no %s were found."
1169
+ msgstr "هیچ %s پیدا نشد"
1170
+
1171
+ #: app/main/profile/BPMediaScreen.php:307
1172
+ msgid "Edit %s"
1173
+ msgstr "ویرایش %s"
1174
+
1175
+ #: app/main/profile/BPMediaScreen.php:328
1176
+ msgid "%s Title"
1177
+ msgstr "عنوان %s"
1178
+
1179
+ #: app/main/profile/BPMediaScreen.php:334
1180
+ msgid "%s Description"
1181
+ msgstr "توضیحات %s"
1182
+
1183
+ #: app/main/profile/BPMediaScreen.php:342
1184
+ msgid "Update"
1185
+ msgstr "به روز رسانی"
1186
+
1187
+ #: app/main/profile/BPMediaScreen.php:343
1188
+ msgid "Back to Media File"
1189
+ msgstr "بازگشت به فایل رسانه"
1190
+
1191
+ #: app/main/profile/BPMediaScreen.php:344
1192
+ msgid "Back to Media"
1193
+ msgstr "بازگشت به رسانه"
1194
+
1195
+ #: app/main/profile/BPMediaScreen.php:367
1196
+ msgid "You do not have access to this page."
1197
+ msgstr "شما مجاز به دسترسی به این صفحه نیستید ."
1198
+
1199
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1200
+ #: app/main/BuddyPressMedia.php:327
1201
+ msgid "Albums"
1202
+ msgstr "آلبوم ها"
1203
+
1204
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1205
+ msgid "Album"
1206
+ msgstr "آلبوم"
1207
+
1208
+ #: app/main/BuddyPressMedia.php:333
1209
+ msgid "Upload"
1210
+ msgstr "بارگذاری"
1211
+
1212
+ #: app/main/profile/BPMediaTemplate.php:246
1213
+ msgid "Select Album"
1214
+ msgstr "انتخاب آلبوم"
1215
+
1216
+ #: app/main/profile/BPMediaTemplate.php:247
1217
+ #: app/main/profile/BPMediaTemplate.php:275
1218
+ msgid "x"
1219
+ msgstr "x"
1220
+
1221
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1222
+ #: app/main/profile/BPMediaTemplate.php:274
1223
+ msgid "Create Album"
1224
+ msgstr "ایجاد آلبوم"
1225
+
1226
+ #: app/main/profile/BPMediaTemplate.php:278
1227
+ msgid "Album Name"
1228
+ msgstr "نام آلبوم"
1229
+
1230
+ #: app/main/profile/BPMediaTemplate.php:96
1231
+ msgid "Drop files here"
1232
+ msgstr "فایل ها را اینجا بندازید"
1233
+
1234
+ #: app/main/profile/BPMediaTemplate.php:97
1235
+ msgid " or "
1236
+ msgstr "یا"
1237
+
1238
+ #: app/admin/BPMediaAdmin.php:410
1239
+ msgid "Latest News"
1240
+ msgstr "آخرین اخبار"
1241
+
1242
+ #: app/helper/BPMediaSettings.php:34
1243
+ msgid "Photos"
1244
+ msgstr "تصاویر"
1245
+
1246
+ #: app/main/BuddyPressMedia.php:312
1247
+ msgid "Photo"
1248
+ msgstr "تصویر"
1249
+
1250
+ #: app/main/BuddyPressMedia.php:315
1251
+ msgid "Videos"
1252
+ msgstr "ویدیو"
1253
+
1254
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1255
+ msgid "Music"
1256
+ msgstr "موسیقی"
1257
+
1258
+ #: app/admin/BPMediaAdmin.php:389
1259
+ msgid "Donate"
1260
+ msgstr "اهدا"
1261
+
1262
+ #: app/admin/BPMediaAdmin.php:405
1263
+ msgid "RSS Feed"
1264
+ msgstr "RSS Feed"
1265
+
1266
+ #: app/admin/BPMediaAdmin.php:403
1267
+ msgid "Facebook"
1268
+ msgstr "فیس بوک"
1269
+
1270
+ #: app/admin/BPMediaAdmin.php:404
1271
+ msgid "Follow us on Twitter"
1272
+ msgstr "ما را در توییتر دنبال کنید"
1273
+
1274
+ #: app/admin/BPMediaAdmin.php:404
1275
+ msgid "Twitter"
1276
+ msgstr "توییتر"
1277
+
1278
+ #: app/admin/BPMediaAdmin.php:405
1279
+ msgid "Subscribe to our feeds"
1280
+ msgstr "آبونه شدن در خوراک ما"
1281
+
1282
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1283
+ msgid "Addons"
1284
+ msgstr "افزونه ها"
1285
+
1286
+ #: app/admin/BPMediaAdmin.php:97
1287
+ msgid "Support "
1288
+ msgstr "پشتیبانی"
1289
+
1290
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1291
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1292
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1293
+ #: app/main/BuddyPressMedia.php:304
1294
+ msgid "Media"
1295
+ msgstr "رسانه"
1296
+
1297
+ #: app/helper/BPMediaSettings.php:184
1298
+ msgid "Support"
1299
+ msgstr "پشتیبانی"
1300
+
1301
+ #: app/admin/BPMediaAdmin.php:182
1302
+ msgid "Empowering The Web With WordPress"
1303
+ msgstr "وب را با وردپرس قدرتمند کنید"
1304
+
1305
+ #: app/admin/BPMediaAdmin.php:403
1306
+ msgid "Become a fan on Facebook"
1307
+ msgstr "ما را در فیس بوک دنبال کنید"
1308
+
1309
+ #: app/helper/BPMediaSettings.php:182
1310
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1311
+ msgstr "افزونه رسانه بادی پرس برای تبدیل فایل های صوتی و تصویری"
1312
+
1313
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1314
+ msgid "Recounting of media files done successfully"
1315
+ msgstr "شماره دوباره فایل های رسانه با موفقیت به اتمام رسید"
1316
+
1317
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1318
+ msgid "Recounting Failed"
1319
+ msgstr "شمارش دوباره با مشکل روبرو شد ."
1320
+
1321
+ #: app/helper/BPMediaSettings.php:405
1322
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1323
+ msgstr "نیاز است حداقل شما دکمه رادیویی را تعیین کنید یا از چک باکس استفاده کنید"
1324
+
1325
+ #: app/helper/BPMediaSettings.php:533
1326
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1327
+ msgstr ""
1328
+ "لطفا یک مقدار برای نوار افتادنی انتخاب کنید .\n"
1329
+ "فرمت : array( 'value' => 'option' )"
1330
+
1331
+ #: app/helper/BPMediaAddon.php:49
1332
+ msgid "BuddyPress-Media Kaltura Add-on"
1333
+ msgstr "افزونه Kaltura رسانه بادی پرس"
1334
+
1335
+ #: app/helper/BPMediaAddon.php:52
1336
+ msgid "Add support for more video formats using Kaltura video solution."
1337
+ msgstr "افزودن پشتیبانی از دیگر فرمت های تصویری و صوتی توسط Kaltura"
1338
+
1339
+ #: app/helper/BPMediaAddon.php:53
1340
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1341
+ msgstr "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1342
+
1343
+ #: app/helper/BPMediaAddon.php:59
1344
+ msgid "BuddyPress-Media FFMPEG Add-on"
1345
+ msgstr "افزونه FFMPEG برای رسانه بادی پرس"
1346
+
1347
+ #: app/helper/BPMediaAddon.php:62
1348
+ msgid "Add supports for more audio & video formats using open-source media-node."
1349
+ msgstr "افزودن پشتیبانی از دیگر فرمت های تصویری و صوتی توسط متن بازها "
1350
+
1351
+ #: app/helper/BPMediaAddon.php:63
1352
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1353
+ msgstr "Media node به همراه نصب خودکار برای اوبونتو/دبیان"
1354
+
1355
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1356
+ msgid "Buy Now"
1357
+ msgstr "همین حالا بخرید"
1358
+
1359
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1360
+ msgid "Live Demo"
1361
+ msgstr "پیش نمایش آنلاین"
1362
+
1363
+ #: app/main/group/BPMediaGroupAction.php:124
1364
+ #: app/main/includes/BPMediaHostWordpress.php:742
1365
+ msgid "%1$s added a %2$s"
1366
+ msgstr "%1$s یک %2$s اضافه کرد"
1367
+
1368
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1369
+ #: app/admin/BPMediaAdmin.php:213
1370
+ msgid "BuddyPress Media"
1371
+ msgstr "رسانه بادی پرس"
1372
+
1373
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1374
+ #: app/main/BuddyPressMedia.php:443
1375
+ msgid "Settings"
1376
+ msgstr "تنظیمات"
1377
+
1378
+ #: app/helper/BPMediaFeed.php:43
1379
+ msgid "No items"
1380
+ msgstr "هیچ موردی پیدا نشد"
1381
+
1382
+ #: app/helper/BPMediaFeed.php:49
1383
+ msgid "Posted "
1384
+ msgstr "ارسال شده"
1385
+
1386
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1387
+ msgid "BuddyPress Media Settings"
1388
+ msgstr "تنظیمات رسانه بادی پرس"
1389
+
1390
+ #: app/helper/BPMediaSettings.php:39
1391
+ msgid "Video"
1392
+ msgstr "ویدیو"
1393
+
1394
+ #: app/helper/BPMediaSettings.php:44
1395
+ msgid "Audio"
1396
+ msgstr "صوت"
1397
+
1398
+ #: app/main/includes/BPMediaActions.php:330
1399
+ msgid "Download"
1400
+ msgstr "دانلود"
1401
+
1402
+ #: app/admin/BPMediaAdmin.php:367
1403
+ msgid "Spread the Word"
1404
+ msgstr "گسترش کلام"
1405
+
1406
+ #: app/helper/BPMediaAdminWidget.php:29
1407
+ msgid "Argument missing. id is required."
1408
+ msgstr "برهان گم شده است . شماره ضروری است ."
languages/buddypress-media-fr_FR.po ADDED
@@ -0,0 +1,1399 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in French (France)
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:40+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "Joindre un média"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "Vue"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr "%1$s a posté une actualité dans le groupe %2$s"
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr "Pour utiliser BuddyPress Media, vous devez tout d'abord installer BuddyPress."
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr "<a href=\"%s\">Installer BuddyPress maintenant</a>"
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr "OU"
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr "Utilisez<a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\"> des packs -additionnels Premium</a> à partir de 9$"
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr "Info Débogage"
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr "La valeur du champ \"Nombre de média\" doit être numérique et supérieur à 0. "
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr "Résultat par défaut"
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr "Aucun"
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr "Info Débogage"
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr "Réparer le comptage de média"
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr "Autoriser les utilisateurs à modifier les critères sélectionnés par défaut par l'administrateur (<em>Recommandé</em>)"
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "Autres Réglages"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr "Recomptage"
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>Amis</strong>-Visible pour les amis de l'utilisateur"
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>Utilisateurs</strong>-Visible pour les utilisateurs inscrits"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>Publique</strong> - Visible par tout le monde"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>Privé</strong> - Visible seulement pour l'utilisateur"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "Téléchargement à partir du flux d' Activité"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr "Téléchargements à partir du flux d' Activité"
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr "Autoriser les téléchargements à partir de la page de flux d'Activité"
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr "Intégration aux Groupes"
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr "Autoriser les Médias dans les Groupes"
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "Afficher les Réglages"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "Nombre de média"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "Autoriser les Photos"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Utiliser comme couverture d'Album"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Ne plus utiliser comme couverture d'Album"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Réglages de Confidentialité "
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "Mettre à jour la Base de Donnée de BuddyPress Media"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Commencer"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>Privé</strong>, Visible uniquement par moi"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>Amis</strong>, Visible seulement pour mes amis"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr "Configurez les différents niveaux de Confidentialité par défaut pour votre média"
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "Ce(ou cette) %s est privé(e) "
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "Ce (ou cette) %1s est visible seulement pour %2s&rsquo;s amis"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "Ce (ou cette) %s est visible par les utilisateurs connectés, seulement"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "Le niveau de confidentialité par défaut de votre média à été mis à jour"
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+ "Veuillez configurer ce widget\n"
528
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a href=\"%s\" target=\"_blank\" \ttitle=\"Configurer BuddyPress Media Widget\">ici</a>."
529
+
530
+ #: app/main/profile/BPMediaAlbumScreen.php:300
531
+ msgid "to"
532
+ msgstr "à"
533
+
534
+ #: app/main/profile/BPMediaScreen.php:125
535
+ msgid "All %s"
536
+ msgstr "Tout %s"
537
+
538
+ #: app/main/BuddyPressMedia.php:547
539
+ msgid ""
540
+ "The BuddyPress version installed is an\n"
541
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
542
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
543
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
544
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
545
+ msgstr "La version de BuddyPress qui est installée est une ancienne version et n'est pas compatible, Veuillez mettre à jour BuddyPress afin de pouvoir utiliser le pluggin BuddyPress Media . <a class=\"alignright\" href=\"%1$s\">X</a>"
546
+
547
+ #: app/main/BuddyPressMedia.php:560
548
+ msgid ""
549
+ "You have not installed BuddyPress.\n"
550
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
551
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
552
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
553
+ msgstr ""
554
+ "Vous n'avez pas installé BuddyPress\n"
555
+ "Veuillez installer la dernère version de BuddyPress\n"
556
+ "afin d'utiliser BuddyPress Media\n"
557
+ "<a class=\"alignright\" href=\"%1$s\">X</a>"
558
+
559
+ #: app/admin/BPMediaAdmin.php:363
560
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
561
+ msgstr "J'utilise @buddypressmedia http://goo.gl/8Upmv sur %s"
562
+
563
+ #: app/admin/BPMediaAdmin.php:364
564
+ msgid "Add link to footer"
565
+ msgstr "Ajouter un lien au footer"
566
+
567
+ #: app/admin/BPMediaAdmin.php:365
568
+ msgid "Tweet"
569
+ msgstr "Tweeter"
570
+
571
+ #: app/admin/BPMediaAdmin.php:366
572
+ msgid "Rate on WordPress.org"
573
+ msgstr "Noter sur WordPress.org"
574
+
575
+ #: app/admin/BPMediaAdmin.php:377
576
+ msgid "USD"
577
+ msgstr "USD"
578
+
579
+ #: app/admin/BPMediaAdmin.php:407
580
+ msgid "Subscribe"
581
+ msgstr "S'inscrire"
582
+
583
+ #: app/admin/BPMediaAdmin.php:99
584
+ msgid "BuddyPress Media Convert Videos"
585
+ msgstr "Convertisseur vidéos BuddyPress Media"
586
+
587
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
588
+ msgid "Convert Videos"
589
+ msgstr "Convertir des Vidéos"
590
+
591
+ #: app/admin/BPMediaAdmin.php:182
592
+ msgid "By"
593
+ msgstr "Par"
594
+
595
+ #: app/admin/BPMediaAdmin.php:262
596
+ msgid "BuddyPress Media Covert Videos"
597
+ msgstr "BuddyPress Media convertit des vidéos"
598
+
599
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
600
+ msgid "Atleast one Media Type Must be selected"
601
+ msgstr "Au moins un type de média Doit être sélectionné"
602
+
603
+ #: app/helper/BPMediaSettings.php:305
604
+ msgid "Media Type"
605
+ msgstr "Type de média"
606
+
607
+ #: app/helper/BPMediaSettings.php:603
608
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
609
+ msgstr "BuddyPress Media 2.6 nécessite une mise à niveau de la base de donnée"
610
+
611
+ #: app/admin/BPMediaAdmin.php:91
612
+ msgid "BuddyPress Media Database Update"
613
+ msgstr "BuddyPress Media: Mise à niveau de la Base de données"
614
+
615
+ #: app/main/privacy/BPMediaPrivacy.php:121
616
+ msgid "<strong>Users</strong>, Visible to registered users"
617
+ msgstr "<strong>Utilisateurs</strong>, Visible par tout les utilisateurs"
618
+
619
+ #: app/main/privacy/BPMediaPrivacy.php:125
620
+ msgid "<strong>Public</strong>, Visible to the world"
621
+ msgstr "<strong>Publique</strong>, Visible par tout le monde"
622
+
623
+ #: app/helper/BPMediaSettings.php:172
624
+ msgid "Enable menu in WordPress admin bar"
625
+ msgstr "Afficher le menu dans la bar admin de WordPress"
626
+
627
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
628
+ msgid "Update Database"
629
+ msgstr "Mise à jour de la Base de données"
630
+
631
+ #: app/helper/BPMediaSettings.php:132
632
+ msgid "Download Button"
633
+ msgstr "Bouton de téléchargement"
634
+
635
+ #: app/helper/BPMediaSettings.php:135
636
+ msgid "Display download button under media"
637
+ msgstr "Afficher le bouton de téléchargement sous le média"
638
+
639
+ #: app/main/BuddyPressMedia.php:306
640
+ msgid "Privacy"
641
+ msgstr "Confidentialité"
642
+
643
+ #: app/helper/BPMediaSettings.php:140
644
+ msgid "Enable Privacy"
645
+ msgstr "Autoriser la Confidentialité"
646
+
647
+ #: app/helper/BPMediaSettings.php:143
648
+ msgid "Enable privacy"
649
+ msgstr "Autoriser la confidentialité"
650
+
651
+ #: app/helper/BPMediaSettings.php:161
652
+ msgid "User Override"
653
+ msgstr "Préférence Utilisateur"
654
+
655
+ #: app/helper/BPMediaSettings.php:155
656
+ msgid "Default Privacy"
657
+ msgstr "Confientialité par défault"
658
+
659
+ #: app/helper/BPMediaSettings.php:33
660
+ msgid "Enabled Media Types"
661
+ msgstr "Autoriser les Type de Média"
662
+
663
+ #: app/helper/BPMediaSettings.php:169
664
+ msgid "Admin bar menu"
665
+ msgstr "Menu de la bar administrateur"
666
+
667
+ #: app/helper/BPMediaSettings.php:318
668
+ msgid "Settings saved."
669
+ msgstr "Réglages sauvegardés"
670
+
671
+ #: app/main/profile/BPMediaTemplate.php:29
672
+ msgid "Wall Posts"
673
+ msgstr "Messages sur le mur"
674
+
675
+ #: app/main/profile/BPMediaTemplate.php:83
676
+ msgid "+ Create New Album"
677
+ msgstr "+ Créer un nouvel Album"
678
+
679
+ #: app/main/profile/BPMediaTemplate.php:90
680
+ msgid "Cancel"
681
+ msgstr "Annuler"
682
+
683
+ #: app/main/profile/BPMediaTemplate.php:213
684
+ msgid "Show More"
685
+ msgstr "Afficher plus"
686
+
687
+ #: app/main/profile/BPMediaTemplate.php:267
688
+ msgid "Select"
689
+ msgstr "Sélectionner"
690
+
691
+ #: app/main/profile/BPMediaTemplate.php:286
692
+ msgid "Add Media"
693
+ msgstr "Ajouter un Média"
694
+
695
+ #: app/main/includes/BPMediaFilters.php:158
696
+ msgid "Delete %s"
697
+ msgstr "Supprimer %s"
698
+
699
+ #: app/main/widgets/BPMediaWidget.php:197
700
+ msgid "Widget Type:"
701
+ msgstr "Type de Widget"
702
+
703
+ #: app/main/widgets/BPMediaWidget.php:210
704
+ msgid "Show All"
705
+ msgstr "Tout Afficher"
706
+
707
+ #: app/main/widgets/BPMediaWidget.php:213
708
+ msgid "Show Photos"
709
+ msgstr "Afficher les Photos"
710
+
711
+ #: app/main/widgets/BPMediaWidget.php:216
712
+ msgid "Show Music"
713
+ msgstr "Afficher les Musiques"
714
+
715
+ #: app/main/widgets/BPMediaWidget.php:220
716
+ msgid "Show Videos"
717
+ msgstr "Afficher les Vidéos"
718
+
719
+ #: app/main/widgets/BPMediaWidget.php:20
720
+ msgid "The most recent/popular media uploaded on your site"
721
+ msgstr "Le média le plus récent/populaire uploadé sur votre site"
722
+
723
+ #: app/main/widgets/BPMediaWidget.php:21
724
+ msgid "BuddyPress Media Widget"
725
+ msgstr "Le Widget BuddyPress Media"
726
+
727
+ #: app/main/widgets/BPMediaWidget.php:150
728
+ msgid "No "
729
+ msgstr "Non"
730
+
731
+ #: app/main/BuddyPressMedia.php:158
732
+ msgid "BuddyPress is not installed."
733
+ msgstr "BuddyPress n'est pas installé"
734
+
735
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
736
+ msgid "BuddyPress Media Addons"
737
+ msgstr "Extensions pour BuddyPress Media"
738
+
739
+ #: app/admin/BPMediaAdmin.php:88
740
+ msgid "BuddyPress Media Component"
741
+ msgstr "Composant de BuddyPress Media"
742
+
743
+ #: app/helper/BPMediaSupport.php:121
744
+ msgid "Additional Information"
745
+ msgstr "Information complémentaire"
746
+
747
+ #: app/helper/BPMediaSettings.php:286
748
+ msgid "Recount Success"
749
+ msgstr "Recomptage Réussi"
750
+
751
+ #: app/helper/BPMediaSettings.php:291
752
+ msgid "Recount Fail"
753
+ msgstr "Recomptage Echoué"
754
+
755
+ #: app/main/includes/BPMediaHostWordpress.php:170
756
+ msgid "MP4 file you have uploaded is corrupt."
757
+ msgstr "Le fichier MP4 que vous avez téléchargé est corrompu"
758
+
759
+ #: app/helper/BPMediaSupport.php:246
760
+ msgid "Thank you for your Feedback/Suggestion."
761
+ msgstr "Merci pour votre retour / suggestion"
762
+
763
+ #: app/helper/BPMediaSupport.php:248
764
+ msgid "Thank you for posting your support request."
765
+ msgstr "Merci d'avoir envoyé votre demande de support"
766
+
767
+ #: app/helper/BPMediaSupport.php:249
768
+ msgid "We will get back to you shortly."
769
+ msgstr "Nous reviendrons vers vous rapidement."
770
+
771
+ #: app/helper/BPMediaSupport.php:252
772
+ msgid "Your server failed to send an email."
773
+ msgstr "Votre serveur n'a pas envoyé d'email"
774
+
775
+ #: app/helper/BPMediaSupport.php:253
776
+ msgid "Kindly contact your server support to fix this."
777
+ msgstr "Veuillez contacter le support de votre serveur pour régler ce problème"
778
+
779
+ #: app/helper/BPMediaSupport.php:254
780
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
781
+ msgstr "Vous pouvez également faire une demande de support <a href=\"%s\">ici</a>"
782
+
783
+ #: app/helper/BPMediaSupport.php:95
784
+ msgid "Name"
785
+ msgstr "Nom"
786
+
787
+ #: app/helper/BPMediaSupport.php:98
788
+ msgid "Email"
789
+ msgstr "Email"
790
+
791
+ #: app/helper/BPMediaSupport.php:101
792
+ msgid "Website"
793
+ msgstr "Site web"
794
+
795
+ #: app/helper/BPMediaSupport.php:104
796
+ msgid "Phone"
797
+ msgstr "Téléphone"
798
+
799
+ #: app/helper/BPMediaSupport.php:107
800
+ msgid "Subject"
801
+ msgstr "Sujet"
802
+
803
+ #: app/helper/BPMediaSupport.php:110
804
+ msgid "Details"
805
+ msgstr "Détails"
806
+
807
+ #: app/helper/BPMediaSupport.php:161
808
+ msgid "BuddyPress Media Premium Support Request from"
809
+ msgstr "Demande de Support Premium pour BuddyPress Media "
810
+
811
+ #: app/helper/BPMediaSupport.php:164
812
+ msgid "BuddyPress Media New Feature Request from"
813
+ msgstr "Demande d'une nouvelle Fonctionnalité pour BuddyPress Media "
814
+
815
+ #: app/helper/BPMediaSupport.php:167
816
+ msgid "BuddyPress Media Bug Report from"
817
+ msgstr "Rapport de Bug pour BuddyPress Media "
818
+
819
+ #: app/helper/BPMediaSupport.php:170
820
+ msgid "BuddyPress Media Contact from"
821
+ msgstr "Demande de Contact pour BuddyPress Media"
822
+
823
+ #: app/helper/BPMediaSettings.php:358
824
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
825
+ msgstr "Veulliez fournir une valeur au paramètre \"option\" dans l'expression (requis). Insérer l'expression dans add_settings_field avec le format suivant: array( 'option' => 'nom_option')"
826
+
827
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
828
+ #: app/helper/BPMediaSettings.php:531
829
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
830
+ msgstr "Veulliez fournir une valeur au paramètre \"option\" dans l'expression (requis). Insérer l'expression dans add_settings_field avec le format suivant: array( 'option' => 'nom_option')"
831
+
832
+ #: app/main/includes/BPMediaActions.php:874
833
+ msgid "%1$s created an album %2$s"
834
+ msgstr "%1$s a créé un album %2$s"
835
+
836
+ #: app/main/BPMediaComponent.php:262
837
+ msgid "All Albums"
838
+ msgstr "Tous les albums"
839
+
840
+ #: app/main/BPMediaComponent.php:263
841
+ msgid "View Album"
842
+ msgstr "Voir l'album"
843
+
844
+ #: app/main/BPMediaComponent.php:264
845
+ msgid "Search Albums"
846
+ msgstr "Rechercher dans les albums"
847
+
848
+ #: app/main/BPMediaComponent.php:265
849
+ msgid "No album found"
850
+ msgstr "Aucun album retrouvé"
851
+
852
+ #: app/main/BPMediaComponent.php:266
853
+ msgid "No album found in Trash"
854
+ msgstr "Aucun album retrouvé dans la poubelle"
855
+
856
+ #: app/main/BPMediaComponent.php:300
857
+ msgid "Add New Media"
858
+ msgstr "Ajouter un média"
859
+
860
+ #: app/main/BPMediaComponent.php:308
861
+ msgid "BuddyPress Media's Media Files"
862
+ msgstr "Fichiers média de BuddyPress Media"
863
+
864
+ #: app/main/includes/BPMediaFunction.php:229
865
+ msgid "%1$s added new media in album %2$s"
866
+ msgstr "%1$s nouveaux médias ajoutés dans l'album %2$s"
867
+
868
+ #: app/importers/BPMediaAlbumimporter.php:81
869
+ msgid "Users"
870
+ msgstr "Utilisateurs"
871
+
872
+ #: app/main/includes/BPMediaFilters.php:410
873
+ msgid "Total Photos"
874
+ msgstr "Nombre total de photos"
875
+
876
+ #: app/main/includes/BPMediaFilters.php:411
877
+ msgid "Total Videos"
878
+ msgstr "Nombre total de vidéos"
879
+
880
+ #: app/main/includes/BPMediaFilters.php:412
881
+ msgid "Total Audio"
882
+ msgstr "Nombre total de fichiers audio"
883
+
884
+ #: app/main/includes/BPMediaFilters.php:413
885
+ msgid "Total Albums"
886
+ msgstr "Nombre total d'albums"
887
+
888
+ #: app/helper/BPMediaSettings.php:118
889
+ msgid "Groups"
890
+ msgstr "Groupes"
891
+
892
+ #: app/main/includes/BPMediaActions.php:348
893
+ msgid "Edit Media"
894
+ msgstr "Editer"
895
+
896
+ #: app/main/profile/BPMediaAlbumScreen.php:246
897
+ msgid "Edit"
898
+ msgstr "Editer"
899
+
900
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
901
+ #: app/main/profile/BPMediaTemplate.php:282
902
+ msgid "Create"
903
+ msgstr "Créer"
904
+
905
+ #: app/main/BPMediaComponent.php:260
906
+ #: app/main/profile/BPMediaAlbumScreen.php:246
907
+ msgid "Edit Album"
908
+ msgstr "Editer l'album"
909
+
910
+ #: app/main/BPMediaComponent.php:261
911
+ msgid "New Album"
912
+ msgstr "Créer album"
913
+
914
+ #: app/helper/BPMediaSupport.php:126
915
+ msgid "Your WP Admin Login:"
916
+ msgstr "Votre login admin WP :"
917
+
918
+ #: app/helper/BPMediaSupport.php:129
919
+ msgid "Your WP Admin password:"
920
+ msgstr "Votre mot de passe admin WP :"
921
+
922
+ #: app/helper/BPMediaSupport.php:132
923
+ msgid "Your SSH / FTP host:"
924
+ msgstr " Votre hôte SSH / FTP"
925
+
926
+ #: app/helper/BPMediaSupport.php:135
927
+ msgid "Your SSH / FTP login:"
928
+ msgstr "Votre identifiant SSH / FTP"
929
+
930
+ #: app/helper/BPMediaSupport.php:138
931
+ msgid "Your SSH / FTP password:"
932
+ msgstr "Votre Mot de Passe SSH / FTP"
933
+
934
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
935
+ msgid "Media Title"
936
+ msgstr "Titre du média"
937
+
938
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
939
+ msgid "Media Description"
940
+ msgstr "Description du média"
941
+
942
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
943
+ msgid "Select Media File"
944
+ msgstr "Sélectionner les fichiers médias"
945
+
946
+ #: app/main/BPMediaComponent.php:60
947
+ msgid "Search Media..."
948
+ msgstr "Rechercher un média ..."
949
+
950
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
951
+ msgid "BuddyPress Media Support"
952
+ msgstr "Support BuddyPress Media"
953
+
954
+ #: app/helper/BPMediaSupport.php:81
955
+ msgid "Submit a Bug Report"
956
+ msgstr "Soumettre un rapport de Bug"
957
+
958
+ #: app/helper/BPMediaSupport.php:84
959
+ msgid "Submit a New Feature Request"
960
+ msgstr "Soumettre une demande de nouvelle fonctionnalité"
961
+
962
+ #: app/helper/BPMediaSupport.php:87
963
+ msgid "Submit a Premium Support Request"
964
+ msgstr "Soumettre une demande de Support Premium"
965
+
966
+ #: app/main/includes/BPMediaHostWordpress.php:615
967
+ msgid "Post"
968
+ msgstr "Article"
969
+
970
+ #: app/main/includes/BPMediaHostWordpress.php:615
971
+ msgid "or press esc to cancel."
972
+ msgstr "ou appuyer sur ESC pour annuler"
973
+
974
+ #: app/main/profile/BPMediaAlbumScreen.php:252
975
+ msgid "Delete"
976
+ msgstr "Supprimer"
977
+
978
+ #: app/main/includes/BPMediaHostWordpress.php:59
979
+ msgid "Sorry, the requested media does not exist."
980
+ msgstr "Désolé, Le média demandé n'existe pas"
981
+
982
+ #: app/main/includes/BPMediaHostWordpress.php:137
983
+ msgid "Error Uploading File"
984
+ msgstr "Erreur lors du chargement du fichier"
985
+
986
+ #: app/main/includes/BPMediaHostWordpress.php:177
987
+ #: app/main/includes/BPMediaHostWordpress.php:182
988
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
989
+ msgstr "Le fichier MP4 que vous avez chargé utilise un codec vidéo incompatible. Le codec vidéo compatible est le H.264"
990
+
991
+ #: app/main/includes/BPMediaHostWordpress.php:187
992
+ msgid "The MP4 file you have uploaded is not a video file."
993
+ msgstr "Le fichier MP4 que vous avez chargé n'est pas un fichier Vidéo"
994
+
995
+ #: app/main/includes/BPMediaHostWordpress.php:198
996
+ msgid "MP3 file you have uploaded is currupt."
997
+ msgstr "Le fichier MP3 que vous avez chargé est corrompu"
998
+
999
+ #: app/main/includes/BPMediaHostWordpress.php:205
1000
+ #: app/main/includes/BPMediaHostWordpress.php:210
1001
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1002
+ msgstr "Le fichier MP3 que vous avez chargé utilise un format Audio non supporté. Le format Audio supporté est MP3"
1003
+
1004
+ #: app/main/includes/BPMediaHostWordpress.php:215
1005
+ msgid "The MP3 file you have uploaded is not an audio file."
1006
+ msgstr "Le fichier MP3 que vous avez chargé n'est pas un fichier Audio"
1007
+
1008
+ #: app/main/includes/BPMediaHostWordpress.php:227
1009
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1010
+ msgstr "Le fichier média que vous avez tenté de charger n'est pas supporté. Les fichiers médias autorisés sont .jpg, .png, .gif, .mp3, .mov et .mp4."
1011
+
1012
+ #: app/main/includes/BPMediaHostWordpress.php:236
1013
+ msgid "Error creating attachment for the media file, please try again"
1014
+ msgstr "Une erreur est survenue lors de la création du lien pour le fichier multimédia, Veuillez essayer de nouveau"
1015
+
1016
+ #: app/main/includes/BPMediaHostWordpress.php:346
1017
+ msgid "%s uploaded a media."
1018
+ msgstr "%s à mis en ligne un fichier multimédia"
1019
+
1020
+ #: app/main/includes/BPMediaHostWordpress.php:367
1021
+ msgid "Uploaded by "
1022
+ msgstr "Téléchargé par "
1023
+
1024
+ #: app/main/includes/BPMediaHostWordpress.php:590
1025
+ msgid "Comment <span>%s</span>"
1026
+ msgstr "Commentaire <span>%s</span>"
1027
+
1028
+ #: app/main/includes/BPMediaHostWordpress.php:594
1029
+ msgid "Favorite"
1030
+ msgstr "Favori"
1031
+
1032
+ #: app/main/includes/BPMediaHostWordpress.php:596
1033
+ msgid "Remove Favorite"
1034
+ msgstr "Supprimer des Favoris"
1035
+
1036
+ #: app/main/widgets/BPMediaWidget.php:203
1037
+ msgid "Title:"
1038
+ msgstr "Titre"
1039
+
1040
+ #: app/main/widgets/BPMediaWidget.php:206
1041
+ msgid "Number of posts to show:"
1042
+ msgstr "Nombre d'articles affichés:"
1043
+
1044
+ #: app/main/widgets/BPMediaWidget.php:199
1045
+ msgid "Recent Media"
1046
+ msgstr "Fichier multimédia Récent"
1047
+
1048
+ #: app/main/widgets/BPMediaWidget.php:72
1049
+ msgid "All"
1050
+ msgstr "Tout"
1051
+
1052
+ #: app/main/group/BPMediaGroupsExtension.php:41
1053
+ #: app/main/group/BPMediaGroupsExtension.php:88
1054
+ msgid "Who can create Albums in this group?"
1055
+ msgstr "Qui peut créer des Albums dans ce groupe?"
1056
+
1057
+ #: app/main/group/BPMediaGroupsExtension.php:45
1058
+ #: app/main/group/BPMediaGroupsExtension.php:92
1059
+ msgid "All Group Members"
1060
+ msgstr "Tous les Membres du Groupe"
1061
+
1062
+ #: app/main/group/BPMediaGroupsExtension.php:49
1063
+ #: app/main/group/BPMediaGroupsExtension.php:96
1064
+ msgid "Group Admins and Mods only"
1065
+ msgstr "Seulement les Admins et les Modérateurs"
1066
+
1067
+ #: app/main/group/BPMediaGroupsExtension.php:53
1068
+ #: app/main/group/BPMediaGroupsExtension.php:100
1069
+ msgid "Group Admin only"
1070
+ msgstr "Seulement les Admins de groupe"
1071
+
1072
+ #: app/main/group/BPMediaGroupsExtension.php:104
1073
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1074
+ msgid "Save Changes"
1075
+ msgstr "Enregistrer les changements"
1076
+
1077
+ #: app/main/group/BPMediaGroupsExtension.php:130
1078
+ msgid "There was an error saving, please try again"
1079
+ msgstr "Une erreur est survenue lors de l'enregistrement, Veuillez réessayer"
1080
+
1081
+ #: app/main/group/BPMediaGroupsExtension.php:132
1082
+ msgid "Settings saved successfully"
1083
+ msgstr "Enregistrement réussi"
1084
+
1085
+ #: app/main/group/BPMediaGroupsExtension.php:153
1086
+ msgid ""
1087
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1088
+ "\t home screen."
1089
+ msgstr "Vous pouvez afficher un petit extrait d'information provenant de votre extension de groupe ici. Il sera affiché sur la page d'Accueil du groupe"
1090
+
1091
+ #: app/main/widgets/BPMediaWidget.php:200
1092
+ msgid "Popular Media"
1093
+ msgstr "Fichier multimédia Populaire"
1094
+
1095
+ #: app/main/profile/BPMediaScreen.php:396
1096
+ msgid "Media deleted successfully"
1097
+ msgstr "Suppression du fichier multimédia réussie"
1098
+
1099
+ #: app/main/profile/BPMediaTemplate.php:98
1100
+ #: app/main/profile/BPMediaUploadScreen.php:33
1101
+ msgid "Upload Media"
1102
+ msgstr "Téléchargez des médias"
1103
+
1104
+ #: app/main/profile/BPMediaUploadScreen.php:71
1105
+ msgid "You are not allowed to be here"
1106
+ msgstr "Vous n'êtes pas autorisé sur cet espace"
1107
+
1108
+ #: app/main/profile/BPMediaUploadScreen.php:98
1109
+ #: app/main/profile/BPMediaUploadScreen.php:122
1110
+ msgid "File uploaded is not supported"
1111
+ msgstr "Le fichier sauvegardé n'est pas supporté"
1112
+
1113
+ #: app/main/profile/BPMediaUploadScreen.php:105
1114
+ msgid "Image uploads are disabled"
1115
+ msgstr "Les téléchargements d'image sont désactivés"
1116
+
1117
+ #: app/main/profile/BPMediaUploadScreen.php:111
1118
+ msgid "Video uploads are disabled"
1119
+ msgstr "Les téléchargements de Vidéos sont désactivés"
1120
+
1121
+ #: app/main/profile/BPMediaUploadScreen.php:117
1122
+ msgid "Audio uploads are disabled"
1123
+ msgstr "Les téléchargements de fichiers Audio sont désactivés"
1124
+
1125
+ #: app/main/profile/BPMediaUploadScreen.php:135
1126
+ msgid "Upload Successful"
1127
+ msgstr "Chargement réussi"
1128
+
1129
+ #: app/main/profile/BPMediaUploadScreen.php:140
1130
+ msgid "You did not specified a file to upload"
1131
+ msgstr "Vous n'avez pas choisi de fichier à télécharger"
1132
+
1133
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1134
+ msgid "Sorry, no media items were found in this album."
1135
+ msgstr "Désolé, Aucun fichier multimédia n'a été trouvé dans cet album."
1136
+
1137
+ #: app/main/profile/BPMediaAlbum.php:74
1138
+ msgid "Sorry, the requested album does not exist."
1139
+ msgstr "Désolé, l'Album demandé n'existe pas."
1140
+
1141
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1142
+ msgid "Sorry, the requested media does not belong to the group"
1143
+ msgstr "Désolé, Le fichier multimédia demandé n'appartient pas au groupe."
1144
+
1145
+ #: app/main/BPMediaGroupLoader.php:252
1146
+ msgid "Media Settings"
1147
+ msgstr "Réglages des fichiers multimédia"
1148
+
1149
+ #: app/main/group/BPMediaGroupsExtension.php:40
1150
+ #: app/main/group/BPMediaGroupsExtension.php:87
1151
+ msgid "Album Creation Control"
1152
+ msgstr "Contrôle des création d'Album"
1153
+
1154
+ #: app/main/profile/BPMediaScreen.php:114
1155
+ #: app/main/profile/BPMediaScreen.php:374
1156
+ msgid "The requested url does not exist"
1157
+ msgstr "L'url demandée n'existe pas"
1158
+
1159
+ #: app/main/profile/BPMediaScreen.php:196
1160
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1161
+ msgid "Sorry, no %s were found."
1162
+ msgstr "Désolé, aucun %s n'a été trouvé"
1163
+
1164
+ #: app/main/profile/BPMediaScreen.php:307
1165
+ msgid "Edit %s"
1166
+ msgstr "Editer %s"
1167
+
1168
+ #: app/main/profile/BPMediaScreen.php:328
1169
+ msgid "%s Title"
1170
+ msgstr "%s Titre"
1171
+
1172
+ #: app/main/profile/BPMediaScreen.php:334
1173
+ msgid "%s Description"
1174
+ msgstr "%s Description"
1175
+
1176
+ #: app/main/profile/BPMediaScreen.php:342
1177
+ msgid "Update"
1178
+ msgstr "Mise à Jour"
1179
+
1180
+ #: app/main/profile/BPMediaScreen.php:343
1181
+ msgid "Back to Media File"
1182
+ msgstr "Retour vers le fichier multimédia"
1183
+
1184
+ #: app/main/profile/BPMediaScreen.php:344
1185
+ msgid "Back to Media"
1186
+ msgstr "Retour vers Média"
1187
+
1188
+ #: app/main/profile/BPMediaScreen.php:367
1189
+ msgid "You do not have access to this page."
1190
+ msgstr "Vous n'avez pas accès à cette page"
1191
+
1192
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1193
+ #: app/main/BuddyPressMedia.php:327
1194
+ msgid "Albums"
1195
+ msgstr "Albums"
1196
+
1197
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1198
+ msgid "Album"
1199
+ msgstr "Album"
1200
+
1201
+ #: app/main/BuddyPressMedia.php:333
1202
+ msgid "Upload"
1203
+ msgstr "Téléchargement"
1204
+
1205
+ #: app/main/profile/BPMediaTemplate.php:246
1206
+ msgid "Select Album"
1207
+ msgstr "Sélectionnez un Album"
1208
+
1209
+ #: app/main/profile/BPMediaTemplate.php:247
1210
+ #: app/main/profile/BPMediaTemplate.php:275
1211
+ msgid "x"
1212
+ msgstr "x"
1213
+
1214
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1215
+ #: app/main/profile/BPMediaTemplate.php:274
1216
+ msgid "Create Album"
1217
+ msgstr "Créer un Album"
1218
+
1219
+ #: app/main/profile/BPMediaTemplate.php:278
1220
+ msgid "Album Name"
1221
+ msgstr "Nom de l'Album"
1222
+
1223
+ #: app/main/profile/BPMediaTemplate.php:96
1224
+ msgid "Drop files here"
1225
+ msgstr "Glissez les fichiers ici"
1226
+
1227
+ #: app/main/profile/BPMediaTemplate.php:97
1228
+ msgid " or "
1229
+ msgstr "ou"
1230
+
1231
+ #: app/admin/BPMediaAdmin.php:410
1232
+ msgid "Latest News"
1233
+ msgstr "Dernières nouvelles"
1234
+
1235
+ #: app/helper/BPMediaSettings.php:34
1236
+ msgid "Photos"
1237
+ msgstr "Photos"
1238
+
1239
+ #: app/main/BuddyPressMedia.php:312
1240
+ msgid "Photo"
1241
+ msgstr "Photo"
1242
+
1243
+ #: app/main/BuddyPressMedia.php:315
1244
+ msgid "Videos"
1245
+ msgstr "Vidéos"
1246
+
1247
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1248
+ msgid "Music"
1249
+ msgstr "Musique"
1250
+
1251
+ #: app/admin/BPMediaAdmin.php:389
1252
+ msgid "Donate"
1253
+ msgstr "Faites un don"
1254
+
1255
+ #: app/admin/BPMediaAdmin.php:405
1256
+ msgid "RSS Feed"
1257
+ msgstr "Flux RSS"
1258
+
1259
+ #: app/admin/BPMediaAdmin.php:403
1260
+ msgid "Facebook"
1261
+ msgstr "Facebook"
1262
+
1263
+ #: app/admin/BPMediaAdmin.php:404
1264
+ msgid "Follow us on Twitter"
1265
+ msgstr "Suivez-nous sur Twitter"
1266
+
1267
+ #: app/admin/BPMediaAdmin.php:404
1268
+ msgid "Twitter"
1269
+ msgstr "Twitter"
1270
+
1271
+ #: app/admin/BPMediaAdmin.php:405
1272
+ msgid "Subscribe to our feeds"
1273
+ msgstr "Souscrivez à notre Flux d'actualité"
1274
+
1275
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1276
+ msgid "Addons"
1277
+ msgstr "Packs Additionnels"
1278
+
1279
+ #: app/admin/BPMediaAdmin.php:97
1280
+ msgid "Support "
1281
+ msgstr "Support"
1282
+
1283
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1284
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1285
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1286
+ #: app/main/BuddyPressMedia.php:304
1287
+ msgid "Media"
1288
+ msgstr "Media"
1289
+
1290
+ #: app/helper/BPMediaSettings.php:184
1291
+ msgid "Support"
1292
+ msgstr "Support"
1293
+
1294
+ #: app/admin/BPMediaAdmin.php:182
1295
+ msgid "Empowering The Web With WordPress"
1296
+ msgstr "Donnez du pouvoir au Web avec WordPress"
1297
+
1298
+ #: app/admin/BPMediaAdmin.php:403
1299
+ msgid "Become a fan on Facebook"
1300
+ msgstr "Devenez un Fan sur Facebook"
1301
+
1302
+ #: app/helper/BPMediaSettings.php:182
1303
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1304
+ msgstr "Extensions BuddyPress Media pour la conversion de fichiers Audio / Vidéo"
1305
+
1306
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1307
+ msgid "Recounting of media files done successfully"
1308
+ msgstr "Le recomptage des fichiers multimédias réussi"
1309
+
1310
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1311
+ msgid "Recounting Failed"
1312
+ msgstr "Le Recomptage a échoué"
1313
+
1314
+ #: app/helper/BPMediaSettings.php:405
1315
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1316
+ msgstr "Vous devez obligatoirement cochez au moins une option \"radio\" sinon utilisez les checbox à la place"
1317
+
1318
+ #: app/helper/BPMediaSettings.php:533
1319
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1320
+ msgstr "Veuillez fournir différentes valeurs afin d'allonger la liste. Format : array( 'value' => 'option' )"
1321
+
1322
+ #: app/helper/BPMediaAddon.php:49
1323
+ msgid "BuddyPress-Media Kaltura Add-on"
1324
+ msgstr "Extension BuddyPress-Media Kaltura "
1325
+
1326
+ #: app/helper/BPMediaAddon.php:52
1327
+ msgid "Add support for more video formats using Kaltura video solution."
1328
+ msgstr "Gérez plus de formats de fichiers Vidéos en utilisant l'extension Kaltura vidéo"
1329
+
1330
+ #: app/helper/BPMediaAddon.php:53
1331
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1332
+ msgstr "Fonctionne avec Kaltura.com, Hébergement dédié Kaltura-CE et Kaltura-on-premise"
1333
+
1334
+ #: app/helper/BPMediaAddon.php:59
1335
+ msgid "BuddyPress-Media FFMPEG Add-on"
1336
+ msgstr "Extension BuddyPress-Media FFMPEG"
1337
+
1338
+ #: app/helper/BPMediaAddon.php:62
1339
+ msgid "Add supports for more audio & video formats using open-source media-node."
1340
+ msgstr "Gérez plus de formats de fichiers Audio et Vidéo en utilisant le logiciel open source media-node"
1341
+
1342
+ #: app/helper/BPMediaAddon.php:63
1343
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1344
+ msgstr "Media node est fourni avec un assistant d'installation pour Ubuntu/Debian"
1345
+
1346
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1347
+ msgid "Buy Now"
1348
+ msgstr "Acheter Maintenant"
1349
+
1350
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1351
+ msgid "Live Demo"
1352
+ msgstr "Démo live"
1353
+
1354
+ #: app/main/group/BPMediaGroupAction.php:124
1355
+ #: app/main/includes/BPMediaHostWordpress.php:742
1356
+ msgid "%1$s added a %2$s"
1357
+ msgstr "%1$s a ajouté un(e) %2$s"
1358
+
1359
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1360
+ #: app/admin/BPMediaAdmin.php:213
1361
+ msgid "BuddyPress Media"
1362
+ msgstr "BuddyPress Media"
1363
+
1364
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1365
+ #: app/main/BuddyPressMedia.php:443
1366
+ msgid "Settings"
1367
+ msgstr "Réglages"
1368
+
1369
+ #: app/helper/BPMediaFeed.php:43
1370
+ msgid "No items"
1371
+ msgstr "Aucun article"
1372
+
1373
+ #: app/helper/BPMediaFeed.php:49
1374
+ msgid "Posted "
1375
+ msgstr "Posté"
1376
+
1377
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1378
+ msgid "BuddyPress Media Settings"
1379
+ msgstr "Réglages BuddyPress Media"
1380
+
1381
+ #: app/helper/BPMediaSettings.php:39
1382
+ msgid "Video"
1383
+ msgstr "Vidéo"
1384
+
1385
+ #: app/helper/BPMediaSettings.php:44
1386
+ msgid "Audio"
1387
+ msgstr "Audio"
1388
+
1389
+ #: app/main/includes/BPMediaActions.php:330
1390
+ msgid "Download"
1391
+ msgstr "Téléchargement"
1392
+
1393
+ #: app/admin/BPMediaAdmin.php:367
1394
+ msgid "Spread the Word"
1395
+ msgstr "Parlez en"
1396
+
1397
+ #: app/helper/BPMediaAdminWidget.php:29
1398
+ msgid "Argument missing. id is required."
1399
+ msgstr "Argument manquant. L'id est requis"
languages/buddypress-media-it_IT.po ADDED
@@ -0,0 +1,1396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Italian
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:30:57+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr ""
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr ""
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr ""
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr ""
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr ""
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr ""
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr ""
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr ""
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr ""
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr ""
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr ""
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr ""
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr ""
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr ""
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr ""
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr ""
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr ""
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Seleziona come copertina Album"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Deseleziona come copertina Album"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Impostazioni Privacy"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "Aggiorna il Database di BuddyPress Media"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Inizio"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>Privato</strong>, Visibile solo da me"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>Amici</strong>, Visibile ai miei amici"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr ""
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "Questo %s è privato"
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "Questo %1s è visibile solo a %2s&rsquo;s amici"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "Questo %s è visibile solo agli utenti registrati"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr ""
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr "a"
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr "Tutti %s"
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tInstalla l'ultima versione di BuddyPress\n"
553
+ " →\t→\t→\t→\t→\t→\t→\t→\t→\tper usare BuddyPress Media plugin.\n"
554
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
555
+
556
+ #: app/admin/BPMediaAdmin.php:363
557
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
558
+ msgstr ""
559
+
560
+ #: app/admin/BPMediaAdmin.php:364
561
+ msgid "Add link to footer"
562
+ msgstr "Aggiungi link al footer"
563
+
564
+ #: app/admin/BPMediaAdmin.php:365
565
+ msgid "Tweet"
566
+ msgstr ""
567
+
568
+ #: app/admin/BPMediaAdmin.php:366
569
+ msgid "Rate on WordPress.org"
570
+ msgstr ""
571
+
572
+ #: app/admin/BPMediaAdmin.php:377
573
+ msgid "USD"
574
+ msgstr ""
575
+
576
+ #: app/admin/BPMediaAdmin.php:407
577
+ msgid "Subscribe"
578
+ msgstr "Sottoscrivi"
579
+
580
+ #: app/admin/BPMediaAdmin.php:99
581
+ msgid "BuddyPress Media Convert Videos"
582
+ msgstr ""
583
+
584
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
585
+ msgid "Convert Videos"
586
+ msgstr "Converti Video"
587
+
588
+ #: app/admin/BPMediaAdmin.php:182
589
+ msgid "By"
590
+ msgstr "Da"
591
+
592
+ #: app/admin/BPMediaAdmin.php:262
593
+ msgid "BuddyPress Media Covert Videos"
594
+ msgstr ""
595
+
596
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
597
+ msgid "Atleast one Media Type Must be selected"
598
+ msgstr ""
599
+
600
+ #: app/helper/BPMediaSettings.php:305
601
+ msgid "Media Type"
602
+ msgstr ""
603
+
604
+ #: app/helper/BPMediaSettings.php:603
605
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
606
+ msgstr ""
607
+
608
+ #: app/admin/BPMediaAdmin.php:91
609
+ msgid "BuddyPress Media Database Update"
610
+ msgstr ""
611
+
612
+ #: app/main/privacy/BPMediaPrivacy.php:121
613
+ msgid "<strong>Users</strong>, Visible to registered users"
614
+ msgstr ""
615
+
616
+ #: app/main/privacy/BPMediaPrivacy.php:125
617
+ msgid "<strong>Public</strong>, Visible to the world"
618
+ msgstr ""
619
+
620
+ #: app/helper/BPMediaSettings.php:172
621
+ msgid "Enable menu in WordPress admin bar"
622
+ msgstr ""
623
+
624
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
625
+ msgid "Update Database"
626
+ msgstr ""
627
+
628
+ #: app/helper/BPMediaSettings.php:132
629
+ msgid "Download Button"
630
+ msgstr ""
631
+
632
+ #: app/helper/BPMediaSettings.php:135
633
+ msgid "Display download button under media"
634
+ msgstr ""
635
+
636
+ #: app/main/BuddyPressMedia.php:306
637
+ msgid "Privacy"
638
+ msgstr ""
639
+
640
+ #: app/helper/BPMediaSettings.php:140
641
+ msgid "Enable Privacy"
642
+ msgstr ""
643
+
644
+ #: app/helper/BPMediaSettings.php:143
645
+ msgid "Enable privacy"
646
+ msgstr ""
647
+
648
+ #: app/helper/BPMediaSettings.php:161
649
+ msgid "User Override"
650
+ msgstr ""
651
+
652
+ #: app/helper/BPMediaSettings.php:155
653
+ msgid "Default Privacy"
654
+ msgstr ""
655
+
656
+ #: app/helper/BPMediaSettings.php:33
657
+ msgid "Enabled Media Types"
658
+ msgstr ""
659
+
660
+ #: app/helper/BPMediaSettings.php:169
661
+ msgid "Admin bar menu"
662
+ msgstr ""
663
+
664
+ #: app/helper/BPMediaSettings.php:318
665
+ msgid "Settings saved."
666
+ msgstr "Impostazioni salvate."
667
+
668
+ #: app/main/profile/BPMediaTemplate.php:29
669
+ msgid "Wall Posts"
670
+ msgstr "Attività"
671
+
672
+ #: app/main/profile/BPMediaTemplate.php:83
673
+ msgid "+ Create New Album"
674
+ msgstr "+ Crea Nuovo Album"
675
+
676
+ #: app/main/profile/BPMediaTemplate.php:90
677
+ msgid "Cancel"
678
+ msgstr "Cancella"
679
+
680
+ #: app/main/profile/BPMediaTemplate.php:213
681
+ msgid "Show More"
682
+ msgstr "Mostra Altro"
683
+
684
+ #: app/main/profile/BPMediaTemplate.php:267
685
+ msgid "Select"
686
+ msgstr "Seleziona"
687
+
688
+ #: app/main/profile/BPMediaTemplate.php:286
689
+ msgid "Add Media"
690
+ msgstr "Aggiungi Media"
691
+
692
+ #: app/main/includes/BPMediaFilters.php:158
693
+ msgid "Delete %s"
694
+ msgstr "Cancellare %s"
695
+
696
+ #: app/main/widgets/BPMediaWidget.php:197
697
+ msgid "Widget Type:"
698
+ msgstr ""
699
+
700
+ #: app/main/widgets/BPMediaWidget.php:210
701
+ msgid "Show All"
702
+ msgstr "Mostra tutto"
703
+
704
+ #: app/main/widgets/BPMediaWidget.php:213
705
+ msgid "Show Photos"
706
+ msgstr "Mostra foto"
707
+
708
+ #: app/main/widgets/BPMediaWidget.php:216
709
+ msgid "Show Music"
710
+ msgstr "Mostra musica"
711
+
712
+ #: app/main/widgets/BPMediaWidget.php:220
713
+ msgid "Show Videos"
714
+ msgstr "Mostra video"
715
+
716
+ #: app/main/widgets/BPMediaWidget.php:20
717
+ msgid "The most recent/popular media uploaded on your site"
718
+ msgstr "Il più recente/popolare upload sul tuo sito"
719
+
720
+ #: app/main/widgets/BPMediaWidget.php:21
721
+ msgid "BuddyPress Media Widget"
722
+ msgstr ""
723
+
724
+ #: app/main/widgets/BPMediaWidget.php:150
725
+ msgid "No "
726
+ msgstr "No "
727
+
728
+ #: app/main/BuddyPressMedia.php:158
729
+ msgid "BuddyPress is not installed."
730
+ msgstr "BuddyPress non è installato."
731
+
732
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
733
+ msgid "BuddyPress Media Addons"
734
+ msgstr ""
735
+
736
+ #: app/admin/BPMediaAdmin.php:88
737
+ msgid "BuddyPress Media Component"
738
+ msgstr ""
739
+
740
+ #: app/helper/BPMediaSupport.php:121
741
+ msgid "Additional Information"
742
+ msgstr "Informazioni aggiuntive"
743
+
744
+ #: app/helper/BPMediaSettings.php:286
745
+ msgid "Recount Success"
746
+ msgstr ""
747
+
748
+ #: app/helper/BPMediaSettings.php:291
749
+ msgid "Recount Fail"
750
+ msgstr ""
751
+
752
+ #: app/main/includes/BPMediaHostWordpress.php:170
753
+ msgid "MP4 file you have uploaded is corrupt."
754
+ msgstr ""
755
+
756
+ #: app/helper/BPMediaSupport.php:246
757
+ msgid "Thank you for your Feedback/Suggestion."
758
+ msgstr ""
759
+
760
+ #: app/helper/BPMediaSupport.php:248
761
+ msgid "Thank you for posting your support request."
762
+ msgstr ""
763
+
764
+ #: app/helper/BPMediaSupport.php:249
765
+ msgid "We will get back to you shortly."
766
+ msgstr ""
767
+
768
+ #: app/helper/BPMediaSupport.php:252
769
+ msgid "Your server failed to send an email."
770
+ msgstr ""
771
+
772
+ #: app/helper/BPMediaSupport.php:253
773
+ msgid "Kindly contact your server support to fix this."
774
+ msgstr ""
775
+
776
+ #: app/helper/BPMediaSupport.php:254
777
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
778
+ msgstr ""
779
+
780
+ #: app/helper/BPMediaSupport.php:95
781
+ msgid "Name"
782
+ msgstr "Nome"
783
+
784
+ #: app/helper/BPMediaSupport.php:98
785
+ msgid "Email"
786
+ msgstr "Email"
787
+
788
+ #: app/helper/BPMediaSupport.php:101
789
+ msgid "Website"
790
+ msgstr "Sito Web"
791
+
792
+ #: app/helper/BPMediaSupport.php:104
793
+ msgid "Phone"
794
+ msgstr "Telefono"
795
+
796
+ #: app/helper/BPMediaSupport.php:107
797
+ msgid "Subject"
798
+ msgstr "Oggetto"
799
+
800
+ #: app/helper/BPMediaSupport.php:110
801
+ msgid "Details"
802
+ msgstr "Dettagli"
803
+
804
+ #: app/helper/BPMediaSupport.php:161
805
+ msgid "BuddyPress Media Premium Support Request from"
806
+ msgstr ""
807
+
808
+ #: app/helper/BPMediaSupport.php:164
809
+ msgid "BuddyPress Media New Feature Request from"
810
+ msgstr ""
811
+
812
+ #: app/helper/BPMediaSupport.php:167
813
+ msgid "BuddyPress Media Bug Report from"
814
+ msgstr ""
815
+
816
+ #: app/helper/BPMediaSupport.php:170
817
+ msgid "BuddyPress Media Contact from"
818
+ msgstr ""
819
+
820
+ #: app/helper/BPMediaSettings.php:358
821
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
822
+ msgstr ""
823
+
824
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
825
+ #: app/helper/BPMediaSettings.php:531
826
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
827
+ msgstr ""
828
+
829
+ #: app/main/includes/BPMediaActions.php:874
830
+ msgid "%1$s created an album %2$s"
831
+ msgstr "%1$s creato un album %2$s"
832
+
833
+ #: app/main/BPMediaComponent.php:262
834
+ msgid "All Albums"
835
+ msgstr "Tutti gli album"
836
+
837
+ #: app/main/BPMediaComponent.php:263
838
+ msgid "View Album"
839
+ msgstr "Visualizza Album"
840
+
841
+ #: app/main/BPMediaComponent.php:264
842
+ msgid "Search Albums"
843
+ msgstr "Cerca Album"
844
+
845
+ #: app/main/BPMediaComponent.php:265
846
+ msgid "No album found"
847
+ msgstr "Nesun album trovato"
848
+
849
+ #: app/main/BPMediaComponent.php:266
850
+ msgid "No album found in Trash"
851
+ msgstr "Nessun album trovato nel cestino"
852
+
853
+ #: app/main/BPMediaComponent.php:300
854
+ msgid "Add New Media"
855
+ msgstr "Aggiungi nuovo media"
856
+
857
+ #: app/main/BPMediaComponent.php:308
858
+ msgid "BuddyPress Media's Media Files"
859
+ msgstr "BuddyPress Media's File Multimediali"
860
+
861
+ #: app/main/includes/BPMediaFunction.php:229
862
+ msgid "%1$s added new media in album %2$s"
863
+ msgstr "%1$s aggiungi nuovo media nell'album %2$s"
864
+
865
+ #: app/importers/BPMediaAlbumimporter.php:81
866
+ msgid "Users"
867
+ msgstr "Utenti"
868
+
869
+ #: app/main/includes/BPMediaFilters.php:410
870
+ msgid "Total Photos"
871
+ msgstr "Foto totali"
872
+
873
+ #: app/main/includes/BPMediaFilters.php:411
874
+ msgid "Total Videos"
875
+ msgstr "Video totali"
876
+
877
+ #: app/main/includes/BPMediaFilters.php:412
878
+ msgid "Total Audio"
879
+ msgstr "Audio totali"
880
+
881
+ #: app/main/includes/BPMediaFilters.php:413
882
+ msgid "Total Albums"
883
+ msgstr "Album totali"
884
+
885
+ #: app/helper/BPMediaSettings.php:118
886
+ msgid "Groups"
887
+ msgstr "Gruppi"
888
+
889
+ #: app/main/includes/BPMediaActions.php:348
890
+ msgid "Edit Media"
891
+ msgstr "Modifica media"
892
+
893
+ #: app/main/profile/BPMediaAlbumScreen.php:246
894
+ msgid "Edit"
895
+ msgstr "Modifica"
896
+
897
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
898
+ #: app/main/profile/BPMediaTemplate.php:282
899
+ msgid "Create"
900
+ msgstr "Creato"
901
+
902
+ #: app/main/BPMediaComponent.php:260
903
+ #: app/main/profile/BPMediaAlbumScreen.php:246
904
+ msgid "Edit Album"
905
+ msgstr "Modifica album"
906
+
907
+ #: app/main/BPMediaComponent.php:261
908
+ msgid "New Album"
909
+ msgstr "Nuovo album"
910
+
911
+ #: app/helper/BPMediaSupport.php:126
912
+ msgid "Your WP Admin Login:"
913
+ msgstr "Tuo accesso WP come utente"
914
+
915
+ #: app/helper/BPMediaSupport.php:129
916
+ msgid "Your WP Admin password:"
917
+ msgstr "Tua password WP "
918
+
919
+ #: app/helper/BPMediaSupport.php:132
920
+ msgid "Your SSH / FTP host:"
921
+ msgstr "Tuo SSH / FTP host:"
922
+
923
+ #: app/helper/BPMediaSupport.php:135
924
+ msgid "Your SSH / FTP login:"
925
+ msgstr "Tuoi SSH / Accesso FTP:"
926
+
927
+ #: app/helper/BPMediaSupport.php:138
928
+ msgid "Your SSH / FTP password:"
929
+ msgstr "Tuo SSH / Password FTP:"
930
+
931
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
932
+ msgid "Media Title"
933
+ msgstr "Titolo media"
934
+
935
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
936
+ msgid "Media Description"
937
+ msgstr "Descrizione media"
938
+
939
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
940
+ msgid "Select Media File"
941
+ msgstr "Seleziona un file media"
942
+
943
+ #: app/main/BPMediaComponent.php:60
944
+ msgid "Search Media..."
945
+ msgstr "Cerca media..."
946
+
947
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
948
+ msgid "BuddyPress Media Support"
949
+ msgstr "Supporto BuddyPress Media"
950
+
951
+ #: app/helper/BPMediaSupport.php:81
952
+ msgid "Submit a Bug Report"
953
+ msgstr ""
954
+
955
+ #: app/helper/BPMediaSupport.php:84
956
+ msgid "Submit a New Feature Request"
957
+ msgstr ""
958
+
959
+ #: app/helper/BPMediaSupport.php:87
960
+ msgid "Submit a Premium Support Request"
961
+ msgstr ""
962
+
963
+ #: app/main/includes/BPMediaHostWordpress.php:615
964
+ msgid "Post"
965
+ msgstr ""
966
+
967
+ #: app/main/includes/BPMediaHostWordpress.php:615
968
+ msgid "or press esc to cancel."
969
+ msgstr "o premi esc per annullare."
970
+
971
+ #: app/main/profile/BPMediaAlbumScreen.php:252
972
+ msgid "Delete"
973
+ msgstr "Cancellare"
974
+
975
+ #: app/main/includes/BPMediaHostWordpress.php:59
976
+ msgid "Sorry, the requested media does not exist."
977
+ msgstr ""
978
+
979
+ #: app/main/includes/BPMediaHostWordpress.php:137
980
+ msgid "Error Uploading File"
981
+ msgstr ""
982
+
983
+ #: app/main/includes/BPMediaHostWordpress.php:177
984
+ #: app/main/includes/BPMediaHostWordpress.php:182
985
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
986
+ msgstr ""
987
+
988
+ #: app/main/includes/BPMediaHostWordpress.php:187
989
+ msgid "The MP4 file you have uploaded is not a video file."
990
+ msgstr ""
991
+
992
+ #: app/main/includes/BPMediaHostWordpress.php:198
993
+ msgid "MP3 file you have uploaded is currupt."
994
+ msgstr ""
995
+
996
+ #: app/main/includes/BPMediaHostWordpress.php:205
997
+ #: app/main/includes/BPMediaHostWordpress.php:210
998
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
999
+ msgstr ""
1000
+
1001
+ #: app/main/includes/BPMediaHostWordpress.php:215
1002
+ msgid "The MP3 file you have uploaded is not an audio file."
1003
+ msgstr ""
1004
+
1005
+ #: app/main/includes/BPMediaHostWordpress.php:227
1006
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1007
+ msgstr ""
1008
+
1009
+ #: app/main/includes/BPMediaHostWordpress.php:236
1010
+ msgid "Error creating attachment for the media file, please try again"
1011
+ msgstr ""
1012
+
1013
+ #: app/main/includes/BPMediaHostWordpress.php:346
1014
+ msgid "%s uploaded a media."
1015
+ msgstr ""
1016
+
1017
+ #: app/main/includes/BPMediaHostWordpress.php:367
1018
+ msgid "Uploaded by "
1019
+ msgstr "Inviato da"
1020
+
1021
+ #: app/main/includes/BPMediaHostWordpress.php:590
1022
+ msgid "Comment <span>%s</span>"
1023
+ msgstr "Commento <span>%s</span>"
1024
+
1025
+ #: app/main/includes/BPMediaHostWordpress.php:594
1026
+ msgid "Favorite"
1027
+ msgstr "Preferiti"
1028
+
1029
+ #: app/main/includes/BPMediaHostWordpress.php:596
1030
+ msgid "Remove Favorite"
1031
+ msgstr "Rimuovi dai preferiti"
1032
+
1033
+ #: app/main/widgets/BPMediaWidget.php:203
1034
+ msgid "Title:"
1035
+ msgstr "Titolo:"
1036
+
1037
+ #: app/main/widgets/BPMediaWidget.php:206
1038
+ msgid "Number of posts to show:"
1039
+ msgstr "Numero di post da mostrare:"
1040
+
1041
+ #: app/main/widgets/BPMediaWidget.php:199
1042
+ msgid "Recent Media"
1043
+ msgstr ""
1044
+
1045
+ #: app/main/widgets/BPMediaWidget.php:72
1046
+ msgid "All"
1047
+ msgstr "Tutti"
1048
+
1049
+ #: app/main/group/BPMediaGroupsExtension.php:41
1050
+ #: app/main/group/BPMediaGroupsExtension.php:88
1051
+ msgid "Who can create Albums in this group?"
1052
+ msgstr "Chi può creare gli album in questo gruppo?"
1053
+
1054
+ #: app/main/group/BPMediaGroupsExtension.php:45
1055
+ #: app/main/group/BPMediaGroupsExtension.php:92
1056
+ msgid "All Group Members"
1057
+ msgstr ""
1058
+
1059
+ #: app/main/group/BPMediaGroupsExtension.php:49
1060
+ #: app/main/group/BPMediaGroupsExtension.php:96
1061
+ msgid "Group Admins and Mods only"
1062
+ msgstr ""
1063
+
1064
+ #: app/main/group/BPMediaGroupsExtension.php:53
1065
+ #: app/main/group/BPMediaGroupsExtension.php:100
1066
+ msgid "Group Admin only"
1067
+ msgstr ""
1068
+
1069
+ #: app/main/group/BPMediaGroupsExtension.php:104
1070
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1071
+ msgid "Save Changes"
1072
+ msgstr "Salva Modifiche"
1073
+
1074
+ #: app/main/group/BPMediaGroupsExtension.php:130
1075
+ msgid "There was an error saving, please try again"
1076
+ msgstr ""
1077
+
1078
+ #: app/main/group/BPMediaGroupsExtension.php:132
1079
+ msgid "Settings saved successfully"
1080
+ msgstr "Impostazioni salvate correttamente"
1081
+
1082
+ #: app/main/group/BPMediaGroupsExtension.php:153
1083
+ msgid ""
1084
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1085
+ "\t home screen."
1086
+ msgstr ""
1087
+
1088
+ #: app/main/widgets/BPMediaWidget.php:200
1089
+ msgid "Popular Media"
1090
+ msgstr "Media Popolari"
1091
+
1092
+ #: app/main/profile/BPMediaScreen.php:396
1093
+ msgid "Media deleted successfully"
1094
+ msgstr ""
1095
+
1096
+ #: app/main/profile/BPMediaTemplate.php:98
1097
+ #: app/main/profile/BPMediaUploadScreen.php:33
1098
+ msgid "Upload Media"
1099
+ msgstr "Carica Media"
1100
+
1101
+ #: app/main/profile/BPMediaUploadScreen.php:71
1102
+ msgid "You are not allowed to be here"
1103
+ msgstr ""
1104
+
1105
+ #: app/main/profile/BPMediaUploadScreen.php:98
1106
+ #: app/main/profile/BPMediaUploadScreen.php:122
1107
+ msgid "File uploaded is not supported"
1108
+ msgstr ""
1109
+
1110
+ #: app/main/profile/BPMediaUploadScreen.php:105
1111
+ msgid "Image uploads are disabled"
1112
+ msgstr ""
1113
+
1114
+ #: app/main/profile/BPMediaUploadScreen.php:111
1115
+ msgid "Video uploads are disabled"
1116
+ msgstr ""
1117
+
1118
+ #: app/main/profile/BPMediaUploadScreen.php:117
1119
+ msgid "Audio uploads are disabled"
1120
+ msgstr ""
1121
+
1122
+ #: app/main/profile/BPMediaUploadScreen.php:135
1123
+ msgid "Upload Successful"
1124
+ msgstr ""
1125
+
1126
+ #: app/main/profile/BPMediaUploadScreen.php:140
1127
+ msgid "You did not specified a file to upload"
1128
+ msgstr ""
1129
+
1130
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1131
+ msgid "Sorry, no media items were found in this album."
1132
+ msgstr ""
1133
+
1134
+ #: app/main/profile/BPMediaAlbum.php:74
1135
+ msgid "Sorry, the requested album does not exist."
1136
+ msgstr ""
1137
+
1138
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1139
+ msgid "Sorry, the requested media does not belong to the group"
1140
+ msgstr ""
1141
+
1142
+ #: app/main/BPMediaGroupLoader.php:252
1143
+ msgid "Media Settings"
1144
+ msgstr ""
1145
+
1146
+ #: app/main/group/BPMediaGroupsExtension.php:40
1147
+ #: app/main/group/BPMediaGroupsExtension.php:87
1148
+ msgid "Album Creation Control"
1149
+ msgstr ""
1150
+
1151
+ #: app/main/profile/BPMediaScreen.php:114
1152
+ #: app/main/profile/BPMediaScreen.php:374
1153
+ msgid "The requested url does not exist"
1154
+ msgstr ""
1155
+
1156
+ #: app/main/profile/BPMediaScreen.php:196
1157
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1158
+ msgid "Sorry, no %s were found."
1159
+ msgstr ""
1160
+
1161
+ #: app/main/profile/BPMediaScreen.php:307
1162
+ msgid "Edit %s"
1163
+ msgstr "Modifica %s"
1164
+
1165
+ #: app/main/profile/BPMediaScreen.php:328
1166
+ msgid "%s Title"
1167
+ msgstr "%s Titolo"
1168
+
1169
+ #: app/main/profile/BPMediaScreen.php:334
1170
+ msgid "%s Description"
1171
+ msgstr "%s Descrizione"
1172
+
1173
+ #: app/main/profile/BPMediaScreen.php:342
1174
+ msgid "Update"
1175
+ msgstr "Aggiorna"
1176
+
1177
+ #: app/main/profile/BPMediaScreen.php:343
1178
+ msgid "Back to Media File"
1179
+ msgstr ""
1180
+
1181
+ #: app/main/profile/BPMediaScreen.php:344
1182
+ msgid "Back to Media"
1183
+ msgstr ""
1184
+
1185
+ #: app/main/profile/BPMediaScreen.php:367
1186
+ msgid "You do not have access to this page."
1187
+ msgstr ""
1188
+
1189
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1190
+ #: app/main/BuddyPressMedia.php:327
1191
+ msgid "Albums"
1192
+ msgstr "Album"
1193
+
1194
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1195
+ msgid "Album"
1196
+ msgstr "Album"
1197
+
1198
+ #: app/main/BuddyPressMedia.php:333
1199
+ msgid "Upload"
1200
+ msgstr "Carica"
1201
+
1202
+ #: app/main/profile/BPMediaTemplate.php:246
1203
+ msgid "Select Album"
1204
+ msgstr "Seleziona Album"
1205
+
1206
+ #: app/main/profile/BPMediaTemplate.php:247
1207
+ #: app/main/profile/BPMediaTemplate.php:275
1208
+ msgid "x"
1209
+ msgstr "x"
1210
+
1211
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1212
+ #: app/main/profile/BPMediaTemplate.php:274
1213
+ msgid "Create Album"
1214
+ msgstr "Crea Album"
1215
+
1216
+ #: app/main/profile/BPMediaTemplate.php:278
1217
+ msgid "Album Name"
1218
+ msgstr "Nome Album"
1219
+
1220
+ #: app/main/profile/BPMediaTemplate.php:96
1221
+ msgid "Drop files here"
1222
+ msgstr "Trascina i file qui"
1223
+
1224
+ #: app/main/profile/BPMediaTemplate.php:97
1225
+ msgid " or "
1226
+ msgstr "o"
1227
+
1228
+ #: app/admin/BPMediaAdmin.php:410
1229
+ msgid "Latest News"
1230
+ msgstr "Ultime Notizie"
1231
+
1232
+ #: app/helper/BPMediaSettings.php:34
1233
+ msgid "Photos"
1234
+ msgstr "Foto"
1235
+
1236
+ #: app/main/BuddyPressMedia.php:312
1237
+ msgid "Photo"
1238
+ msgstr "Foto"
1239
+
1240
+ #: app/main/BuddyPressMedia.php:315
1241
+ msgid "Videos"
1242
+ msgstr "Video"
1243
+
1244
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1245
+ msgid "Music"
1246
+ msgstr "Musica"
1247
+
1248
+ #: app/admin/BPMediaAdmin.php:389
1249
+ msgid "Donate"
1250
+ msgstr "Donare"
1251
+
1252
+ #: app/admin/BPMediaAdmin.php:405
1253
+ msgid "RSS Feed"
1254
+ msgstr "Feed RSS "
1255
+
1256
+ #: app/admin/BPMediaAdmin.php:403
1257
+ msgid "Facebook"
1258
+ msgstr "Facebook"
1259
+
1260
+ #: app/admin/BPMediaAdmin.php:404
1261
+ msgid "Follow us on Twitter"
1262
+ msgstr "Seguici su Twitter"
1263
+
1264
+ #: app/admin/BPMediaAdmin.php:404
1265
+ msgid "Twitter"
1266
+ msgstr "Twitter"
1267
+
1268
+ #: app/admin/BPMediaAdmin.php:405
1269
+ msgid "Subscribe to our feeds"
1270
+ msgstr "Sottoscrivi il nostro feed"
1271
+
1272
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1273
+ msgid "Addons"
1274
+ msgstr "Addons"
1275
+
1276
+ #: app/admin/BPMediaAdmin.php:97
1277
+ msgid "Support "
1278
+ msgstr "Supporto"
1279
+
1280
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1281
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1282
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1283
+ #: app/main/BuddyPressMedia.php:304
1284
+ msgid "Media"
1285
+ msgstr "Media"
1286
+
1287
+ #: app/helper/BPMediaSettings.php:184
1288
+ msgid "Support"
1289
+ msgstr "Supporto"
1290
+
1291
+ #: app/admin/BPMediaAdmin.php:182
1292
+ msgid "Empowering The Web With WordPress"
1293
+ msgstr ""
1294
+
1295
+ #: app/admin/BPMediaAdmin.php:403
1296
+ msgid "Become a fan on Facebook"
1297
+ msgstr ""
1298
+
1299
+ #: app/helper/BPMediaSettings.php:182
1300
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1301
+ msgstr ""
1302
+
1303
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1304
+ msgid "Recounting of media files done successfully"
1305
+ msgstr ""
1306
+
1307
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1308
+ msgid "Recounting Failed"
1309
+ msgstr ""
1310
+
1311
+ #: app/helper/BPMediaSettings.php:405
1312
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1313
+ msgstr ""
1314
+
1315
+ #: app/helper/BPMediaSettings.php:533
1316
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1317
+ msgstr ""
1318
+
1319
+ #: app/helper/BPMediaAddon.php:49
1320
+ msgid "BuddyPress-Media Kaltura Add-on"
1321
+ msgstr "BuddyPress-Media Kaltura Add-on"
1322
+
1323
+ #: app/helper/BPMediaAddon.php:52
1324
+ msgid "Add support for more video formats using Kaltura video solution."
1325
+ msgstr ""
1326
+
1327
+ #: app/helper/BPMediaAddon.php:53
1328
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1329
+ msgstr ""
1330
+
1331
+ #: app/helper/BPMediaAddon.php:59
1332
+ msgid "BuddyPress-Media FFMPEG Add-on"
1333
+ msgstr "BuddyPress-Media FFMPEG Add-on"
1334
+
1335
+ #: app/helper/BPMediaAddon.php:62
1336
+ msgid "Add supports for more audio & video formats using open-source media-node."
1337
+ msgstr ""
1338
+
1339
+ #: app/helper/BPMediaAddon.php:63
1340
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1341
+ msgstr ""
1342
+
1343
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1344
+ msgid "Buy Now"
1345
+ msgstr "Compra Ora"
1346
+
1347
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1348
+ msgid "Live Demo"
1349
+ msgstr "Live Demo"
1350
+
1351
+ #: app/main/group/BPMediaGroupAction.php:124
1352
+ #: app/main/includes/BPMediaHostWordpress.php:742
1353
+ msgid "%1$s added a %2$s"
1354
+ msgstr "%1$s aggiunto a %2$s"
1355
+
1356
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1357
+ #: app/admin/BPMediaAdmin.php:213
1358
+ msgid "BuddyPress Media"
1359
+ msgstr "BuddyPress Media"
1360
+
1361
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1362
+ #: app/main/BuddyPressMedia.php:443
1363
+ msgid "Settings"
1364
+ msgstr "Impostazioni"
1365
+
1366
+ #: app/helper/BPMediaFeed.php:43
1367
+ msgid "No items"
1368
+ msgstr "Nessun oggetto"
1369
+
1370
+ #: app/helper/BPMediaFeed.php:49
1371
+ msgid "Posted "
1372
+ msgstr ""
1373
+
1374
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1375
+ msgid "BuddyPress Media Settings"
1376
+ msgstr "Impostazioni BuddyPress Media"
1377
+
1378
+ #: app/helper/BPMediaSettings.php:39
1379
+ msgid "Video"
1380
+ msgstr "Video"
1381
+
1382
+ #: app/helper/BPMediaSettings.php:44
1383
+ msgid "Audio"
1384
+ msgstr "Audio"
1385
+
1386
+ #: app/main/includes/BPMediaActions.php:330
1387
+ msgid "Download"
1388
+ msgstr "Download"
1389
+
1390
+ #: app/admin/BPMediaAdmin.php:367
1391
+ msgid "Spread the Word"
1392
+ msgstr ""
1393
+
1394
+ #: app/helper/BPMediaAdminWidget.php:29
1395
+ msgid "Argument missing. id is required."
1396
+ msgstr ""
languages/buddypress-media-ja_JA.po ADDED
@@ -0,0 +1,1395 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Japanese
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:29+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr ""
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr ""
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr ""
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr ""
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr ""
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr ""
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr ""
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr ""
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr ""
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr ""
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr ""
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr ""
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr ""
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr ""
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr ""
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr ""
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr ""
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr ""
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr ""
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr ""
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr ""
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr ""
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr ""
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr ""
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr ""
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr ""
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr ""
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr ""
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr ""
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr ""
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr ""
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+
553
+ #: app/admin/BPMediaAdmin.php:363
554
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
555
+ msgstr ""
556
+
557
+ #: app/admin/BPMediaAdmin.php:364
558
+ msgid "Add link to footer"
559
+ msgstr ""
560
+
561
+ #: app/admin/BPMediaAdmin.php:365
562
+ msgid "Tweet"
563
+ msgstr ""
564
+
565
+ #: app/admin/BPMediaAdmin.php:366
566
+ msgid "Rate on WordPress.org"
567
+ msgstr ""
568
+
569
+ #: app/admin/BPMediaAdmin.php:377
570
+ msgid "USD"
571
+ msgstr ""
572
+
573
+ #: app/admin/BPMediaAdmin.php:407
574
+ msgid "Subscribe"
575
+ msgstr ""
576
+
577
+ #: app/admin/BPMediaAdmin.php:99
578
+ msgid "BuddyPress Media Convert Videos"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
582
+ msgid "Convert Videos"
583
+ msgstr ""
584
+
585
+ #: app/admin/BPMediaAdmin.php:182
586
+ msgid "By"
587
+ msgstr ""
588
+
589
+ #: app/admin/BPMediaAdmin.php:262
590
+ msgid "BuddyPress Media Covert Videos"
591
+ msgstr ""
592
+
593
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
594
+ msgid "Atleast one Media Type Must be selected"
595
+ msgstr ""
596
+
597
+ #: app/helper/BPMediaSettings.php:305
598
+ msgid "Media Type"
599
+ msgstr ""
600
+
601
+ #: app/helper/BPMediaSettings.php:603
602
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
603
+ msgstr ""
604
+
605
+ #: app/admin/BPMediaAdmin.php:91
606
+ msgid "BuddyPress Media Database Update"
607
+ msgstr ""
608
+
609
+ #: app/main/privacy/BPMediaPrivacy.php:121
610
+ msgid "<strong>Users</strong>, Visible to registered users"
611
+ msgstr ""
612
+
613
+ #: app/main/privacy/BPMediaPrivacy.php:125
614
+ msgid "<strong>Public</strong>, Visible to the world"
615
+ msgstr ""
616
+
617
+ #: app/helper/BPMediaSettings.php:172
618
+ msgid "Enable menu in WordPress admin bar"
619
+ msgstr ""
620
+
621
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
622
+ msgid "Update Database"
623
+ msgstr ""
624
+
625
+ #: app/helper/BPMediaSettings.php:132
626
+ msgid "Download Button"
627
+ msgstr ""
628
+
629
+ #: app/helper/BPMediaSettings.php:135
630
+ msgid "Display download button under media"
631
+ msgstr ""
632
+
633
+ #: app/main/BuddyPressMedia.php:306
634
+ msgid "Privacy"
635
+ msgstr ""
636
+
637
+ #: app/helper/BPMediaSettings.php:140
638
+ msgid "Enable Privacy"
639
+ msgstr ""
640
+
641
+ #: app/helper/BPMediaSettings.php:143
642
+ msgid "Enable privacy"
643
+ msgstr ""
644
+
645
+ #: app/helper/BPMediaSettings.php:161
646
+ msgid "User Override"
647
+ msgstr ""
648
+
649
+ #: app/helper/BPMediaSettings.php:155
650
+ msgid "Default Privacy"
651
+ msgstr ""
652
+
653
+ #: app/helper/BPMediaSettings.php:33
654
+ msgid "Enabled Media Types"
655
+ msgstr ""
656
+
657
+ #: app/helper/BPMediaSettings.php:169
658
+ msgid "Admin bar menu"
659
+ msgstr "アドミン・バー・メニュー"
660
+
661
+ #: app/helper/BPMediaSettings.php:318
662
+ msgid "Settings saved."
663
+ msgstr "設定は保存されました"
664
+
665
+ #: app/main/profile/BPMediaTemplate.php:29
666
+ msgid "Wall Posts"
667
+ msgstr "ウォール投稿"
668
+
669
+ #: app/main/profile/BPMediaTemplate.php:83
670
+ msgid "+ Create New Album"
671
+ msgstr "+新規アルバム作成"
672
+
673
+ #: app/main/profile/BPMediaTemplate.php:90
674
+ msgid "Cancel"
675
+ msgstr "キャンセル"
676
+
677
+ #: app/main/profile/BPMediaTemplate.php:213
678
+ msgid "Show More"
679
+ msgstr "詳細表示"
680
+
681
+ #: app/main/profile/BPMediaTemplate.php:267
682
+ msgid "Select"
683
+ msgstr "選択"
684
+
685
+ #: app/main/profile/BPMediaTemplate.php:286
686
+ msgid "Add Media"
687
+ msgstr "メディア追加"
688
+
689
+ #: app/main/includes/BPMediaFilters.php:158
690
+ msgid "Delete %s"
691
+ msgstr " %s を削除"
692
+
693
+ #: app/main/widgets/BPMediaWidget.php:197
694
+ msgid "Widget Type:"
695
+ msgstr "ウィジット・タイプ:"
696
+
697
+ #: app/main/widgets/BPMediaWidget.php:210
698
+ msgid "Show All"
699
+ msgstr "全て表示"
700
+
701
+ #: app/main/widgets/BPMediaWidget.php:213
702
+ msgid "Show Photos"
703
+ msgstr "写真を表示"
704
+
705
+ #: app/main/widgets/BPMediaWidget.php:216
706
+ msgid "Show Music"
707
+ msgstr "音楽を表示"
708
+
709
+ #: app/main/widgets/BPMediaWidget.php:220
710
+ msgid "Show Videos"
711
+ msgstr "ビデオを表示"
712
+
713
+ #: app/main/widgets/BPMediaWidget.php:20
714
+ msgid "The most recent/popular media uploaded on your site"
715
+ msgstr "サイトにアップロードされた最新/ポピュラーなメディア"
716
+
717
+ #: app/main/widgets/BPMediaWidget.php:21
718
+ msgid "BuddyPress Media Widget"
719
+ msgstr "BuddyPress Mediaウィジット"
720
+
721
+ #: app/main/widgets/BPMediaWidget.php:150
722
+ msgid "No "
723
+ msgstr "いいえ"
724
+
725
+ #: app/main/BuddyPressMedia.php:158
726
+ msgid "BuddyPress is not installed."
727
+ msgstr "BuddyPressがインストールされていません。"
728
+
729
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
730
+ msgid "BuddyPress Media Addons"
731
+ msgstr "BuddyPress Mediaアドオン"
732
+
733
+ #: app/admin/BPMediaAdmin.php:88
734
+ msgid "BuddyPress Media Component"
735
+ msgstr "BuddyPress Mediaコンポーネント"
736
+
737
+ #: app/helper/BPMediaSupport.php:121
738
+ msgid "Additional Information"
739
+ msgstr "付加情報"
740
+
741
+ #: app/helper/BPMediaSettings.php:286
742
+ msgid "Recount Success"
743
+ msgstr "再集計成功"
744
+
745
+ #: app/helper/BPMediaSettings.php:291
746
+ msgid "Recount Fail"
747
+ msgstr "再集計失敗"
748
+
749
+ #: app/main/includes/BPMediaHostWordpress.php:170
750
+ msgid "MP4 file you have uploaded is corrupt."
751
+ msgstr "アップロードされたMP4ファイルは破損しています。"
752
+
753
+ #: app/helper/BPMediaSupport.php:246
754
+ msgid "Thank you for your Feedback/Suggestion."
755
+ msgstr "フィードバック/ご提案をありがとうございました。"
756
+
757
+ #: app/helper/BPMediaSupport.php:248
758
+ msgid "Thank you for posting your support request."
759
+ msgstr "サポートリクエストごご投稿ありがとうございました。"
760
+
761
+ #: app/helper/BPMediaSupport.php:249
762
+ msgid "We will get back to you shortly."
763
+ msgstr "暫くお待ち下さい。"
764
+
765
+ #: app/helper/BPMediaSupport.php:252
766
+ msgid "Your server failed to send an email."
767
+ msgstr "あなたのサーバーはメール送信に失敗しました。"
768
+
769
+ #: app/helper/BPMediaSupport.php:253
770
+ msgid "Kindly contact your server support to fix this."
771
+ msgstr "この問題を解決するためにサーバーのサポートにご連絡下さい。"
772
+
773
+ #: app/helper/BPMediaSupport.php:254
774
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
775
+ msgstr "あるいは <a href=\"%s\">ここで</a> サポート・リクエストを作成して下さい"
776
+
777
+ #: app/helper/BPMediaSupport.php:95
778
+ msgid "Name"
779
+ msgstr "名前"
780
+
781
+ #: app/helper/BPMediaSupport.php:98
782
+ msgid "Email"
783
+ msgstr "Eメール"
784
+
785
+ #: app/helper/BPMediaSupport.php:101
786
+ msgid "Website"
787
+ msgstr "ウェブサイト"
788
+
789
+ #: app/helper/BPMediaSupport.php:104
790
+ msgid "Phone"
791
+ msgstr "電話番号"
792
+
793
+ #: app/helper/BPMediaSupport.php:107
794
+ msgid "Subject"
795
+ msgstr "タイトル"
796
+
797
+ #: app/helper/BPMediaSupport.php:110
798
+ msgid "Details"
799
+ msgstr "詳細"
800
+
801
+ #: app/helper/BPMediaSupport.php:161
802
+ msgid "BuddyPress Media Premium Support Request from"
803
+ msgstr "BuddyPress Media プレミアム サポート リクエスト フロム"
804
+
805
+ #: app/helper/BPMediaSupport.php:164
806
+ msgid "BuddyPress Media New Feature Request from"
807
+ msgstr "BuddyPress Media 新機能リクエスト フロム"
808
+
809
+ #: app/helper/BPMediaSupport.php:167
810
+ msgid "BuddyPress Media Bug Report from"
811
+ msgstr "BuddyPress Media バグレポート フロム"
812
+
813
+ #: app/helper/BPMediaSupport.php:170
814
+ msgid "BuddyPress Media Contact from"
815
+ msgstr "BuddyPress Media コンタクト フロム"
816
+
817
+ #: app/helper/BPMediaSettings.php:358
818
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
819
+ msgstr "引数に\"option\" value ( required )を提供してください。次の形式でadd_settings_fieldに引数を渡す array( 'option' => 'option_name' ) "
820
+
821
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
822
+ #: app/helper/BPMediaSettings.php:531
823
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
824
+ msgstr "引数に\"option\" value ( required )を提供してください。次の形式でadd_settings_fieldに引数を渡す array( 'option' => 'option_name' ) "
825
+
826
+ #: app/main/includes/BPMediaActions.php:874
827
+ msgid "%1$s created an album %2$s"
828
+ msgstr "%1$s はアルバム %2$s を作成しました"
829
+
830
+ #: app/main/BPMediaComponent.php:262
831
+ msgid "All Albums"
832
+ msgstr "全てのアルバム"
833
+
834
+ #: app/main/BPMediaComponent.php:263
835
+ msgid "View Album"
836
+ msgstr "アルバム表示"
837
+
838
+ #: app/main/BPMediaComponent.php:264
839
+ msgid "Search Albums"
840
+ msgstr "アルバム検索"
841
+
842
+ #: app/main/BPMediaComponent.php:265
843
+ msgid "No album found"
844
+ msgstr "アルバムは見つかりませんでした"
845
+
846
+ #: app/main/BPMediaComponent.php:266
847
+ msgid "No album found in Trash"
848
+ msgstr "ゴミ箱にアルバムはありません"
849
+
850
+ #: app/main/BPMediaComponent.php:300
851
+ msgid "Add New Media"
852
+ msgstr "メディアを新規追加"
853
+
854
+ #: app/main/BPMediaComponent.php:308
855
+ msgid "BuddyPress Media's Media Files"
856
+ msgstr "BuddyPress Media メディア・ファイル"
857
+
858
+ #: app/main/includes/BPMediaFunction.php:229
859
+ msgid "%1$s added new media in album %2$s"
860
+ msgstr "%1$s は新しいメディアをアルバム %2$s に追加しました"
861
+
862
+ #: app/importers/BPMediaAlbumimporter.php:81
863
+ msgid "Users"
864
+ msgstr "ユーザー"
865
+
866
+ #: app/main/includes/BPMediaFilters.php:410
867
+ msgid "Total Photos"
868
+ msgstr "写真総数"
869
+
870
+ #: app/main/includes/BPMediaFilters.php:411
871
+ msgid "Total Videos"
872
+ msgstr "ビデオ総数"
873
+
874
+ #: app/main/includes/BPMediaFilters.php:412
875
+ msgid "Total Audio"
876
+ msgstr "オーディオ総数"
877
+
878
+ #: app/main/includes/BPMediaFilters.php:413
879
+ msgid "Total Albums"
880
+ msgstr "アルバム総数"
881
+
882
+ #: app/helper/BPMediaSettings.php:118
883
+ msgid "Groups"
884
+ msgstr "グループ"
885
+
886
+ #: app/main/includes/BPMediaActions.php:348
887
+ msgid "Edit Media"
888
+ msgstr "メディアを編集"
889
+
890
+ #: app/main/profile/BPMediaAlbumScreen.php:246
891
+ msgid "Edit"
892
+ msgstr "編集"
893
+
894
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
895
+ #: app/main/profile/BPMediaTemplate.php:282
896
+ msgid "Create"
897
+ msgstr "作成"
898
+
899
+ #: app/main/BPMediaComponent.php:260
900
+ #: app/main/profile/BPMediaAlbumScreen.php:246
901
+ msgid "Edit Album"
902
+ msgstr "アルバム編集"
903
+
904
+ #: app/main/BPMediaComponent.php:261
905
+ msgid "New Album"
906
+ msgstr "新規アルバム"
907
+
908
+ #: app/helper/BPMediaSupport.php:126
909
+ msgid "Your WP Admin Login:"
910
+ msgstr "あなたのWPアドミン ログイン:"
911
+
912
+ #: app/helper/BPMediaSupport.php:129
913
+ msgid "Your WP Admin password:"
914
+ msgstr "あなたのWPアドミン パスワード:"
915
+
916
+ #: app/helper/BPMediaSupport.php:132
917
+ msgid "Your SSH / FTP host:"
918
+ msgstr "あなたのSSH/FTP ホスト:"
919
+
920
+ #: app/helper/BPMediaSupport.php:135
921
+ msgid "Your SSH / FTP login:"
922
+ msgstr "あなたのSSH/FTP ログイン:"
923
+
924
+ #: app/helper/BPMediaSupport.php:138
925
+ msgid "Your SSH / FTP password:"
926
+ msgstr "あなたのSSH/FTP パスワード:"
927
+
928
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
929
+ msgid "Media Title"
930
+ msgstr "メディアタイトル"
931
+
932
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
933
+ msgid "Media Description"
934
+ msgstr "メディア説明"
935
+
936
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
937
+ msgid "Select Media File"
938
+ msgstr "メディアファイル選択"
939
+
940
+ #: app/main/BPMediaComponent.php:60
941
+ msgid "Search Media..."
942
+ msgstr "メディア検索..."
943
+
944
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
945
+ msgid "BuddyPress Media Support"
946
+ msgstr "BuddyPress Media サポート"
947
+
948
+ #: app/helper/BPMediaSupport.php:81
949
+ msgid "Submit a Bug Report"
950
+ msgstr "バグを報告"
951
+
952
+ #: app/helper/BPMediaSupport.php:84
953
+ msgid "Submit a New Feature Request"
954
+ msgstr "新機能をリクエストする"
955
+
956
+ #: app/helper/BPMediaSupport.php:87
957
+ msgid "Submit a Premium Support Request"
958
+ msgstr "プレミア サポートをリクエストする"
959
+
960
+ #: app/main/includes/BPMediaHostWordpress.php:615
961
+ msgid "Post"
962
+ msgstr "投稿"
963
+
964
+ #: app/main/includes/BPMediaHostWordpress.php:615
965
+ msgid "or press esc to cancel."
966
+ msgstr "ESCでキャンセル"
967
+
968
+ #: app/main/profile/BPMediaAlbumScreen.php:252
969
+ msgid "Delete"
970
+ msgstr "削除"
971
+
972
+ #: app/main/includes/BPMediaHostWordpress.php:59
973
+ msgid "Sorry, the requested media does not exist."
974
+ msgstr "要求されたメディアは存在しません。"
975
+
976
+ #: app/main/includes/BPMediaHostWordpress.php:137
977
+ msgid "Error Uploading File"
978
+ msgstr "ファイルアップロードのエラー"
979
+
980
+ #: app/main/includes/BPMediaHostWordpress.php:177
981
+ #: app/main/includes/BPMediaHostWordpress.php:182
982
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
983
+ msgstr "あなたがアップロードしたMP4ファイルは未サポートのビデオ・コーディックを使用しています。サポートされているコーディックはH.264です。"
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:187
986
+ msgid "The MP4 file you have uploaded is not a video file."
987
+ msgstr "あなたがアップロードしたMP4ファイルはビデオファイルではありません。"
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:198
990
+ msgid "MP3 file you have uploaded is currupt."
991
+ msgstr "あなたがアップロードしたMP3ファイルは破損しています。"
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:205
994
+ #: app/main/includes/BPMediaHostWordpress.php:210
995
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
996
+ msgstr "あなたがアップロードしたMP3ファイルは未サポートのオーディオ形式です。サポートされている形式はMP3です。"
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:215
999
+ msgid "The MP3 file you have uploaded is not an audio file."
1000
+ msgstr "アップロードされたMP3ファイルはオーディオファイルではありません。"
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:227
1003
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1004
+ msgstr "アップロードしようとしているメディアファイルはサポートされていません。 サポートされているメディアファイルの形式は .jpg, .png, .gif, .mp3, .mov および .mp4 です。"
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:236
1007
+ msgid "Error creating attachment for the media file, please try again"
1008
+ msgstr "メディアファイルへの添付作成エラーです、やり直して下さい。"
1009
+
1010
+ #: app/main/includes/BPMediaHostWordpress.php:346
1011
+ msgid "%s uploaded a media."
1012
+ msgstr "%s はメディアをアップロードしました。"
1013
+
1014
+ #: app/main/includes/BPMediaHostWordpress.php:367
1015
+ msgid "Uploaded by "
1016
+ msgstr "アップロードしたのは"
1017
+
1018
+ #: app/main/includes/BPMediaHostWordpress.php:590
1019
+ msgid "Comment <span>%s</span>"
1020
+ msgstr "コメント <span>%s</span>"
1021
+
1022
+ #: app/main/includes/BPMediaHostWordpress.php:594
1023
+ msgid "Favorite"
1024
+ msgstr "お気に入り"
1025
+
1026
+ #: app/main/includes/BPMediaHostWordpress.php:596
1027
+ msgid "Remove Favorite"
1028
+ msgstr "「お気に入り」を削除"
1029
+
1030
+ #: app/main/widgets/BPMediaWidget.php:203
1031
+ msgid "Title:"
1032
+ msgstr "タイトル:"
1033
+
1034
+ #: app/main/widgets/BPMediaWidget.php:206
1035
+ msgid "Number of posts to show:"
1036
+ msgstr "表示する写真の数:"
1037
+
1038
+ #: app/main/widgets/BPMediaWidget.php:199
1039
+ msgid "Recent Media"
1040
+ msgstr "新しいメディア"
1041
+
1042
+ #: app/main/widgets/BPMediaWidget.php:72
1043
+ msgid "All"
1044
+ msgstr "全て"
1045
+
1046
+ #: app/main/group/BPMediaGroupsExtension.php:41
1047
+ #: app/main/group/BPMediaGroupsExtension.php:88
1048
+ msgid "Who can create Albums in this group?"
1049
+ msgstr "このグループ内でアルバムを作成できる人は?"
1050
+
1051
+ #: app/main/group/BPMediaGroupsExtension.php:45
1052
+ #: app/main/group/BPMediaGroupsExtension.php:92
1053
+ msgid "All Group Members"
1054
+ msgstr "グループの全メンバー"
1055
+
1056
+ #: app/main/group/BPMediaGroupsExtension.php:49
1057
+ #: app/main/group/BPMediaGroupsExtension.php:96
1058
+ msgid "Group Admins and Mods only"
1059
+ msgstr "グループのアドミンとモデレーターのみ"
1060
+
1061
+ #: app/main/group/BPMediaGroupsExtension.php:53
1062
+ #: app/main/group/BPMediaGroupsExtension.php:100
1063
+ msgid "Group Admin only"
1064
+ msgstr "グループノアドミンのみ"
1065
+
1066
+ #: app/main/group/BPMediaGroupsExtension.php:104
1067
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1068
+ msgid "Save Changes"
1069
+ msgstr "変更を保存"
1070
+
1071
+ #: app/main/group/BPMediaGroupsExtension.php:130
1072
+ msgid "There was an error saving, please try again"
1073
+ msgstr "保存時にエラーが有りました、もう一度やってみて下さい。"
1074
+
1075
+ #: app/main/group/BPMediaGroupsExtension.php:132
1076
+ msgid "Settings saved successfully"
1077
+ msgstr "設定は正常に保存されました"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:153
1080
+ msgid ""
1081
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1082
+ "\t home screen."
1083
+ msgstr ""
1084
+ "あなたはここであなたのグループの内線番号からの情報の小さなスニペット表示することができます。これは、グループに表示されます \n"
1085
+ " → ホーム画面"
1086
+
1087
+ #: app/main/widgets/BPMediaWidget.php:200
1088
+ msgid "Popular Media"
1089
+ msgstr "ポピュラーなメディア"
1090
+
1091
+ #: app/main/profile/BPMediaScreen.php:396
1092
+ msgid "Media deleted successfully"
1093
+ msgstr "メディアは正常に削除されました"
1094
+
1095
+ #: app/main/profile/BPMediaTemplate.php:98
1096
+ #: app/main/profile/BPMediaUploadScreen.php:33
1097
+ msgid "Upload Media"
1098
+ msgstr "メディアをアップロード"
1099
+
1100
+ #: app/main/profile/BPMediaUploadScreen.php:71
1101
+ msgid "You are not allowed to be here"
1102
+ msgstr "あなたはここへのアクセスを許可されていません"
1103
+
1104
+ #: app/main/profile/BPMediaUploadScreen.php:98
1105
+ #: app/main/profile/BPMediaUploadScreen.php:122
1106
+ msgid "File uploaded is not supported"
1107
+ msgstr "ファイルアップロードはサポートされていません"
1108
+
1109
+ #: app/main/profile/BPMediaUploadScreen.php:105
1110
+ msgid "Image uploads are disabled"
1111
+ msgstr "画像のアップロードは無効化されています"
1112
+
1113
+ #: app/main/profile/BPMediaUploadScreen.php:111
1114
+ msgid "Video uploads are disabled"
1115
+ msgstr "ビデオのアップロードは無効化されています"
1116
+
1117
+ #: app/main/profile/BPMediaUploadScreen.php:117
1118
+ msgid "Audio uploads are disabled"
1119
+ msgstr "オーディオのアップロードは無効化されています"
1120
+
1121
+ #: app/main/profile/BPMediaUploadScreen.php:135
1122
+ msgid "Upload Successful"
1123
+ msgstr "アップロード成功"
1124
+
1125
+ #: app/main/profile/BPMediaUploadScreen.php:140
1126
+ msgid "You did not specified a file to upload"
1127
+ msgstr "アップロードするファイルが指定されていません"
1128
+
1129
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1130
+ msgid "Sorry, no media items were found in this album."
1131
+ msgstr "このアルバムにはメディアがありませんでした。"
1132
+
1133
+ #: app/main/profile/BPMediaAlbum.php:74
1134
+ msgid "Sorry, the requested album does not exist."
1135
+ msgstr "要求されたアルバムは存在しません。"
1136
+
1137
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1138
+ msgid "Sorry, the requested media does not belong to the group"
1139
+ msgstr "要求されたメディアはそのグループに属していません"
1140
+
1141
+ #: app/main/BPMediaGroupLoader.php:252
1142
+ msgid "Media Settings"
1143
+ msgstr "メディア設定"
1144
+
1145
+ #: app/main/group/BPMediaGroupsExtension.php:40
1146
+ #: app/main/group/BPMediaGroupsExtension.php:87
1147
+ msgid "Album Creation Control"
1148
+ msgstr "アルバム作成制御"
1149
+
1150
+ #: app/main/profile/BPMediaScreen.php:114
1151
+ #: app/main/profile/BPMediaScreen.php:374
1152
+ msgid "The requested url does not exist"
1153
+ msgstr "要求されたURLは存在しません"
1154
+
1155
+ #: app/main/profile/BPMediaScreen.php:196
1156
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1157
+ msgid "Sorry, no %s were found."
1158
+ msgstr " %s は見つかりませんでした。"
1159
+
1160
+ #: app/main/profile/BPMediaScreen.php:307
1161
+ msgid "Edit %s"
1162
+ msgstr "%s を編集"
1163
+
1164
+ #: app/main/profile/BPMediaScreen.php:328
1165
+ msgid "%s Title"
1166
+ msgstr "%s タイトル"
1167
+
1168
+ #: app/main/profile/BPMediaScreen.php:334
1169
+ msgid "%s Description"
1170
+ msgstr "%s 説明"
1171
+
1172
+ #: app/main/profile/BPMediaScreen.php:342
1173
+ msgid "Update"
1174
+ msgstr "更新"
1175
+
1176
+ #: app/main/profile/BPMediaScreen.php:343
1177
+ msgid "Back to Media File"
1178
+ msgstr "メディアファイルに戻る"
1179
+
1180
+ #: app/main/profile/BPMediaScreen.php:344
1181
+ msgid "Back to Media"
1182
+ msgstr "メディアに戻る"
1183
+
1184
+ #: app/main/profile/BPMediaScreen.php:367
1185
+ msgid "You do not have access to this page."
1186
+ msgstr "あなたはこのページにアクセス出来ません。"
1187
+
1188
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1189
+ #: app/main/BuddyPressMedia.php:327
1190
+ msgid "Albums"
1191
+ msgstr "アルバム"
1192
+
1193
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1194
+ msgid "Album"
1195
+ msgstr "アルバム"
1196
+
1197
+ #: app/main/BuddyPressMedia.php:333
1198
+ msgid "Upload"
1199
+ msgstr "アップロード"
1200
+
1201
+ #: app/main/profile/BPMediaTemplate.php:246
1202
+ msgid "Select Album"
1203
+ msgstr "アルバム選択"
1204
+
1205
+ #: app/main/profile/BPMediaTemplate.php:247
1206
+ #: app/main/profile/BPMediaTemplate.php:275
1207
+ msgid "x"
1208
+ msgstr "x"
1209
+
1210
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1211
+ #: app/main/profile/BPMediaTemplate.php:274
1212
+ msgid "Create Album"
1213
+ msgstr "アルバム作成"
1214
+
1215
+ #: app/main/profile/BPMediaTemplate.php:278
1216
+ msgid "Album Name"
1217
+ msgstr "アルバム名"
1218
+
1219
+ #: app/main/profile/BPMediaTemplate.php:96
1220
+ msgid "Drop files here"
1221
+ msgstr "ここにファイルをドロップ"
1222
+
1223
+ #: app/main/profile/BPMediaTemplate.php:97
1224
+ msgid " or "
1225
+ msgstr "あるいは"
1226
+
1227
+ #: app/admin/BPMediaAdmin.php:410
1228
+ msgid "Latest News"
1229
+ msgstr "最新ニュース"
1230
+
1231
+ #: app/helper/BPMediaSettings.php:34
1232
+ msgid "Photos"
1233
+ msgstr "写真"
1234
+
1235
+ #: app/main/BuddyPressMedia.php:312
1236
+ msgid "Photo"
1237
+ msgstr "写真"
1238
+
1239
+ #: app/main/BuddyPressMedia.php:315
1240
+ msgid "Videos"
1241
+ msgstr "ビデオ"
1242
+
1243
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1244
+ msgid "Music"
1245
+ msgstr "ミュージック"
1246
+
1247
+ #: app/admin/BPMediaAdmin.php:389
1248
+ msgid "Donate"
1249
+ msgstr "寄付"
1250
+
1251
+ #: app/admin/BPMediaAdmin.php:405
1252
+ msgid "RSS Feed"
1253
+ msgstr "RSSフィード"
1254
+
1255
+ #: app/admin/BPMediaAdmin.php:403
1256
+ msgid "Facebook"
1257
+ msgstr "Facebook"
1258
+
1259
+ #: app/admin/BPMediaAdmin.php:404
1260
+ msgid "Follow us on Twitter"
1261
+ msgstr "Twitterでフォロー"
1262
+
1263
+ #: app/admin/BPMediaAdmin.php:404
1264
+ msgid "Twitter"
1265
+ msgstr "Twitter"
1266
+
1267
+ #: app/admin/BPMediaAdmin.php:405
1268
+ msgid "Subscribe to our feeds"
1269
+ msgstr "私達のフィードを購読"
1270
+
1271
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1272
+ msgid "Addons"
1273
+ msgstr "アドオン"
1274
+
1275
+ #: app/admin/BPMediaAdmin.php:97
1276
+ msgid "Support "
1277
+ msgstr "サポート"
1278
+
1279
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1280
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1281
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1282
+ #: app/main/BuddyPressMedia.php:304
1283
+ msgid "Media"
1284
+ msgstr "メディア"
1285
+
1286
+ #: app/helper/BPMediaSettings.php:184
1287
+ msgid "Support"
1288
+ msgstr "サポート"
1289
+
1290
+ #: app/admin/BPMediaAdmin.php:182
1291
+ msgid "Empowering The Web With WordPress"
1292
+ msgstr "Empowering The Web With WordPress"
1293
+
1294
+ #: app/admin/BPMediaAdmin.php:403
1295
+ msgid "Become a fan on Facebook"
1296
+ msgstr "Facebookでファンになる"
1297
+
1298
+ #: app/helper/BPMediaSettings.php:182
1299
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1300
+ msgstr "オーディオ/ビデオ変換のためのBuddyPress Mediaアドオン"
1301
+
1302
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1303
+ msgid "Recounting of media files done successfully"
1304
+ msgstr "メディアファイルノ再集計は正常に終了しました"
1305
+
1306
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1307
+ msgid "Recounting Failed"
1308
+ msgstr "再集計失敗"
1309
+
1310
+ #: app/helper/BPMediaSettings.php:405
1311
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1312
+ msgstr "代わりにチェックボックスを使用し、少なくともラジオに指定する必要があります"
1313
+
1314
+ #: app/helper/BPMediaSettings.php:533
1315
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1316
+ msgstr "ドロップダウンを移入するためにいくつかの値を入力してください。フォーマット: array( 'value' => 'option' )"
1317
+
1318
+ #: app/helper/BPMediaAddon.php:49
1319
+ msgid "BuddyPress-Media Kaltura Add-on"
1320
+ msgstr "BuddyPress-Media Kalturaアドオン"
1321
+
1322
+ #: app/helper/BPMediaAddon.php:52
1323
+ msgid "Add support for more video formats using Kaltura video solution."
1324
+ msgstr "Kalturaビデオ・」ソリューションを使ったより多くのビデオフォーマットのサポートを追加"
1325
+
1326
+ #: app/helper/BPMediaAddon.php:53
1327
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1328
+ msgstr "Kaltura.com と連携 , Kaltura-on-premise , Kaltura-CE セルフホスト "
1329
+
1330
+ #: app/helper/BPMediaAddon.php:59
1331
+ msgid "BuddyPress-Media FFMPEG Add-on"
1332
+ msgstr "BuddyPress-Media FFMPEG アドオン"
1333
+
1334
+ #: app/helper/BPMediaAddon.php:62
1335
+ msgid "Add supports for more audio & video formats using open-source media-node."
1336
+ msgstr "オープンソースのmedia-nodeを使用して他のオーディオ及びビデオフォーマットのサポートを追加"
1337
+
1338
+ #: app/helper/BPMediaAddon.php:63
1339
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1340
+ msgstr "メディアノードは、Ubuntu / Debian用自動セットアップスクリプトが付属しています"
1341
+
1342
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1343
+ msgid "Buy Now"
1344
+ msgstr "今すぐ購入"
1345
+
1346
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1347
+ msgid "Live Demo"
1348
+ msgstr "ライブデモ"
1349
+
1350
+ #: app/main/group/BPMediaGroupAction.php:124
1351
+ #: app/main/includes/BPMediaHostWordpress.php:742
1352
+ msgid "%1$s added a %2$s"
1353
+ msgstr "%1$s さんは %2$s を追加しました"
1354
+
1355
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1356
+ #: app/admin/BPMediaAdmin.php:213
1357
+ msgid "BuddyPress Media"
1358
+ msgstr "BuddyPress Media"
1359
+
1360
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1361
+ #: app/main/BuddyPressMedia.php:443
1362
+ msgid "Settings"
1363
+ msgstr "設定"
1364
+
1365
+ #: app/helper/BPMediaFeed.php:43
1366
+ msgid "No items"
1367
+ msgstr "アイテム無し"
1368
+
1369
+ #: app/helper/BPMediaFeed.php:49
1370
+ msgid "Posted "
1371
+ msgstr "投稿"
1372
+
1373
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1374
+ msgid "BuddyPress Media Settings"
1375
+ msgstr "BuddyPress Media設定"
1376
+
1377
+ #: app/helper/BPMediaSettings.php:39
1378
+ msgid "Video"
1379
+ msgstr "ビデオ"
1380
+
1381
+ #: app/helper/BPMediaSettings.php:44
1382
+ msgid "Audio"
1383
+ msgstr "オーディオ"
1384
+
1385
+ #: app/main/includes/BPMediaActions.php:330
1386
+ msgid "Download"
1387
+ msgstr "ダウンロード"
1388
+
1389
+ #: app/admin/BPMediaAdmin.php:367
1390
+ msgid "Spread the Word"
1391
+ msgstr "単語を広げる"
1392
+
1393
+ #: app/helper/BPMediaAdminWidget.php:29
1394
+ msgid "Argument missing. id is required."
1395
+ msgstr "引数がありません。idが必要です。"
languages/buddypress-media-nl_NL.po ADDED
@@ -0,0 +1,1393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Dutch
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:30:36+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "Voeg media toe"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "Bekijke"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr "%1$s heeft een update geplaatst in de %2$s groep"
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr "Om BuddyPress Media te gebruiken moet Buddypress zijn geïnstalleerd "
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr "<a href=\"%s\">Installeer BuddyPress nu</a>"
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr "OF"
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr "Gebruik <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> vanaf $9"
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr "Debug Info"
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr "De \"Aantal mediabestanden\" teller moet numeriek en groter dan 0 zijn."
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr "Standaard telling"
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr "Geen"
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr "Debug info"
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr "Herstel mediabestanden teller"
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr "Laat gebruikers toe om de standaardwaarden aan te passen (<em>Aanbevolen</em>)"
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "Andere instellingen"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr "Hertel"
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>Vrienden</strong> - Zichtbaar voor vrienden"
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>Leden</strong> - Zichtbaar voor geregistreerde gebruikers"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>Openbaar</strong> - Zichtbaar voor iedereen"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>Privé</strong> - Enkel zichtbaar voor de gebruiker"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "Activiteiten upload"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr "Activiteiten uploads"
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr "Activeer activiteiten upload"
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr "Groep integratie"
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr "Sta media in groepen toe"
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "Scherm instellingen"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "Aantal mediabestanden"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "Activeer foto's"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Instellen als albumhoes"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Verwijderen als albumhoes"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Privacy-instellingen"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "Update BuddyPress Media Database"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Start"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>Privé</strong>, alleen voor mij zichtbaar"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>Vrienden</strong>, zichtbaar voor mijn vrienden"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr "Stel standaard privacy-niveaus voor uw media"
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "Dit %s is privé"
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "Dit %1s is alleen zichtbaar voor %2s&rsquo;s vrienden"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "Deze %s is alleen zichtbaar voor ingelogde gebruikers"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "Standaard privacy-niveau voor uw media is bijgewerkt"
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr "tot"
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr "Alle %s"
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+
553
+ #: app/admin/BPMediaAdmin.php:363
554
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
555
+ msgstr ""
556
+
557
+ #: app/admin/BPMediaAdmin.php:364
558
+ msgid "Add link to footer"
559
+ msgstr "Voeg footer-link toe "
560
+
561
+ #: app/admin/BPMediaAdmin.php:365
562
+ msgid "Tweet"
563
+ msgstr "Tweet"
564
+
565
+ #: app/admin/BPMediaAdmin.php:366
566
+ msgid "Rate on WordPress.org"
567
+ msgstr "Beoordeel op WordPress.org"
568
+
569
+ #: app/admin/BPMediaAdmin.php:377
570
+ msgid "USD"
571
+ msgstr "USD"
572
+
573
+ #: app/admin/BPMediaAdmin.php:407
574
+ msgid "Subscribe"
575
+ msgstr "Aanmelden"
576
+
577
+ #: app/admin/BPMediaAdmin.php:99
578
+ msgid "BuddyPress Media Convert Videos"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
582
+ msgid "Convert Videos"
583
+ msgstr "Videos converteren"
584
+
585
+ #: app/admin/BPMediaAdmin.php:182
586
+ msgid "By"
587
+ msgstr "Door"
588
+
589
+ #: app/admin/BPMediaAdmin.php:262
590
+ msgid "BuddyPress Media Covert Videos"
591
+ msgstr ""
592
+
593
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
594
+ msgid "Atleast one Media Type Must be selected"
595
+ msgstr "Tenminste één mediatype moet geselecteerd zijn"
596
+
597
+ #: app/helper/BPMediaSettings.php:305
598
+ msgid "Media Type"
599
+ msgstr "Mediatype"
600
+
601
+ #: app/helper/BPMediaSettings.php:603
602
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
603
+ msgstr ""
604
+
605
+ #: app/admin/BPMediaAdmin.php:91
606
+ msgid "BuddyPress Media Database Update"
607
+ msgstr ""
608
+
609
+ #: app/main/privacy/BPMediaPrivacy.php:121
610
+ msgid "<strong>Users</strong>, Visible to registered users"
611
+ msgstr ""
612
+
613
+ #: app/main/privacy/BPMediaPrivacy.php:125
614
+ msgid "<strong>Public</strong>, Visible to the world"
615
+ msgstr ""
616
+
617
+ #: app/helper/BPMediaSettings.php:172
618
+ msgid "Enable menu in WordPress admin bar"
619
+ msgstr ""
620
+
621
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
622
+ msgid "Update Database"
623
+ msgstr "Update Database"
624
+
625
+ #: app/helper/BPMediaSettings.php:132
626
+ msgid "Download Button"
627
+ msgstr "Downloadknop"
628
+
629
+ #: app/helper/BPMediaSettings.php:135
630
+ msgid "Display download button under media"
631
+ msgstr ""
632
+
633
+ #: app/main/BuddyPressMedia.php:306
634
+ msgid "Privacy"
635
+ msgstr "Privacy"
636
+
637
+ #: app/helper/BPMediaSettings.php:140
638
+ msgid "Enable Privacy"
639
+ msgstr "Privacy inschakelen"
640
+
641
+ #: app/helper/BPMediaSettings.php:143
642
+ msgid "Enable privacy"
643
+ msgstr "Privacy inschakelen"
644
+
645
+ #: app/helper/BPMediaSettings.php:161
646
+ msgid "User Override"
647
+ msgstr ""
648
+
649
+ #: app/helper/BPMediaSettings.php:155
650
+ msgid "Default Privacy"
651
+ msgstr ""
652
+
653
+ #: app/helper/BPMediaSettings.php:33
654
+ msgid "Enabled Media Types"
655
+ msgstr ""
656
+
657
+ #: app/helper/BPMediaSettings.php:169
658
+ msgid "Admin bar menu"
659
+ msgstr "Admin bar menu"
660
+
661
+ #: app/helper/BPMediaSettings.php:318
662
+ msgid "Settings saved."
663
+ msgstr "Instellingen bewaard"
664
+
665
+ #: app/main/profile/BPMediaTemplate.php:29
666
+ msgid "Wall Posts"
667
+ msgstr "Berichtenmuur"
668
+
669
+ #: app/main/profile/BPMediaTemplate.php:83
670
+ msgid "+ Create New Album"
671
+ msgstr "Maak een nieuw album"
672
+
673
+ #: app/main/profile/BPMediaTemplate.php:90
674
+ msgid "Cancel"
675
+ msgstr "Annuleer"
676
+
677
+ #: app/main/profile/BPMediaTemplate.php:213
678
+ msgid "Show More"
679
+ msgstr "Toon meer"
680
+
681
+ #: app/main/profile/BPMediaTemplate.php:267
682
+ msgid "Select"
683
+ msgstr "Selecteer"
684
+
685
+ #: app/main/profile/BPMediaTemplate.php:286
686
+ msgid "Add Media"
687
+ msgstr "Voeg media toe"
688
+
689
+ #: app/main/includes/BPMediaFilters.php:158
690
+ msgid "Delete %s"
691
+ msgstr "Verwijder %s"
692
+
693
+ #: app/main/widgets/BPMediaWidget.php:197
694
+ msgid "Widget Type:"
695
+ msgstr "Widget Type:"
696
+
697
+ #: app/main/widgets/BPMediaWidget.php:210
698
+ msgid "Show All"
699
+ msgstr "Toon alles"
700
+
701
+ #: app/main/widgets/BPMediaWidget.php:213
702
+ msgid "Show Photos"
703
+ msgstr "Toon foto's"
704
+
705
+ #: app/main/widgets/BPMediaWidget.php:216
706
+ msgid "Show Music"
707
+ msgstr "Toon muziek"
708
+
709
+ #: app/main/widgets/BPMediaWidget.php:220
710
+ msgid "Show Videos"
711
+ msgstr "Toon video's"
712
+
713
+ #: app/main/widgets/BPMediaWidget.php:20
714
+ msgid "The most recent/popular media uploaded on your site"
715
+ msgstr "De meest recente/populaire media die opgeload werden op uw website"
716
+
717
+ #: app/main/widgets/BPMediaWidget.php:21
718
+ msgid "BuddyPress Media Widget"
719
+ msgstr "BuddyPress Media Widget"
720
+
721
+ #: app/main/widgets/BPMediaWidget.php:150
722
+ msgid "No "
723
+ msgstr "Nee"
724
+
725
+ #: app/main/BuddyPressMedia.php:158
726
+ msgid "BuddyPress is not installed."
727
+ msgstr "BuddyPress is niet geïnstalleerd"
728
+
729
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
730
+ msgid "BuddyPress Media Addons"
731
+ msgstr "BuddyPress Media Toevoegingen"
732
+
733
+ #: app/admin/BPMediaAdmin.php:88
734
+ msgid "BuddyPress Media Component"
735
+ msgstr "BuddyPress Media Component"
736
+
737
+ #: app/helper/BPMediaSupport.php:121
738
+ msgid "Additional Information"
739
+ msgstr "Bijkomende informatie"
740
+
741
+ #: app/helper/BPMediaSettings.php:286
742
+ msgid "Recount Success"
743
+ msgstr "Hertel succes"
744
+
745
+ #: app/helper/BPMediaSettings.php:291
746
+ msgid "Recount Fail"
747
+ msgstr ""
748
+
749
+ #: app/main/includes/BPMediaHostWordpress.php:170
750
+ msgid "MP4 file you have uploaded is corrupt."
751
+ msgstr "Het geuploade MP4 bestand is corrupt"
752
+
753
+ #: app/helper/BPMediaSupport.php:246
754
+ msgid "Thank you for your Feedback/Suggestion."
755
+ msgstr "Bedankt voor je opmerking/suggestie"
756
+
757
+ #: app/helper/BPMediaSupport.php:248
758
+ msgid "Thank you for posting your support request."
759
+ msgstr "Bedankt om je vraag aan de helpdesk te posten."
760
+
761
+ #: app/helper/BPMediaSupport.php:249
762
+ msgid "We will get back to you shortly."
763
+ msgstr "We contacteren je zo snel mogelijk."
764
+
765
+ #: app/helper/BPMediaSupport.php:252
766
+ msgid "Your server failed to send an email."
767
+ msgstr "Uw server kon geen email sturen"
768
+
769
+ #: app/helper/BPMediaSupport.php:253
770
+ msgid "Kindly contact your server support to fix this."
771
+ msgstr "Contacteer uw server support om dit op te lossen."
772
+
773
+ #: app/helper/BPMediaSupport.php:254
774
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
775
+ msgstr "Je kan ook <a href=\"%s\">hier</a> ondersteuning vragen"
776
+
777
+ #: app/helper/BPMediaSupport.php:95
778
+ msgid "Name"
779
+ msgstr "Naam"
780
+
781
+ #: app/helper/BPMediaSupport.php:98
782
+ msgid "Email"
783
+ msgstr "Email"
784
+
785
+ #: app/helper/BPMediaSupport.php:101
786
+ msgid "Website"
787
+ msgstr "Website"
788
+
789
+ #: app/helper/BPMediaSupport.php:104
790
+ msgid "Phone"
791
+ msgstr "Telefoon"
792
+
793
+ #: app/helper/BPMediaSupport.php:107
794
+ msgid "Subject"
795
+ msgstr "Onderwerp"
796
+
797
+ #: app/helper/BPMediaSupport.php:110
798
+ msgid "Details"
799
+ msgstr "Details"
800
+
801
+ #: app/helper/BPMediaSupport.php:161
802
+ msgid "BuddyPress Media Premium Support Request from"
803
+ msgstr "BuddyPress Media Premium Support aanvraagformulier"
804
+
805
+ #: app/helper/BPMediaSupport.php:164
806
+ msgid "BuddyPress Media New Feature Request from"
807
+ msgstr "BuddyPress Media Nieuwe Mogelijkheid Aanvraagformulier"
808
+
809
+ #: app/helper/BPMediaSupport.php:167
810
+ msgid "BuddyPress Media Bug Report from"
811
+ msgstr "BuddyPress Media Fout Aanmeldformulier"
812
+
813
+ #: app/helper/BPMediaSupport.php:170
814
+ msgid "BuddyPress Media Contact from"
815
+ msgstr "BuddyPress Media Contactformulier"
816
+
817
+ #: app/helper/BPMediaSettings.php:358
818
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
819
+ msgstr ""
820
+
821
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
822
+ #: app/helper/BPMediaSettings.php:531
823
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
824
+ msgstr ""
825
+
826
+ #: app/main/includes/BPMediaActions.php:874
827
+ msgid "%1$s created an album %2$s"
828
+ msgstr "%1$s maakte een album %2$s"
829
+
830
+ #: app/main/BPMediaComponent.php:262
831
+ msgid "All Albums"
832
+ msgstr "Alle Albums"
833
+
834
+ #: app/main/BPMediaComponent.php:263
835
+ msgid "View Album"
836
+ msgstr "bekijk Album"
837
+
838
+ #: app/main/BPMediaComponent.php:264
839
+ msgid "Search Albums"
840
+ msgstr "Doorzoek Albums"
841
+
842
+ #: app/main/BPMediaComponent.php:265
843
+ msgid "No album found"
844
+ msgstr "Geen album gevonden"
845
+
846
+ #: app/main/BPMediaComponent.php:266
847
+ msgid "No album found in Trash"
848
+ msgstr "Geen album gevonden in Vuilbak"
849
+
850
+ #: app/main/BPMediaComponent.php:300
851
+ msgid "Add New Media"
852
+ msgstr "Voeg Nieuwe Media toe"
853
+
854
+ #: app/main/BPMediaComponent.php:308
855
+ msgid "BuddyPress Media's Media Files"
856
+ msgstr "BuddyPress Media's Media Bestanden"
857
+
858
+ #: app/main/includes/BPMediaFunction.php:229
859
+ msgid "%1$s added new media in album %2$s"
860
+ msgstr "%1$s voegde nieuwe media toe in album %2$s"
861
+
862
+ #: app/importers/BPMediaAlbumimporter.php:81
863
+ msgid "Users"
864
+ msgstr "Gebruikers"
865
+
866
+ #: app/main/includes/BPMediaFilters.php:410
867
+ msgid "Total Photos"
868
+ msgstr "Totaal foto's"
869
+
870
+ #: app/main/includes/BPMediaFilters.php:411
871
+ msgid "Total Videos"
872
+ msgstr "Totaal Video's"
873
+
874
+ #: app/main/includes/BPMediaFilters.php:412
875
+ msgid "Total Audio"
876
+ msgstr "Totaal Audio"
877
+
878
+ #: app/main/includes/BPMediaFilters.php:413
879
+ msgid "Total Albums"
880
+ msgstr "Totaal Albums"
881
+
882
+ #: app/helper/BPMediaSettings.php:118
883
+ msgid "Groups"
884
+ msgstr ""
885
+
886
+ #: app/main/includes/BPMediaActions.php:348
887
+ msgid "Edit Media"
888
+ msgstr ""
889
+
890
+ #: app/main/profile/BPMediaAlbumScreen.php:246
891
+ msgid "Edit"
892
+ msgstr ""
893
+
894
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
895
+ #: app/main/profile/BPMediaTemplate.php:282
896
+ msgid "Create"
897
+ msgstr ""
898
+
899
+ #: app/main/BPMediaComponent.php:260
900
+ #: app/main/profile/BPMediaAlbumScreen.php:246
901
+ msgid "Edit Album"
902
+ msgstr ""
903
+
904
+ #: app/main/BPMediaComponent.php:261
905
+ msgid "New Album"
906
+ msgstr ""
907
+
908
+ #: app/helper/BPMediaSupport.php:126
909
+ msgid "Your WP Admin Login:"
910
+ msgstr ""
911
+
912
+ #: app/helper/BPMediaSupport.php:129
913
+ msgid "Your WP Admin password:"
914
+ msgstr ""
915
+
916
+ #: app/helper/BPMediaSupport.php:132
917
+ msgid "Your SSH / FTP host:"
918
+ msgstr ""
919
+
920
+ #: app/helper/BPMediaSupport.php:135
921
+ msgid "Your SSH / FTP login:"
922
+ msgstr ""
923
+
924
+ #: app/helper/BPMediaSupport.php:138
925
+ msgid "Your SSH / FTP password:"
926
+ msgstr ""
927
+
928
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
929
+ msgid "Media Title"
930
+ msgstr ""
931
+
932
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
933
+ msgid "Media Description"
934
+ msgstr ""
935
+
936
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
937
+ msgid "Select Media File"
938
+ msgstr ""
939
+
940
+ #: app/main/BPMediaComponent.php:60
941
+ msgid "Search Media..."
942
+ msgstr ""
943
+
944
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
945
+ msgid "BuddyPress Media Support"
946
+ msgstr ""
947
+
948
+ #: app/helper/BPMediaSupport.php:81
949
+ msgid "Submit a Bug Report"
950
+ msgstr ""
951
+
952
+ #: app/helper/BPMediaSupport.php:84
953
+ msgid "Submit a New Feature Request"
954
+ msgstr ""
955
+
956
+ #: app/helper/BPMediaSupport.php:87
957
+ msgid "Submit a Premium Support Request"
958
+ msgstr ""
959
+
960
+ #: app/main/includes/BPMediaHostWordpress.php:615
961
+ msgid "Post"
962
+ msgstr ""
963
+
964
+ #: app/main/includes/BPMediaHostWordpress.php:615
965
+ msgid "or press esc to cancel."
966
+ msgstr ""
967
+
968
+ #: app/main/profile/BPMediaAlbumScreen.php:252
969
+ msgid "Delete"
970
+ msgstr ""
971
+
972
+ #: app/main/includes/BPMediaHostWordpress.php:59
973
+ msgid "Sorry, the requested media does not exist."
974
+ msgstr ""
975
+
976
+ #: app/main/includes/BPMediaHostWordpress.php:137
977
+ msgid "Error Uploading File"
978
+ msgstr ""
979
+
980
+ #: app/main/includes/BPMediaHostWordpress.php:177
981
+ #: app/main/includes/BPMediaHostWordpress.php:182
982
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
983
+ msgstr ""
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:187
986
+ msgid "The MP4 file you have uploaded is not a video file."
987
+ msgstr ""
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:198
990
+ msgid "MP3 file you have uploaded is currupt."
991
+ msgstr ""
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:205
994
+ #: app/main/includes/BPMediaHostWordpress.php:210
995
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
996
+ msgstr ""
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:215
999
+ msgid "The MP3 file you have uploaded is not an audio file."
1000
+ msgstr ""
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:227
1003
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1004
+ msgstr ""
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:236
1007
+ msgid "Error creating attachment for the media file, please try again"
1008
+ msgstr ""
1009
+
1010
+ #: app/main/includes/BPMediaHostWordpress.php:346
1011
+ msgid "%s uploaded a media."
1012
+ msgstr ""
1013
+
1014
+ #: app/main/includes/BPMediaHostWordpress.php:367
1015
+ msgid "Uploaded by "
1016
+ msgstr ""
1017
+
1018
+ #: app/main/includes/BPMediaHostWordpress.php:590
1019
+ msgid "Comment <span>%s</span>"
1020
+ msgstr ""
1021
+
1022
+ #: app/main/includes/BPMediaHostWordpress.php:594
1023
+ msgid "Favorite"
1024
+ msgstr ""
1025
+
1026
+ #: app/main/includes/BPMediaHostWordpress.php:596
1027
+ msgid "Remove Favorite"
1028
+ msgstr ""
1029
+
1030
+ #: app/main/widgets/BPMediaWidget.php:203
1031
+ msgid "Title:"
1032
+ msgstr ""
1033
+
1034
+ #: app/main/widgets/BPMediaWidget.php:206
1035
+ msgid "Number of posts to show:"
1036
+ msgstr ""
1037
+
1038
+ #: app/main/widgets/BPMediaWidget.php:199
1039
+ msgid "Recent Media"
1040
+ msgstr ""
1041
+
1042
+ #: app/main/widgets/BPMediaWidget.php:72
1043
+ msgid "All"
1044
+ msgstr ""
1045
+
1046
+ #: app/main/group/BPMediaGroupsExtension.php:41
1047
+ #: app/main/group/BPMediaGroupsExtension.php:88
1048
+ msgid "Who can create Albums in this group?"
1049
+ msgstr ""
1050
+
1051
+ #: app/main/group/BPMediaGroupsExtension.php:45
1052
+ #: app/main/group/BPMediaGroupsExtension.php:92
1053
+ msgid "All Group Members"
1054
+ msgstr ""
1055
+
1056
+ #: app/main/group/BPMediaGroupsExtension.php:49
1057
+ #: app/main/group/BPMediaGroupsExtension.php:96
1058
+ msgid "Group Admins and Mods only"
1059
+ msgstr ""
1060
+
1061
+ #: app/main/group/BPMediaGroupsExtension.php:53
1062
+ #: app/main/group/BPMediaGroupsExtension.php:100
1063
+ msgid "Group Admin only"
1064
+ msgstr ""
1065
+
1066
+ #: app/main/group/BPMediaGroupsExtension.php:104
1067
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1068
+ msgid "Save Changes"
1069
+ msgstr ""
1070
+
1071
+ #: app/main/group/BPMediaGroupsExtension.php:130
1072
+ msgid "There was an error saving, please try again"
1073
+ msgstr ""
1074
+
1075
+ #: app/main/group/BPMediaGroupsExtension.php:132
1076
+ msgid "Settings saved successfully"
1077
+ msgstr ""
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:153
1080
+ msgid ""
1081
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1082
+ "\t home screen."
1083
+ msgstr ""
1084
+
1085
+ #: app/main/widgets/BPMediaWidget.php:200
1086
+ msgid "Popular Media"
1087
+ msgstr ""
1088
+
1089
+ #: app/main/profile/BPMediaScreen.php:396
1090
+ msgid "Media deleted successfully"
1091
+ msgstr ""
1092
+
1093
+ #: app/main/profile/BPMediaTemplate.php:98
1094
+ #: app/main/profile/BPMediaUploadScreen.php:33
1095
+ msgid "Upload Media"
1096
+ msgstr ""
1097
+
1098
+ #: app/main/profile/BPMediaUploadScreen.php:71
1099
+ msgid "You are not allowed to be here"
1100
+ msgstr ""
1101
+
1102
+ #: app/main/profile/BPMediaUploadScreen.php:98
1103
+ #: app/main/profile/BPMediaUploadScreen.php:122
1104
+ msgid "File uploaded is not supported"
1105
+ msgstr ""
1106
+
1107
+ #: app/main/profile/BPMediaUploadScreen.php:105
1108
+ msgid "Image uploads are disabled"
1109
+ msgstr ""
1110
+
1111
+ #: app/main/profile/BPMediaUploadScreen.php:111
1112
+ msgid "Video uploads are disabled"
1113
+ msgstr ""
1114
+
1115
+ #: app/main/profile/BPMediaUploadScreen.php:117
1116
+ msgid "Audio uploads are disabled"
1117
+ msgstr ""
1118
+
1119
+ #: app/main/profile/BPMediaUploadScreen.php:135
1120
+ msgid "Upload Successful"
1121
+ msgstr ""
1122
+
1123
+ #: app/main/profile/BPMediaUploadScreen.php:140
1124
+ msgid "You did not specified a file to upload"
1125
+ msgstr ""
1126
+
1127
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1128
+ msgid "Sorry, no media items were found in this album."
1129
+ msgstr ""
1130
+
1131
+ #: app/main/profile/BPMediaAlbum.php:74
1132
+ msgid "Sorry, the requested album does not exist."
1133
+ msgstr ""
1134
+
1135
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1136
+ msgid "Sorry, the requested media does not belong to the group"
1137
+ msgstr ""
1138
+
1139
+ #: app/main/BPMediaGroupLoader.php:252
1140
+ msgid "Media Settings"
1141
+ msgstr ""
1142
+
1143
+ #: app/main/group/BPMediaGroupsExtension.php:40
1144
+ #: app/main/group/BPMediaGroupsExtension.php:87
1145
+ msgid "Album Creation Control"
1146
+ msgstr ""
1147
+
1148
+ #: app/main/profile/BPMediaScreen.php:114
1149
+ #: app/main/profile/BPMediaScreen.php:374
1150
+ msgid "The requested url does not exist"
1151
+ msgstr ""
1152
+
1153
+ #: app/main/profile/BPMediaScreen.php:196
1154
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1155
+ msgid "Sorry, no %s were found."
1156
+ msgstr ""
1157
+
1158
+ #: app/main/profile/BPMediaScreen.php:307
1159
+ msgid "Edit %s"
1160
+ msgstr ""
1161
+
1162
+ #: app/main/profile/BPMediaScreen.php:328
1163
+ msgid "%s Title"
1164
+ msgstr ""
1165
+
1166
+ #: app/main/profile/BPMediaScreen.php:334
1167
+ msgid "%s Description"
1168
+ msgstr ""
1169
+
1170
+ #: app/main/profile/BPMediaScreen.php:342
1171
+ msgid "Update"
1172
+ msgstr ""
1173
+
1174
+ #: app/main/profile/BPMediaScreen.php:343
1175
+ msgid "Back to Media File"
1176
+ msgstr ""
1177
+
1178
+ #: app/main/profile/BPMediaScreen.php:344
1179
+ msgid "Back to Media"
1180
+ msgstr ""
1181
+
1182
+ #: app/main/profile/BPMediaScreen.php:367
1183
+ msgid "You do not have access to this page."
1184
+ msgstr ""
1185
+
1186
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1187
+ #: app/main/BuddyPressMedia.php:327
1188
+ msgid "Albums"
1189
+ msgstr ""
1190
+
1191
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1192
+ msgid "Album"
1193
+ msgstr ""
1194
+
1195
+ #: app/main/BuddyPressMedia.php:333
1196
+ msgid "Upload"
1197
+ msgstr ""
1198
+
1199
+ #: app/main/profile/BPMediaTemplate.php:246
1200
+ msgid "Select Album"
1201
+ msgstr ""
1202
+
1203
+ #: app/main/profile/BPMediaTemplate.php:247
1204
+ #: app/main/profile/BPMediaTemplate.php:275
1205
+ msgid "x"
1206
+ msgstr ""
1207
+
1208
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1209
+ #: app/main/profile/BPMediaTemplate.php:274
1210
+ msgid "Create Album"
1211
+ msgstr ""
1212
+
1213
+ #: app/main/profile/BPMediaTemplate.php:278
1214
+ msgid "Album Name"
1215
+ msgstr ""
1216
+
1217
+ #: app/main/profile/BPMediaTemplate.php:96
1218
+ msgid "Drop files here"
1219
+ msgstr ""
1220
+
1221
+ #: app/main/profile/BPMediaTemplate.php:97
1222
+ msgid " or "
1223
+ msgstr ""
1224
+
1225
+ #: app/admin/BPMediaAdmin.php:410
1226
+ msgid "Latest News"
1227
+ msgstr ""
1228
+
1229
+ #: app/helper/BPMediaSettings.php:34
1230
+ msgid "Photos"
1231
+ msgstr ""
1232
+
1233
+ #: app/main/BuddyPressMedia.php:312
1234
+ msgid "Photo"
1235
+ msgstr ""
1236
+
1237
+ #: app/main/BuddyPressMedia.php:315
1238
+ msgid "Videos"
1239
+ msgstr ""
1240
+
1241
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1242
+ msgid "Music"
1243
+ msgstr ""
1244
+
1245
+ #: app/admin/BPMediaAdmin.php:389
1246
+ msgid "Donate"
1247
+ msgstr ""
1248
+
1249
+ #: app/admin/BPMediaAdmin.php:405
1250
+ msgid "RSS Feed"
1251
+ msgstr ""
1252
+
1253
+ #: app/admin/BPMediaAdmin.php:403
1254
+ msgid "Facebook"
1255
+ msgstr ""
1256
+
1257
+ #: app/admin/BPMediaAdmin.php:404
1258
+ msgid "Follow us on Twitter"
1259
+ msgstr ""
1260
+
1261
+ #: app/admin/BPMediaAdmin.php:404
1262
+ msgid "Twitter"
1263
+ msgstr ""
1264
+
1265
+ #: app/admin/BPMediaAdmin.php:405
1266
+ msgid "Subscribe to our feeds"
1267
+ msgstr ""
1268
+
1269
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1270
+ msgid "Addons"
1271
+ msgstr ""
1272
+
1273
+ #: app/admin/BPMediaAdmin.php:97
1274
+ msgid "Support "
1275
+ msgstr ""
1276
+
1277
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1278
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1279
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1280
+ #: app/main/BuddyPressMedia.php:304
1281
+ msgid "Media"
1282
+ msgstr ""
1283
+
1284
+ #: app/helper/BPMediaSettings.php:184
1285
+ msgid "Support"
1286
+ msgstr ""
1287
+
1288
+ #: app/admin/BPMediaAdmin.php:182
1289
+ msgid "Empowering The Web With WordPress"
1290
+ msgstr ""
1291
+
1292
+ #: app/admin/BPMediaAdmin.php:403
1293
+ msgid "Become a fan on Facebook"
1294
+ msgstr ""
1295
+
1296
+ #: app/helper/BPMediaSettings.php:182
1297
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1298
+ msgstr ""
1299
+
1300
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1301
+ msgid "Recounting of media files done successfully"
1302
+ msgstr ""
1303
+
1304
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1305
+ msgid "Recounting Failed"
1306
+ msgstr ""
1307
+
1308
+ #: app/helper/BPMediaSettings.php:405
1309
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1310
+ msgstr ""
1311
+
1312
+ #: app/helper/BPMediaSettings.php:533
1313
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1314
+ msgstr ""
1315
+
1316
+ #: app/helper/BPMediaAddon.php:49
1317
+ msgid "BuddyPress-Media Kaltura Add-on"
1318
+ msgstr ""
1319
+
1320
+ #: app/helper/BPMediaAddon.php:52
1321
+ msgid "Add support for more video formats using Kaltura video solution."
1322
+ msgstr ""
1323
+
1324
+ #: app/helper/BPMediaAddon.php:53
1325
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1326
+ msgstr ""
1327
+
1328
+ #: app/helper/BPMediaAddon.php:59
1329
+ msgid "BuddyPress-Media FFMPEG Add-on"
1330
+ msgstr ""
1331
+
1332
+ #: app/helper/BPMediaAddon.php:62
1333
+ msgid "Add supports for more audio & video formats using open-source media-node."
1334
+ msgstr ""
1335
+
1336
+ #: app/helper/BPMediaAddon.php:63
1337
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1338
+ msgstr ""
1339
+
1340
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1341
+ msgid "Buy Now"
1342
+ msgstr ""
1343
+
1344
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1345
+ msgid "Live Demo"
1346
+ msgstr ""
1347
+
1348
+ #: app/main/group/BPMediaGroupAction.php:124
1349
+ #: app/main/includes/BPMediaHostWordpress.php:742
1350
+ msgid "%1$s added a %2$s"
1351
+ msgstr ""
1352
+
1353
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1354
+ #: app/admin/BPMediaAdmin.php:213
1355
+ msgid "BuddyPress Media"
1356
+ msgstr ""
1357
+
1358
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1359
+ #: app/main/BuddyPressMedia.php:443
1360
+ msgid "Settings"
1361
+ msgstr ""
1362
+
1363
+ #: app/helper/BPMediaFeed.php:43
1364
+ msgid "No items"
1365
+ msgstr ""
1366
+
1367
+ #: app/helper/BPMediaFeed.php:49
1368
+ msgid "Posted "
1369
+ msgstr ""
1370
+
1371
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1372
+ msgid "BuddyPress Media Settings"
1373
+ msgstr ""
1374
+
1375
+ #: app/helper/BPMediaSettings.php:39
1376
+ msgid "Video"
1377
+ msgstr ""
1378
+
1379
+ #: app/helper/BPMediaSettings.php:44
1380
+ msgid "Audio"
1381
+ msgstr ""
1382
+
1383
+ #: app/main/includes/BPMediaActions.php:330
1384
+ msgid "Download"
1385
+ msgstr ""
1386
+
1387
+ #: app/admin/BPMediaAdmin.php:367
1388
+ msgid "Spread the Word"
1389
+ msgstr ""
1390
+
1391
+ #: app/helper/BPMediaAdminWidget.php:29
1392
+ msgid "Argument missing. id is required."
1393
+ msgstr ""
languages/buddypress-media-pl_PL.po ADDED
@@ -0,0 +1,1395 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Polish
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:23+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr ""
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr ""
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr ""
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr ""
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr ""
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr ""
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr ""
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr ""
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr ""
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr ""
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr ""
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr ""
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr ""
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr ""
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr ""
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr ""
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr ""
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr ""
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr ""
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr ""
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr ""
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr ""
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr ""
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr ""
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr ""
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr ""
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr ""
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr ""
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr ""
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr ""
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr ""
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+
553
+ #: app/admin/BPMediaAdmin.php:363
554
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
555
+ msgstr ""
556
+
557
+ #: app/admin/BPMediaAdmin.php:364
558
+ msgid "Add link to footer"
559
+ msgstr ""
560
+
561
+ #: app/admin/BPMediaAdmin.php:365
562
+ msgid "Tweet"
563
+ msgstr ""
564
+
565
+ #: app/admin/BPMediaAdmin.php:366
566
+ msgid "Rate on WordPress.org"
567
+ msgstr ""
568
+
569
+ #: app/admin/BPMediaAdmin.php:377
570
+ msgid "USD"
571
+ msgstr ""
572
+
573
+ #: app/admin/BPMediaAdmin.php:407
574
+ msgid "Subscribe"
575
+ msgstr ""
576
+
577
+ #: app/admin/BPMediaAdmin.php:99
578
+ msgid "BuddyPress Media Convert Videos"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
582
+ msgid "Convert Videos"
583
+ msgstr ""
584
+
585
+ #: app/admin/BPMediaAdmin.php:182
586
+ msgid "By"
587
+ msgstr ""
588
+
589
+ #: app/admin/BPMediaAdmin.php:262
590
+ msgid "BuddyPress Media Covert Videos"
591
+ msgstr ""
592
+
593
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
594
+ msgid "Atleast one Media Type Must be selected"
595
+ msgstr ""
596
+
597
+ #: app/helper/BPMediaSettings.php:305
598
+ msgid "Media Type"
599
+ msgstr ""
600
+
601
+ #: app/helper/BPMediaSettings.php:603
602
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
603
+ msgstr ""
604
+
605
+ #: app/admin/BPMediaAdmin.php:91
606
+ msgid "BuddyPress Media Database Update"
607
+ msgstr ""
608
+
609
+ #: app/main/privacy/BPMediaPrivacy.php:121
610
+ msgid "<strong>Users</strong>, Visible to registered users"
611
+ msgstr ""
612
+
613
+ #: app/main/privacy/BPMediaPrivacy.php:125
614
+ msgid "<strong>Public</strong>, Visible to the world"
615
+ msgstr ""
616
+
617
+ #: app/helper/BPMediaSettings.php:172
618
+ msgid "Enable menu in WordPress admin bar"
619
+ msgstr ""
620
+
621
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
622
+ msgid "Update Database"
623
+ msgstr ""
624
+
625
+ #: app/helper/BPMediaSettings.php:132
626
+ msgid "Download Button"
627
+ msgstr ""
628
+
629
+ #: app/helper/BPMediaSettings.php:135
630
+ msgid "Display download button under media"
631
+ msgstr ""
632
+
633
+ #: app/main/BuddyPressMedia.php:306
634
+ msgid "Privacy"
635
+ msgstr ""
636
+
637
+ #: app/helper/BPMediaSettings.php:140
638
+ msgid "Enable Privacy"
639
+ msgstr ""
640
+
641
+ #: app/helper/BPMediaSettings.php:143
642
+ msgid "Enable privacy"
643
+ msgstr ""
644
+
645
+ #: app/helper/BPMediaSettings.php:161
646
+ msgid "User Override"
647
+ msgstr ""
648
+
649
+ #: app/helper/BPMediaSettings.php:155
650
+ msgid "Default Privacy"
651
+ msgstr ""
652
+
653
+ #: app/helper/BPMediaSettings.php:33
654
+ msgid "Enabled Media Types"
655
+ msgstr ""
656
+
657
+ #: app/helper/BPMediaSettings.php:169
658
+ msgid "Admin bar menu"
659
+ msgstr ""
660
+
661
+ #: app/helper/BPMediaSettings.php:318
662
+ msgid "Settings saved."
663
+ msgstr "Ustawienia zapisane"
664
+
665
+ #: app/main/profile/BPMediaTemplate.php:29
666
+ msgid "Wall Posts"
667
+ msgstr "Tablica"
668
+
669
+ #: app/main/profile/BPMediaTemplate.php:83
670
+ msgid "+ Create New Album"
671
+ msgstr "+ Stwórz album"
672
+
673
+ #: app/main/profile/BPMediaTemplate.php:90
674
+ msgid "Cancel"
675
+ msgstr "Anuluj"
676
+
677
+ #: app/main/profile/BPMediaTemplate.php:213
678
+ msgid "Show More"
679
+ msgstr "Pokaż więcej"
680
+
681
+ #: app/main/profile/BPMediaTemplate.php:267
682
+ msgid "Select"
683
+ msgstr "Wybierz"
684
+
685
+ #: app/main/profile/BPMediaTemplate.php:286
686
+ msgid "Add Media"
687
+ msgstr "Dodaj Media"
688
+
689
+ #: app/main/includes/BPMediaFilters.php:158
690
+ msgid "Delete %s"
691
+ msgstr "Usuń %s"
692
+
693
+ #: app/main/widgets/BPMediaWidget.php:197
694
+ msgid "Widget Type:"
695
+ msgstr "Typ widgetu"
696
+
697
+ #: app/main/widgets/BPMediaWidget.php:210
698
+ msgid "Show All"
699
+ msgstr "Pokaż wszystko"
700
+
701
+ #: app/main/widgets/BPMediaWidget.php:213
702
+ msgid "Show Photos"
703
+ msgstr "Pokaż zdjęcia"
704
+
705
+ #: app/main/widgets/BPMediaWidget.php:216
706
+ msgid "Show Music"
707
+ msgstr "Pokaż muzykę"
708
+
709
+ #: app/main/widgets/BPMediaWidget.php:220
710
+ msgid "Show Videos"
711
+ msgstr "Pokaż wideo"
712
+
713
+ #: app/main/widgets/BPMediaWidget.php:20
714
+ msgid "The most recent/popular media uploaded on your site"
715
+ msgstr "Najnowsze/najczęstsze media dodawane do strony."
716
+
717
+ #: app/main/widgets/BPMediaWidget.php:21
718
+ msgid "BuddyPress Media Widget"
719
+ msgstr "BuddyPress Media Widget"
720
+
721
+ #: app/main/widgets/BPMediaWidget.php:150
722
+ msgid "No "
723
+ msgstr "Nie"
724
+
725
+ #: app/main/BuddyPressMedia.php:158
726
+ msgid "BuddyPress is not installed."
727
+ msgstr "BuddyPress jest niezainstalowany"
728
+
729
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
730
+ msgid "BuddyPress Media Addons"
731
+ msgstr "BuddyPress Media dodatki"
732
+
733
+ #: app/admin/BPMediaAdmin.php:88
734
+ msgid "BuddyPress Media Component"
735
+ msgstr "BuddyPress Media Komponent"
736
+
737
+ #: app/helper/BPMediaSupport.php:121
738
+ msgid "Additional Information"
739
+ msgstr "Dodaj informację"
740
+
741
+ #: app/helper/BPMediaSettings.php:286
742
+ msgid "Recount Success"
743
+ msgstr "Przeliczanie powiodło się"
744
+
745
+ #: app/helper/BPMediaSettings.php:291
746
+ msgid "Recount Fail"
747
+ msgstr "Błąd przeliczania"
748
+
749
+ #: app/main/includes/BPMediaHostWordpress.php:170
750
+ msgid "MP4 file you have uploaded is corrupt."
751
+ msgstr "Plik .mp4 jest uszkodzony"
752
+
753
+ #: app/helper/BPMediaSupport.php:246
754
+ msgid "Thank you for your Feedback/Suggestion."
755
+ msgstr "Dziękujemy za zgłoszenie/sugestie"
756
+
757
+ #: app/helper/BPMediaSupport.php:248
758
+ msgid "Thank you for posting your support request."
759
+ msgstr "Dziękujemy za zgłoszenie prośby do supportu"
760
+
761
+ #: app/helper/BPMediaSupport.php:249
762
+ msgid "We will get back to you shortly."
763
+ msgstr "Wrócimy do was wkrótce."
764
+
765
+ #: app/helper/BPMediaSupport.php:252
766
+ msgid "Your server failed to send an email."
767
+ msgstr "Wysyłanie e-maila nie powiodło się ze względu na problemy związane z serwerem"
768
+
769
+ #: app/helper/BPMediaSupport.php:253
770
+ msgid "Kindly contact your server support to fix this."
771
+ msgstr "Prosimy skontakotwać się z obsługą serwera aby to naprawić"
772
+
773
+ #: app/helper/BPMediaSupport.php:254
774
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
775
+ msgstr "Można ewentualnie utworzyć żądanie wsparcia <a href=\"%s\">here</a>"
776
+
777
+ #: app/helper/BPMediaSupport.php:95
778
+ msgid "Name"
779
+ msgstr "Imię"
780
+
781
+ #: app/helper/BPMediaSupport.php:98
782
+ msgid "Email"
783
+ msgstr "Adres e-mail"
784
+
785
+ #: app/helper/BPMediaSupport.php:101
786
+ msgid "Website"
787
+ msgstr "Strona"
788
+
789
+ #: app/helper/BPMediaSupport.php:104
790
+ msgid "Phone"
791
+ msgstr "Telefon"
792
+
793
+ #: app/helper/BPMediaSupport.php:107
794
+ msgid "Subject"
795
+ msgstr "Przedmiot"
796
+
797
+ #: app/helper/BPMediaSupport.php:110
798
+ msgid "Details"
799
+ msgstr "Detale"
800
+
801
+ #: app/helper/BPMediaSupport.php:161
802
+ msgid "BuddyPress Media Premium Support Request from"
803
+ msgstr "BuddyPress Media Premium support żądanie pochodzi z"
804
+
805
+ #: app/helper/BPMediaSupport.php:164
806
+ msgid "BuddyPress Media New Feature Request from"
807
+ msgstr "BuddyPresss Media nowości pochodzą z "
808
+
809
+ #: app/helper/BPMediaSupport.php:167
810
+ msgid "BuddyPress Media Bug Report from"
811
+ msgstr "BuddyPress Media Błąd pochodzi z"
812
+
813
+ #: app/helper/BPMediaSupport.php:170
814
+ msgid "BuddyPress Media Contact from"
815
+ msgstr "BuddyPress Media kontakt pochodzi z"
816
+
817
+ #: app/helper/BPMediaSettings.php:358
818
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
819
+ msgstr "Proszę podać \"option\" wartość ( required ) argumentu. Przekazać argumentdo add_settings_field in the following format array( 'option' => 'option_name' ) "
820
+
821
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
822
+ #: app/helper/BPMediaSettings.php:531
823
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
824
+ msgstr "Proszę podać \"option\" wartość ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
825
+
826
+ #: app/main/includes/BPMediaActions.php:874
827
+ msgid "%1$s created an album %2$s"
828
+ msgstr "%1$s utwórz album %2$s"
829
+
830
+ #: app/main/BPMediaComponent.php:262
831
+ msgid "All Albums"
832
+ msgstr "Wszystkie albumy"
833
+
834
+ #: app/main/BPMediaComponent.php:263
835
+ msgid "View Album"
836
+ msgstr "Wyświetl album"
837
+
838
+ #: app/main/BPMediaComponent.php:264
839
+ msgid "Search Albums"
840
+ msgstr "Szukaj albumu"
841
+
842
+ #: app/main/BPMediaComponent.php:265
843
+ msgid "No album found"
844
+ msgstr "Albumu nie znalezioni"
845
+
846
+ #: app/main/BPMediaComponent.php:266
847
+ msgid "No album found in Trash"
848
+ msgstr "Album nie znajduje się w koszu"
849
+
850
+ #: app/main/BPMediaComponent.php:300
851
+ msgid "Add New Media"
852
+ msgstr "Dodaj nowe media"
853
+
854
+ #: app/main/BPMediaComponent.php:308
855
+ msgid "BuddyPress Media's Media Files"
856
+ msgstr "BuddyPress Media jest plikiem media"
857
+
858
+ #: app/main/includes/BPMediaFunction.php:229
859
+ msgid "%1$s added new media in album %2$s"
860
+ msgstr "%1$s added new media in album %2$s"
861
+
862
+ #: app/importers/BPMediaAlbumimporter.php:81
863
+ msgid "Users"
864
+ msgstr "Użytkownicy"
865
+
866
+ #: app/main/includes/BPMediaFilters.php:410
867
+ msgid "Total Photos"
868
+ msgstr "Łącznie zdjęć"
869
+
870
+ #: app/main/includes/BPMediaFilters.php:411
871
+ msgid "Total Videos"
872
+ msgstr "Łącznie wideo"
873
+
874
+ #: app/main/includes/BPMediaFilters.php:412
875
+ msgid "Total Audio"
876
+ msgstr "Łącznie audio"
877
+
878
+ #: app/main/includes/BPMediaFilters.php:413
879
+ msgid "Total Albums"
880
+ msgstr "Łącznie albumów"
881
+
882
+ #: app/helper/BPMediaSettings.php:118
883
+ msgid "Groups"
884
+ msgstr "Grupy"
885
+
886
+ #: app/main/includes/BPMediaActions.php:348
887
+ msgid "Edit Media"
888
+ msgstr "Edytuj media"
889
+
890
+ #: app/main/profile/BPMediaAlbumScreen.php:246
891
+ msgid "Edit"
892
+ msgstr "Edytuj"
893
+
894
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
895
+ #: app/main/profile/BPMediaTemplate.php:282
896
+ msgid "Create"
897
+ msgstr "Stwórz"
898
+
899
+ #: app/main/BPMediaComponent.php:260
900
+ #: app/main/profile/BPMediaAlbumScreen.php:246
901
+ msgid "Edit Album"
902
+ msgstr "Edytuj album"
903
+
904
+ #: app/main/BPMediaComponent.php:261
905
+ msgid "New Album"
906
+ msgstr "Nowy album"
907
+
908
+ #: app/helper/BPMediaSupport.php:126
909
+ msgid "Your WP Admin Login:"
910
+ msgstr "Twój login administratora WP"
911
+
912
+ #: app/helper/BPMediaSupport.php:129
913
+ msgid "Your WP Admin password:"
914
+ msgstr "Twoje hasło administratora WP"
915
+
916
+ #: app/helper/BPMediaSupport.php:132
917
+ msgid "Your SSH / FTP host:"
918
+ msgstr "Twój SSH / FTP host"
919
+
920
+ #: app/helper/BPMediaSupport.php:135
921
+ msgid "Your SSH / FTP login:"
922
+ msgstr "Twój SSH / FTP login"
923
+
924
+ #: app/helper/BPMediaSupport.php:138
925
+ msgid "Your SSH / FTP password:"
926
+ msgstr "Twoje SSH / FTP hasło"
927
+
928
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
929
+ msgid "Media Title"
930
+ msgstr "Tytuł mediów"
931
+
932
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
933
+ msgid "Media Description"
934
+ msgstr "Opis mediów"
935
+
936
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
937
+ msgid "Select Media File"
938
+ msgstr "Wybierz plik media"
939
+
940
+ #: app/main/BPMediaComponent.php:60
941
+ msgid "Search Media..."
942
+ msgstr "Przeszukaj media"
943
+
944
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
945
+ msgid "BuddyPress Media Support"
946
+ msgstr "BuddyPress Media Support"
947
+
948
+ #: app/helper/BPMediaSupport.php:81
949
+ msgid "Submit a Bug Report"
950
+ msgstr "Prześlij raport błędów"
951
+
952
+ #: app/helper/BPMediaSupport.php:84
953
+ msgid "Submit a New Feature Request"
954
+ msgstr "Prześlij nowe żądane"
955
+
956
+ #: app/helper/BPMediaSupport.php:87
957
+ msgid "Submit a Premium Support Request"
958
+ msgstr "Prześlij żądanie do supportu"
959
+
960
+ #: app/main/includes/BPMediaHostWordpress.php:615
961
+ msgid "Post"
962
+ msgstr "Zamieść"
963
+
964
+ #: app/main/includes/BPMediaHostWordpress.php:615
965
+ msgid "or press esc to cancel."
966
+ msgstr "lub wciśnij ESC aby anulować"
967
+
968
+ #: app/main/profile/BPMediaAlbumScreen.php:252
969
+ msgid "Delete"
970
+ msgstr "Usuń"
971
+
972
+ #: app/main/includes/BPMediaHostWordpress.php:59
973
+ msgid "Sorry, the requested media does not exist."
974
+ msgstr "Wybacz, żądane media nie istnieją"
975
+
976
+ #: app/main/includes/BPMediaHostWordpress.php:137
977
+ msgid "Error Uploading File"
978
+ msgstr "Błąd dodawania pliku"
979
+
980
+ #: app/main/includes/BPMediaHostWordpress.php:177
981
+ #: app/main/includes/BPMediaHostWordpress.php:182
982
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
983
+ msgstr "Aby dodać plik .mp4 musisz posiadać obsługiwany kodek. Obłusgiwany kodedk to H.264"
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:187
986
+ msgid "The MP4 file you have uploaded is not a video file."
987
+ msgstr "Plik .mp4 nie jest plikiem wideo."
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:198
990
+ msgid "MP3 file you have uploaded is currupt."
991
+ msgstr "Plik .mp3 jest uszkodzony"
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:205
994
+ #: app/main/includes/BPMediaHostWordpress.php:210
995
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
996
+ msgstr "Aby dodać plik .mp3 musisz posiadać obsługiwany kodek. Obsługiwany w formacie .mp3"
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:215
999
+ msgid "The MP3 file you have uploaded is not an audio file."
1000
+ msgstr "Plik .mp3 nie jest plikiem muzycznym."
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:227
1003
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1004
+ msgstr "Wgrywane media pliki nie są obsługiwane. Obsługujemy tylko pliki .jpg, .png, .gif, .mp3, .mov and .mp4."
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:236
1007
+ msgid "Error creating attachment for the media file, please try again"
1008
+ msgstr "Wystąpił błąd, spróbuj ponownie później"
1009
+
1010
+ #: app/main/includes/BPMediaHostWordpress.php:346
1011
+ msgid "%s uploaded a media."
1012
+ msgstr "%s dodaj media"
1013
+
1014
+ #: app/main/includes/BPMediaHostWordpress.php:367
1015
+ msgid "Uploaded by "
1016
+ msgstr "Dodane przez"
1017
+
1018
+ #: app/main/includes/BPMediaHostWordpress.php:590
1019
+ msgid "Comment <span>%s</span>"
1020
+ msgstr "Komentarz <span>%s</span>"
1021
+
1022
+ #: app/main/includes/BPMediaHostWordpress.php:594
1023
+ msgid "Favorite"
1024
+ msgstr "Ulubione"
1025
+
1026
+ #: app/main/includes/BPMediaHostWordpress.php:596
1027
+ msgid "Remove Favorite"
1028
+ msgstr "Usuń ulubione"
1029
+
1030
+ #: app/main/widgets/BPMediaWidget.php:203
1031
+ msgid "Title:"
1032
+ msgstr "Tytuł:"
1033
+
1034
+ #: app/main/widgets/BPMediaWidget.php:206
1035
+ msgid "Number of posts to show:"
1036
+ msgstr "Ilość postów do wyświetlenia"
1037
+
1038
+ #: app/main/widgets/BPMediaWidget.php:199
1039
+ msgid "Recent Media"
1040
+ msgstr "Najnowsze media"
1041
+
1042
+ #: app/main/widgets/BPMediaWidget.php:72
1043
+ msgid "All"
1044
+ msgstr "Wszystko"
1045
+
1046
+ #: app/main/group/BPMediaGroupsExtension.php:41
1047
+ #: app/main/group/BPMediaGroupsExtension.php:88
1048
+ msgid "Who can create Albums in this group?"
1049
+ msgstr "Kto chce stworzyć album dla tej grupy"
1050
+
1051
+ #: app/main/group/BPMediaGroupsExtension.php:45
1052
+ #: app/main/group/BPMediaGroupsExtension.php:92
1053
+ msgid "All Group Members"
1054
+ msgstr "Wszyscy użytkownicy grupy"
1055
+
1056
+ #: app/main/group/BPMediaGroupsExtension.php:49
1057
+ #: app/main/group/BPMediaGroupsExtension.php:96
1058
+ msgid "Group Admins and Mods only"
1059
+ msgstr "Tylko grupa adminów i modów"
1060
+
1061
+ #: app/main/group/BPMediaGroupsExtension.php:53
1062
+ #: app/main/group/BPMediaGroupsExtension.php:100
1063
+ msgid "Group Admin only"
1064
+ msgstr "Tylko grupa adminów"
1065
+
1066
+ #: app/main/group/BPMediaGroupsExtension.php:104
1067
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1068
+ msgid "Save Changes"
1069
+ msgstr "Zapisz ustawienia"
1070
+
1071
+ #: app/main/group/BPMediaGroupsExtension.php:130
1072
+ msgid "There was an error saving, please try again"
1073
+ msgstr "Wystąpił błąd, spróbuj później"
1074
+
1075
+ #: app/main/group/BPMediaGroupsExtension.php:132
1076
+ msgid "Settings saved successfully"
1077
+ msgstr "Ustawienia zostały zapisane pomyślnie"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:153
1080
+ msgid ""
1081
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1082
+ "\t home screen."
1083
+ msgstr ""
1084
+ "Można wyświetlić niewielki fragment informacji ze swojego rozszerzenia grupy tutaj.It will show on the group\n"
1085
+ "\t home screen."
1086
+
1087
+ #: app/main/widgets/BPMediaWidget.php:200
1088
+ msgid "Popular Media"
1089
+ msgstr "Pupularne media"
1090
+
1091
+ #: app/main/profile/BPMediaScreen.php:396
1092
+ msgid "Media deleted successfully"
1093
+ msgstr "Usuwanie mediów powiodło się."
1094
+
1095
+ #: app/main/profile/BPMediaTemplate.php:98
1096
+ #: app/main/profile/BPMediaUploadScreen.php:33
1097
+ msgid "Upload Media"
1098
+ msgstr "Dodaj Media"
1099
+
1100
+ #: app/main/profile/BPMediaUploadScreen.php:71
1101
+ msgid "You are not allowed to be here"
1102
+ msgstr "Nie możesz być tutaj"
1103
+
1104
+ #: app/main/profile/BPMediaUploadScreen.php:98
1105
+ #: app/main/profile/BPMediaUploadScreen.php:122
1106
+ msgid "File uploaded is not supported"
1107
+ msgstr "Dodawanie plików nie jest obsługiwane"
1108
+
1109
+ #: app/main/profile/BPMediaUploadScreen.php:105
1110
+ msgid "Image uploads are disabled"
1111
+ msgstr "Dodawanie zdjęć nie jest obsługiwane"
1112
+
1113
+ #: app/main/profile/BPMediaUploadScreen.php:111
1114
+ msgid "Video uploads are disabled"
1115
+ msgstr "Dodawanie wideo nie jest obsługiwane"
1116
+
1117
+ #: app/main/profile/BPMediaUploadScreen.php:117
1118
+ msgid "Audio uploads are disabled"
1119
+ msgstr "Dodawanie audio nie jest obsługiwane"
1120
+
1121
+ #: app/main/profile/BPMediaUploadScreen.php:135
1122
+ msgid "Upload Successful"
1123
+ msgstr "Dodawanie powiodło się"
1124
+
1125
+ #: app/main/profile/BPMediaUploadScreen.php:140
1126
+ msgid "You did not specified a file to upload"
1127
+ msgstr "Nie masz pozwoleń na dodawanie pliku."
1128
+
1129
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1130
+ msgid "Sorry, no media items were found in this album."
1131
+ msgstr "Wybacz, nie ma niczego w tym albumie"
1132
+
1133
+ #: app/main/profile/BPMediaAlbum.php:74
1134
+ msgid "Sorry, the requested album does not exist."
1135
+ msgstr "Wybacz, album nie istnieje"
1136
+
1137
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1138
+ msgid "Sorry, the requested media does not belong to the group"
1139
+ msgstr "Wybacz, te media nie są dozwolne dla tej grupy."
1140
+
1141
+ #: app/main/BPMediaGroupLoader.php:252
1142
+ msgid "Media Settings"
1143
+ msgstr "Ustawienia mediów"
1144
+
1145
+ #: app/main/group/BPMediaGroupsExtension.php:40
1146
+ #: app/main/group/BPMediaGroupsExtension.php:87
1147
+ msgid "Album Creation Control"
1148
+ msgstr "Ustaw tworzenie albumy"
1149
+
1150
+ #: app/main/profile/BPMediaScreen.php:114
1151
+ #: app/main/profile/BPMediaScreen.php:374
1152
+ msgid "The requested url does not exist"
1153
+ msgstr "Wymagany adres url nie został znaleziony"
1154
+
1155
+ #: app/main/profile/BPMediaScreen.php:196
1156
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1157
+ msgid "Sorry, no %s were found."
1158
+ msgstr "Wybacz, nie %s został znaleziony."
1159
+
1160
+ #: app/main/profile/BPMediaScreen.php:307
1161
+ msgid "Edit %s"
1162
+ msgstr "Edytuj %s"
1163
+
1164
+ #: app/main/profile/BPMediaScreen.php:328
1165
+ msgid "%s Title"
1166
+ msgstr "%s Tytuł"
1167
+
1168
+ #: app/main/profile/BPMediaScreen.php:334
1169
+ msgid "%s Description"
1170
+ msgstr "%s Opis"
1171
+
1172
+ #: app/main/profile/BPMediaScreen.php:342
1173
+ msgid "Update"
1174
+ msgstr "Uaktualnij"
1175
+
1176
+ #: app/main/profile/BPMediaScreen.php:343
1177
+ msgid "Back to Media File"
1178
+ msgstr "Wróc do plików media."
1179
+
1180
+ #: app/main/profile/BPMediaScreen.php:344
1181
+ msgid "Back to Media"
1182
+ msgstr "Wróc do media"
1183
+
1184
+ #: app/main/profile/BPMediaScreen.php:367
1185
+ msgid "You do not have access to this page."
1186
+ msgstr "Nie masz dostępu do tej strony."
1187
+
1188
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1189
+ #: app/main/BuddyPressMedia.php:327
1190
+ msgid "Albums"
1191
+ msgstr "Albumy"
1192
+
1193
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1194
+ msgid "Album"
1195
+ msgstr "Album"
1196
+
1197
+ #: app/main/BuddyPressMedia.php:333
1198
+ msgid "Upload"
1199
+ msgstr "Dodaj"
1200
+
1201
+ #: app/main/profile/BPMediaTemplate.php:246
1202
+ msgid "Select Album"
1203
+ msgstr "Wybierz album"
1204
+
1205
+ #: app/main/profile/BPMediaTemplate.php:247
1206
+ #: app/main/profile/BPMediaTemplate.php:275
1207
+ msgid "x"
1208
+ msgstr "x"
1209
+
1210
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1211
+ #: app/main/profile/BPMediaTemplate.php:274
1212
+ msgid "Create Album"
1213
+ msgstr "Stwórz Album"
1214
+
1215
+ #: app/main/profile/BPMediaTemplate.php:278
1216
+ msgid "Album Name"
1217
+ msgstr "Nazwa Albumu"
1218
+
1219
+ #: app/main/profile/BPMediaTemplate.php:96
1220
+ msgid "Drop files here"
1221
+ msgstr "Umieść plik tutaj"
1222
+
1223
+ #: app/main/profile/BPMediaTemplate.php:97
1224
+ msgid " or "
1225
+ msgstr "lub"
1226
+
1227
+ #: app/admin/BPMediaAdmin.php:410
1228
+ msgid "Latest News"
1229
+ msgstr "Ostatnie Newsy"
1230
+
1231
+ #: app/helper/BPMediaSettings.php:34
1232
+ msgid "Photos"
1233
+ msgstr "Zdjęcia"
1234
+
1235
+ #: app/main/BuddyPressMedia.php:312
1236
+ msgid "Photo"
1237
+ msgstr "Zdjęcie"
1238
+
1239
+ #: app/main/BuddyPressMedia.php:315
1240
+ msgid "Videos"
1241
+ msgstr "Wideo"
1242
+
1243
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1244
+ msgid "Music"
1245
+ msgstr "Muzyka"
1246
+
1247
+ #: app/admin/BPMediaAdmin.php:389
1248
+ msgid "Donate"
1249
+ msgstr "Wpłać darowizne"
1250
+
1251
+ #: app/admin/BPMediaAdmin.php:405
1252
+ msgid "RSS Feed"
1253
+ msgstr "RSS Feed"
1254
+
1255
+ #: app/admin/BPMediaAdmin.php:403
1256
+ msgid "Facebook"
1257
+ msgstr "Facebook"
1258
+
1259
+ #: app/admin/BPMediaAdmin.php:404
1260
+ msgid "Follow us on Twitter"
1261
+ msgstr "Śledź nas na Twitter"
1262
+
1263
+ #: app/admin/BPMediaAdmin.php:404
1264
+ msgid "Twitter"
1265
+ msgstr "Twitter"
1266
+
1267
+ #: app/admin/BPMediaAdmin.php:405
1268
+ msgid "Subscribe to our feeds"
1269
+ msgstr "Subskrybuj"
1270
+
1271
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1272
+ msgid "Addons"
1273
+ msgstr "Dodatki"
1274
+
1275
+ #: app/admin/BPMediaAdmin.php:97
1276
+ msgid "Support "
1277
+ msgstr "Support "
1278
+
1279
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1280
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1281
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1282
+ #: app/main/BuddyPressMedia.php:304
1283
+ msgid "Media"
1284
+ msgstr "Media"
1285
+
1286
+ #: app/helper/BPMediaSettings.php:184
1287
+ msgid "Support"
1288
+ msgstr "Support"
1289
+
1290
+ #: app/admin/BPMediaAdmin.php:182
1291
+ msgid "Empowering The Web With WordPress"
1292
+ msgstr "Uprawnienia strony z Wordpressem"
1293
+
1294
+ #: app/admin/BPMediaAdmin.php:403
1295
+ msgid "Become a fan on Facebook"
1296
+ msgstr "Zostań fanem na Facebooku"
1297
+
1298
+ #: app/helper/BPMediaSettings.php:182
1299
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1300
+ msgstr "BuddyPress Media dodatki dla Audio/Wideo konwersacji"
1301
+
1302
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1303
+ msgid "Recounting of media files done successfully"
1304
+ msgstr "Przeliczanie pliki multimedialne wykonane pomyślnie"
1305
+
1306
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1307
+ msgid "Recounting Failed"
1308
+ msgstr "Przeliczanie nie powiodło się"
1309
+
1310
+ #: app/helper/BPMediaSettings.php:405
1311
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1312
+ msgstr "Proszę określić przynajmniej jedną odpowiedź używając pola wyboru"
1313
+
1314
+ #: app/helper/BPMediaSettings.php:533
1315
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1316
+ msgstr "Proszę podać kilka wartości, aby wypełnić listę rozwijaną. Format : array( 'value' => 'option' )"
1317
+
1318
+ #: app/helper/BPMediaAddon.php:49
1319
+ msgid "BuddyPress-Media Kaltura Add-on"
1320
+ msgstr "BuddyPress-Media Kaltura Add-on"
1321
+
1322
+ #: app/helper/BPMediaAddon.php:52
1323
+ msgid "Add support for more video formats using Kaltura video solution."
1324
+ msgstr "Dodaj wsparcie dla większej ilości formatów wideo za pomocą rozwiązań wideo Kaltura."
1325
+
1326
+ #: app/helper/BPMediaAddon.php:53
1327
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1328
+ msgstr "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1329
+
1330
+ #: app/helper/BPMediaAddon.php:59
1331
+ msgid "BuddyPress-Media FFMPEG Add-on"
1332
+ msgstr "BuddyPress-Media FFMPEG dodatek"
1333
+
1334
+ #: app/helper/BPMediaAddon.php:62
1335
+ msgid "Add supports for more audio & video formats using open-source media-node."
1336
+ msgstr "Dodaj wsporniki więcej formatów audio i wideo za pomocą open source mediów"
1337
+
1338
+ #: app/helper/BPMediaAddon.php:63
1339
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1340
+ msgstr "Media zostały wyposażone w zautomatyzowany skrypt Ubuntu/Debian."
1341
+
1342
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1343
+ msgid "Buy Now"
1344
+ msgstr "Kup teraz"
1345
+
1346
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1347
+ msgid "Live Demo"
1348
+ msgstr "Zobacz demo"
1349
+
1350
+ #: app/main/group/BPMediaGroupAction.php:124
1351
+ #: app/main/includes/BPMediaHostWordpress.php:742
1352
+ msgid "%1$s added a %2$s"
1353
+ msgstr "%1$s added a %2$s"
1354
+
1355
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1356
+ #: app/admin/BPMediaAdmin.php:213
1357
+ msgid "BuddyPress Media"
1358
+ msgstr "BuddyPress Media"
1359
+
1360
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1361
+ #: app/main/BuddyPressMedia.php:443
1362
+ msgid "Settings"
1363
+ msgstr "Ustawienia"
1364
+
1365
+ #: app/helper/BPMediaFeed.php:43
1366
+ msgid "No items"
1367
+ msgstr "Brak pozycji"
1368
+
1369
+ #: app/helper/BPMediaFeed.php:49
1370
+ msgid "Posted "
1371
+ msgstr "Zamieszczone"
1372
+
1373
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1374
+ msgid "BuddyPress Media Settings"
1375
+ msgstr "BuddyPress Media Ustawienia"
1376
+
1377
+ #: app/helper/BPMediaSettings.php:39
1378
+ msgid "Video"
1379
+ msgstr "Wideo"
1380
+
1381
+ #: app/helper/BPMediaSettings.php:44
1382
+ msgid "Audio"
1383
+ msgstr "Audio"
1384
+
1385
+ #: app/main/includes/BPMediaActions.php:330
1386
+ msgid "Download"
1387
+ msgstr "Pobierz"
1388
+
1389
+ #: app/admin/BPMediaAdmin.php:367
1390
+ msgid "Spread the Word"
1391
+ msgstr "Rozpowiadać"
1392
+
1393
+ #: app/helper/BPMediaAdminWidget.php:29
1394
+ msgid "Argument missing. id is required."
1395
+ msgstr "ID jest wymagane"
languages/buddypress-media-pt_BR.po ADDED
@@ -0,0 +1,1404 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Portuguese (Brazil)
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:35+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr ""
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr ""
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr ""
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr ""
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr ""
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr ""
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr ""
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr ""
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr ""
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr ""
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr ""
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr ""
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr ""
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr ""
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr ""
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr ""
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr ""
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Definir como capa do álbum"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Desfazer como capa do álbum"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Configurações de privacidade"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "Atualização BuddyPress Media Database"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Iniciar"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr "<strong>Privado</strong>, Visível apenas para mim"
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr "<strong>Amigos</strong>, Visível aos meus amigos"
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr "Definir níveis de privacidade padrão para sua mídia"
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr "Este %s é privado"
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr "Este %1s é visível apenas para %2s&rsquo;s amigos"
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr "Este %s é visível para usuários logados, somente"
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr "Nível padrão de privacidade para seus meios foi atualizado"
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+ "Por favor configure o widget\n"
528
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a href=\"%s\" target=\"_blank\" title=\"Configure BuddyPress Media Widget\">aqui</a>."
529
+
530
+ #: app/main/profile/BPMediaAlbumScreen.php:300
531
+ msgid "to"
532
+ msgstr "para"
533
+
534
+ #: app/main/profile/BPMediaScreen.php:125
535
+ msgid "All %s"
536
+ msgstr "Todos %s"
537
+
538
+ #: app/main/BuddyPressMedia.php:547
539
+ msgid ""
540
+ "The BuddyPress version installed is an\n"
541
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
542
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
543
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
544
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
545
+ msgstr ""
546
+ "A versão BuddyPress instalada é\n"
547
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tversão antiga e não é suportada,\n"
548
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tpor favor atualize o BuddyPress\n"
549
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\tBuddyPress Media Plugin.\n"
550
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+
552
+ #: app/main/BuddyPressMedia.php:560
553
+ msgid ""
554
+ "You have not installed BuddyPress.\n"
555
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
556
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
557
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
558
+ msgstr ""
559
+ "Você não instalou BuddyPress.\n"
560
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tPor favor instale a ultima versão do BuddyPress\n"
561
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\tpara usar BuddyPress Media plugin.\n"
562
+ "→\t→\t→\t→\t→\t→\t→\t→\t→\t<a class=\"alignright\" href=\"%1$s\">X</a>"
563
+
564
+ #: app/admin/BPMediaAdmin.php:363
565
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
566
+ msgstr "Eu uso @buddypressmedia http://goo.gl/8Upmv em %s"
567
+
568
+ #: app/admin/BPMediaAdmin.php:364
569
+ msgid "Add link to footer"
570
+ msgstr "Adicionar link no rodapé"
571
+
572
+ #: app/admin/BPMediaAdmin.php:365
573
+ msgid "Tweet"
574
+ msgstr "Twittar"
575
+
576
+ #: app/admin/BPMediaAdmin.php:366
577
+ msgid "Rate on WordPress.org"
578
+ msgstr "Taxa em WordPress.org"
579
+
580
+ #: app/admin/BPMediaAdmin.php:377
581
+ msgid "USD"
582
+ msgstr "USD"
583
+
584
+ #: app/admin/BPMediaAdmin.php:407
585
+ msgid "Subscribe"
586
+ msgstr "Subscrever"
587
+
588
+ #: app/admin/BPMediaAdmin.php:99
589
+ msgid "BuddyPress Media Convert Videos"
590
+ msgstr "BuddyPress Media Converter Videos"
591
+
592
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
593
+ msgid "Convert Videos"
594
+ msgstr "Converter Videos"
595
+
596
+ #: app/admin/BPMediaAdmin.php:182
597
+ msgid "By"
598
+ msgstr "por"
599
+
600
+ #: app/admin/BPMediaAdmin.php:262
601
+ msgid "BuddyPress Media Covert Videos"
602
+ msgstr ""
603
+
604
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
605
+ msgid "Atleast one Media Type Must be selected"
606
+ msgstr "Pelo menos um tipo de mídia deve ser selecionado"
607
+
608
+ #: app/helper/BPMediaSettings.php:305
609
+ msgid "Media Type"
610
+ msgstr "Tipo de mídia"
611
+
612
+ #: app/helper/BPMediaSettings.php:603
613
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
614
+ msgstr "BuddyPress Mídia 2.6 requer uma atualização de banco de dados."
615
+
616
+ #: app/admin/BPMediaAdmin.php:91
617
+ msgid "BuddyPress Media Database Update"
618
+ msgstr "BuddyPress Media Database Atualização"
619
+
620
+ #: app/main/privacy/BPMediaPrivacy.php:121
621
+ msgid "<strong>Users</strong>, Visible to registered users"
622
+ msgstr "<strong>Usuários</strong>, Visível para usuários registrados"
623
+
624
+ #: app/main/privacy/BPMediaPrivacy.php:125
625
+ msgid "<strong>Public</strong>, Visible to the world"
626
+ msgstr "<strong>Publico</strong>, Visível para todos"
627
+
628
+ #: app/helper/BPMediaSettings.php:172
629
+ msgid "Enable menu in WordPress admin bar"
630
+ msgstr "Habilitar menu do Wordpress na barra de administração"
631
+
632
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
633
+ msgid "Update Database"
634
+ msgstr "Atualização do banco de dados"
635
+
636
+ #: app/helper/BPMediaSettings.php:132
637
+ msgid "Download Button"
638
+ msgstr "Botão download"
639
+
640
+ #: app/helper/BPMediaSettings.php:135
641
+ msgid "Display download button under media"
642
+ msgstr "Mostrar botão download nas mídias"
643
+
644
+ #: app/main/BuddyPressMedia.php:306
645
+ msgid "Privacy"
646
+ msgstr "Privacidade"
647
+
648
+ #: app/helper/BPMediaSettings.php:140
649
+ msgid "Enable Privacy"
650
+ msgstr "Habilitar Privacidade"
651
+
652
+ #: app/helper/BPMediaSettings.php:143
653
+ msgid "Enable privacy"
654
+ msgstr "Habilitar Privacidade"
655
+
656
+ #: app/helper/BPMediaSettings.php:161
657
+ msgid "User Override"
658
+ msgstr "Substituir usuário"
659
+
660
+ #: app/helper/BPMediaSettings.php:155
661
+ msgid "Default Privacy"
662
+ msgstr "Privacidade Padrão"
663
+
664
+ #: app/helper/BPMediaSettings.php:33
665
+ msgid "Enabled Media Types"
666
+ msgstr "Tipos de mídia habilitados"
667
+
668
+ #: app/helper/BPMediaSettings.php:169
669
+ msgid "Admin bar menu"
670
+ msgstr "Barra de menu Administrador"
671
+
672
+ #: app/helper/BPMediaSettings.php:318
673
+ msgid "Settings saved."
674
+ msgstr "Configurações salvas."
675
+
676
+ #: app/main/profile/BPMediaTemplate.php:29
677
+ msgid "Wall Posts"
678
+ msgstr "Mural"
679
+
680
+ #: app/main/profile/BPMediaTemplate.php:83
681
+ msgid "+ Create New Album"
682
+ msgstr "+ Criar Novo Albún"
683
+
684
+ #: app/main/profile/BPMediaTemplate.php:90
685
+ msgid "Cancel"
686
+ msgstr "Cancelar"
687
+
688
+ #: app/main/profile/BPMediaTemplate.php:213
689
+ msgid "Show More"
690
+ msgstr "Exibir Mais"
691
+
692
+ #: app/main/profile/BPMediaTemplate.php:267
693
+ msgid "Select"
694
+ msgstr "Selecionar"
695
+
696
+ #: app/main/profile/BPMediaTemplate.php:286
697
+ msgid "Add Media"
698
+ msgstr "Adicionar Mídia"
699
+
700
+ #: app/main/includes/BPMediaFilters.php:158
701
+ msgid "Delete %s"
702
+ msgstr "Deletar %s"
703
+
704
+ #: app/main/widgets/BPMediaWidget.php:197
705
+ msgid "Widget Type:"
706
+ msgstr "Tipo Widget:"
707
+
708
+ #: app/main/widgets/BPMediaWidget.php:210
709
+ msgid "Show All"
710
+ msgstr "Exibir Todos"
711
+
712
+ #: app/main/widgets/BPMediaWidget.php:213
713
+ msgid "Show Photos"
714
+ msgstr "Exibir Fotos"
715
+
716
+ #: app/main/widgets/BPMediaWidget.php:216
717
+ msgid "Show Music"
718
+ msgstr "Exibir Música"
719
+
720
+ #: app/main/widgets/BPMediaWidget.php:220
721
+ msgid "Show Videos"
722
+ msgstr "Exibir Videos"
723
+
724
+ #: app/main/widgets/BPMediaWidget.php:20
725
+ msgid "The most recent/popular media uploaded on your site"
726
+ msgstr "Os meios de comunicação mais recentes/popular carregado em seu site"
727
+
728
+ #: app/main/widgets/BPMediaWidget.php:21
729
+ msgid "BuddyPress Media Widget"
730
+ msgstr "BuddyPress Media Widget"
731
+
732
+ #: app/main/widgets/BPMediaWidget.php:150
733
+ msgid "No "
734
+ msgstr "Não"
735
+
736
+ #: app/main/BuddyPressMedia.php:158
737
+ msgid "BuddyPress is not installed."
738
+ msgstr "BuddyPress não está instalado."
739
+
740
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
741
+ msgid "BuddyPress Media Addons"
742
+ msgstr "BuddyPress Media Addons"
743
+
744
+ #: app/admin/BPMediaAdmin.php:88
745
+ msgid "BuddyPress Media Component"
746
+ msgstr "BuddyPress Media Component"
747
+
748
+ #: app/helper/BPMediaSupport.php:121
749
+ msgid "Additional Information"
750
+ msgstr "Informações Adicionais"
751
+
752
+ #: app/helper/BPMediaSettings.php:286
753
+ msgid "Recount Success"
754
+ msgstr "Recontagem Sucesso"
755
+
756
+ #: app/helper/BPMediaSettings.php:291
757
+ msgid "Recount Fail"
758
+ msgstr "Recontagem Falha"
759
+
760
+ #: app/main/includes/BPMediaHostWordpress.php:170
761
+ msgid "MP4 file you have uploaded is corrupt."
762
+ msgstr "Arquivo MP4 que você enviou esta corrompido."
763
+
764
+ #: app/helper/BPMediaSupport.php:246
765
+ msgid "Thank you for your Feedback/Suggestion."
766
+ msgstr "Obrigado por seu Feedback / Sugestão."
767
+
768
+ #: app/helper/BPMediaSupport.php:248
769
+ msgid "Thank you for posting your support request."
770
+ msgstr "Obrigado por postar o seu pedido de apoio."
771
+
772
+ #: app/helper/BPMediaSupport.php:249
773
+ msgid "We will get back to you shortly."
774
+ msgstr "Nós entraremos em contato com você em breve."
775
+
776
+ #: app/helper/BPMediaSupport.php:252
777
+ msgid "Your server failed to send an email."
778
+ msgstr "Seu servidor não conseguiu enviar um e-mail."
779
+
780
+ #: app/helper/BPMediaSupport.php:253
781
+ msgid "Kindly contact your server support to fix this."
782
+ msgstr "Por favor, contate o suporte do servidor para corrigir isso."
783
+
784
+ #: app/helper/BPMediaSupport.php:254
785
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
786
+ msgstr "Você pode, alternativamente, criar um pedido de apoio <a href=\"%s\">here</a>"
787
+
788
+ #: app/helper/BPMediaSupport.php:95
789
+ msgid "Name"
790
+ msgstr "Nome"
791
+
792
+ #: app/helper/BPMediaSupport.php:98
793
+ msgid "Email"
794
+ msgstr "Email"
795
+
796
+ #: app/helper/BPMediaSupport.php:101
797
+ msgid "Website"
798
+ msgstr "Site"
799
+
800
+ #: app/helper/BPMediaSupport.php:104
801
+ msgid "Phone"
802
+ msgstr "Telefone"
803
+
804
+ #: app/helper/BPMediaSupport.php:107
805
+ msgid "Subject"
806
+ msgstr "Assunto"
807
+
808
+ #: app/helper/BPMediaSupport.php:110
809
+ msgid "Details"
810
+ msgstr "Detalhes"
811
+
812
+ #: app/helper/BPMediaSupport.php:161
813
+ msgid "BuddyPress Media Premium Support Request from"
814
+ msgstr "BuddyPress Media solicitação de suporte Premium"
815
+
816
+ #: app/helper/BPMediaSupport.php:164
817
+ msgid "BuddyPress Media New Feature Request from"
818
+ msgstr "BuddyPress Media Solicitação de recurso novo"
819
+
820
+ #: app/helper/BPMediaSupport.php:167
821
+ msgid "BuddyPress Media Bug Report from"
822
+ msgstr "BuddyPress Media Relatar erro"
823
+
824
+ #: app/helper/BPMediaSupport.php:170
825
+ msgid "BuddyPress Media Contact from"
826
+ msgstr "BuddyPress Media Contato para"
827
+
828
+ #: app/helper/BPMediaSettings.php:358
829
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
830
+ msgstr "Por favor, forneça \"opção\" valor ( required ) no argumento. Passe argumento para add_settings_field no seguinte formato array( 'option' => 'option_name' ) "
831
+
832
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
833
+ #: app/helper/BPMediaSettings.php:531
834
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
835
+ msgstr "Por favor, forneça \"opção\" valor ( required ) no argumento. Passe argumento para add_settings_field no seguinte formato array( 'option' => 'option_name' )"
836
+
837
+ #: app/main/includes/BPMediaActions.php:874
838
+ msgid "%1$s created an album %2$s"
839
+ msgstr "%1$s criado um álbum %2$s"
840
+
841
+ #: app/main/BPMediaComponent.php:262
842
+ msgid "All Albums"
843
+ msgstr "Todos os Albuns"
844
+
845
+ #: app/main/BPMediaComponent.php:263
846
+ msgid "View Album"
847
+ msgstr "Ver Album"
848
+
849
+ #: app/main/BPMediaComponent.php:264
850
+ msgid "Search Albums"
851
+ msgstr "Procurar Albuns"
852
+
853
+ #: app/main/BPMediaComponent.php:265
854
+ msgid "No album found"
855
+ msgstr "Nenhum álbum encontrado"
856
+
857
+ #: app/main/BPMediaComponent.php:266
858
+ msgid "No album found in Trash"
859
+ msgstr "Nenhum álbum encontrado no lixo"
860
+
861
+ #: app/main/BPMediaComponent.php:300
862
+ msgid "Add New Media"
863
+ msgstr "Adicionar Novas Mídias"
864
+
865
+ #: app/main/BPMediaComponent.php:308
866
+ msgid "BuddyPress Media's Media Files"
867
+ msgstr "BuddyPress Mídia arquivos de mídia"
868
+
869
+ #: app/main/includes/BPMediaFunction.php:229
870
+ msgid "%1$s added new media in album %2$s"
871
+ msgstr "%1$s adicionadas novas mídias no álbum %2$s"
872
+
873
+ #: app/importers/BPMediaAlbumimporter.php:81
874
+ msgid "Users"
875
+ msgstr "Usuários"
876
+
877
+ #: app/main/includes/BPMediaFilters.php:410
878
+ msgid "Total Photos"
879
+ msgstr "Total de fotos"
880
+
881
+ #: app/main/includes/BPMediaFilters.php:411
882
+ msgid "Total Videos"
883
+ msgstr "Total de Vídeos"
884
+
885
+ #: app/main/includes/BPMediaFilters.php:412
886
+ msgid "Total Audio"
887
+ msgstr "Total de Audio"
888
+
889
+ #: app/main/includes/BPMediaFilters.php:413
890
+ msgid "Total Albums"
891
+ msgstr "Total de Albuns"
892
+
893
+ #: app/helper/BPMediaSettings.php:118
894
+ msgid "Groups"
895
+ msgstr "Grupos"
896
+
897
+ #: app/main/includes/BPMediaActions.php:348
898
+ msgid "Edit Media"
899
+ msgstr "Editar Mídia"
900
+
901
+ #: app/main/profile/BPMediaAlbumScreen.php:246
902
+ msgid "Edit"
903
+ msgstr "Editar"
904
+
905
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
906
+ #: app/main/profile/BPMediaTemplate.php:282
907
+ msgid "Create"
908
+ msgstr "Criar"
909
+
910
+ #: app/main/BPMediaComponent.php:260
911
+ #: app/main/profile/BPMediaAlbumScreen.php:246
912
+ msgid "Edit Album"
913
+ msgstr "Editar Album"
914
+
915
+ #: app/main/BPMediaComponent.php:261
916
+ msgid "New Album"
917
+ msgstr "Novo Album"
918
+
919
+ #: app/helper/BPMediaSupport.php:126
920
+ msgid "Your WP Admin Login:"
921
+ msgstr "Seu Login WP Admin:"
922
+
923
+ #: app/helper/BPMediaSupport.php:129
924
+ msgid "Your WP Admin password:"
925
+ msgstr "Sua senha WP Admin:"
926
+
927
+ #: app/helper/BPMediaSupport.php:132
928
+ msgid "Your SSH / FTP host:"
929
+ msgstr "Seu host SSH / FTP:"
930
+
931
+ #: app/helper/BPMediaSupport.php:135
932
+ msgid "Your SSH / FTP login:"
933
+ msgstr "Seu login SSH / FTP:"
934
+
935
+ #: app/helper/BPMediaSupport.php:138
936
+ msgid "Your SSH / FTP password:"
937
+ msgstr "Sua senha SSH / FTP:"
938
+
939
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
940
+ msgid "Media Title"
941
+ msgstr "Título da mídia"
942
+
943
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
944
+ msgid "Media Description"
945
+ msgstr "Descrição da mídia"
946
+
947
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
948
+ msgid "Select Media File"
949
+ msgstr "Selecione arquivo de mídia"
950
+
951
+ #: app/main/BPMediaComponent.php:60
952
+ msgid "Search Media..."
953
+ msgstr "Procurar mídia..."
954
+
955
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
956
+ msgid "BuddyPress Media Support"
957
+ msgstr "Buddypress Media suporte"
958
+
959
+ #: app/helper/BPMediaSupport.php:81
960
+ msgid "Submit a Bug Report"
961
+ msgstr "Enviar um relatório de erro"
962
+
963
+ #: app/helper/BPMediaSupport.php:84
964
+ msgid "Submit a New Feature Request"
965
+ msgstr "Enviar um Pedido de Novos Recursos"
966
+
967
+ #: app/helper/BPMediaSupport.php:87
968
+ msgid "Submit a Premium Support Request"
969
+ msgstr "Enviar um Pedido de Suporte Premium"
970
+
971
+ #: app/main/includes/BPMediaHostWordpress.php:615
972
+ msgid "Post"
973
+ msgstr "Postar"
974
+
975
+ #: app/main/includes/BPMediaHostWordpress.php:615
976
+ msgid "or press esc to cancel."
977
+ msgstr "ou pressione esc para cancelar."
978
+
979
+ #: app/main/profile/BPMediaAlbumScreen.php:252
980
+ msgid "Delete"
981
+ msgstr "Deletar"
982
+
983
+ #: app/main/includes/BPMediaHostWordpress.php:59
984
+ msgid "Sorry, the requested media does not exist."
985
+ msgstr "Desculpe, mídia solicitada não existe."
986
+
987
+ #: app/main/includes/BPMediaHostWordpress.php:137
988
+ msgid "Error Uploading File"
989
+ msgstr "Erro no upload do arquivo"
990
+
991
+ #: app/main/includes/BPMediaHostWordpress.php:177
992
+ #: app/main/includes/BPMediaHostWordpress.php:182
993
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
994
+ msgstr "O arquivo MP4 que você enviou está usando um codec de vídeo não suportado. Codec de vídeo H.264 é suportado."
995
+
996
+ #: app/main/includes/BPMediaHostWordpress.php:187
997
+ msgid "The MP4 file you have uploaded is not a video file."
998
+ msgstr "O arquivo MP4 que você enviou não é um arquivo de vídeo."
999
+
1000
+ #: app/main/includes/BPMediaHostWordpress.php:198
1001
+ msgid "MP3 file you have uploaded is currupt."
1002
+ msgstr "Arquivo MP3 que você enviou esta corrompido."
1003
+
1004
+ #: app/main/includes/BPMediaHostWordpress.php:205
1005
+ #: app/main/includes/BPMediaHostWordpress.php:210
1006
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1007
+ msgstr "O arquivo MP3 que você enviou está usando um formato de áudio não suportado. Formato audio suportado é MP3."
1008
+
1009
+ #: app/main/includes/BPMediaHostWordpress.php:215
1010
+ msgid "The MP3 file you have uploaded is not an audio file."
1011
+ msgstr "O arquivo MP3 que você enviou não é um arquivo de áudio."
1012
+
1013
+ #: app/main/includes/BPMediaHostWordpress.php:227
1014
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1015
+ msgstr "Os arquivos de Mídia que você tentou enviar não é suportado. Arquivos de mídia compatíveis são .jpg, .png, .gif, .mp3, .mov and .mp4."
1016
+
1017
+ #: app/main/includes/BPMediaHostWordpress.php:236
1018
+ msgid "Error creating attachment for the media file, please try again"
1019
+ msgstr "Erro na criação de acessórios para o arquivo de mídia, por favor, tente novamente"
1020
+
1021
+ #: app/main/includes/BPMediaHostWordpress.php:346
1022
+ msgid "%s uploaded a media."
1023
+ msgstr "%s enviado uma mídia."
1024
+
1025
+ #: app/main/includes/BPMediaHostWordpress.php:367
1026
+ msgid "Uploaded by "
1027
+ msgstr "carregado por"
1028
+
1029
+ #: app/main/includes/BPMediaHostWordpress.php:590
1030
+ msgid "Comment <span>%s</span>"
1031
+ msgstr "comentário <span>%s</span>"
1032
+
1033
+ #: app/main/includes/BPMediaHostWordpress.php:594
1034
+ msgid "Favorite"
1035
+ msgstr "Favorito"
1036
+
1037
+ #: app/main/includes/BPMediaHostWordpress.php:596
1038
+ msgid "Remove Favorite"
1039
+ msgstr "Remover favorito"
1040
+
1041
+ #: app/main/widgets/BPMediaWidget.php:203
1042
+ msgid "Title:"
1043
+ msgstr "Titulo:"
1044
+
1045
+ #: app/main/widgets/BPMediaWidget.php:206
1046
+ msgid "Number of posts to show:"
1047
+ msgstr "Número de posts a exibir"
1048
+
1049
+ #: app/main/widgets/BPMediaWidget.php:199
1050
+ msgid "Recent Media"
1051
+ msgstr "Últimas mídias"
1052
+
1053
+ #: app/main/widgets/BPMediaWidget.php:72
1054
+ msgid "All"
1055
+ msgstr "Tudo"
1056
+
1057
+ #: app/main/group/BPMediaGroupsExtension.php:41
1058
+ #: app/main/group/BPMediaGroupsExtension.php:88
1059
+ msgid "Who can create Albums in this group?"
1060
+ msgstr "Quem pode criar álbuns nesse grupo?"
1061
+
1062
+ #: app/main/group/BPMediaGroupsExtension.php:45
1063
+ #: app/main/group/BPMediaGroupsExtension.php:92
1064
+ msgid "All Group Members"
1065
+ msgstr "Todos os membros do grupo"
1066
+
1067
+ #: app/main/group/BPMediaGroupsExtension.php:49
1068
+ #: app/main/group/BPMediaGroupsExtension.php:96
1069
+ msgid "Group Admins and Mods only"
1070
+ msgstr "Apenas administradores e editores do grupo"
1071
+
1072
+ #: app/main/group/BPMediaGroupsExtension.php:53
1073
+ #: app/main/group/BPMediaGroupsExtension.php:100
1074
+ msgid "Group Admin only"
1075
+ msgstr "Apenas administradores do grupo"
1076
+
1077
+ #: app/main/group/BPMediaGroupsExtension.php:104
1078
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1079
+ msgid "Save Changes"
1080
+ msgstr "Salvar mudanças"
1081
+
1082
+ #: app/main/group/BPMediaGroupsExtension.php:130
1083
+ msgid "There was an error saving, please try again"
1084
+ msgstr "Houve um erro na gravação. Por favor, tente novamente"
1085
+
1086
+ #: app/main/group/BPMediaGroupsExtension.php:132
1087
+ msgid "Settings saved successfully"
1088
+ msgstr "Configurações salvas com sucesso"
1089
+
1090
+ #: app/main/group/BPMediaGroupsExtension.php:153
1091
+ msgid ""
1092
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1093
+ "\t home screen."
1094
+ msgstr "Você pode mostrar uma pequena descrição de sua extensão do grupo aqui. Ela será mostrada na página principal do grupo"
1095
+
1096
+ #: app/main/widgets/BPMediaWidget.php:200
1097
+ msgid "Popular Media"
1098
+ msgstr "Mídia popular"
1099
+
1100
+ #: app/main/profile/BPMediaScreen.php:396
1101
+ msgid "Media deleted successfully"
1102
+ msgstr "Mídia excluída com sucesso"
1103
+
1104
+ #: app/main/profile/BPMediaTemplate.php:98
1105
+ #: app/main/profile/BPMediaUploadScreen.php:33
1106
+ msgid "Upload Media"
1107
+ msgstr "Adicionar mídia"
1108
+
1109
+ #: app/main/profile/BPMediaUploadScreen.php:71
1110
+ msgid "You are not allowed to be here"
1111
+ msgstr "Você não está autorizado a estar aqui"
1112
+
1113
+ #: app/main/profile/BPMediaUploadScreen.php:98
1114
+ #: app/main/profile/BPMediaUploadScreen.php:122
1115
+ msgid "File uploaded is not supported"
1116
+ msgstr "O envio de arquivos não é suportado"
1117
+
1118
+ #: app/main/profile/BPMediaUploadScreen.php:105
1119
+ msgid "Image uploads are disabled"
1120
+ msgstr "O envio de imagens está desabilitado"
1121
+
1122
+ #: app/main/profile/BPMediaUploadScreen.php:111
1123
+ msgid "Video uploads are disabled"
1124
+ msgstr "O envio de vídeos está desabilitado"
1125
+
1126
+ #: app/main/profile/BPMediaUploadScreen.php:117
1127
+ msgid "Audio uploads are disabled"
1128
+ msgstr "O envio de áudio está desabilitado"
1129
+
1130
+ #: app/main/profile/BPMediaUploadScreen.php:135
1131
+ msgid "Upload Successful"
1132
+ msgstr "Enviado com sucesso"
1133
+
1134
+ #: app/main/profile/BPMediaUploadScreen.php:140
1135
+ msgid "You did not specified a file to upload"
1136
+ msgstr "Você não especificou um arquivo para fazer o envio"
1137
+
1138
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1139
+ msgid "Sorry, no media items were found in this album."
1140
+ msgstr "Desculpe, não foram encontrados arquivos de mídia neste álbum"
1141
+
1142
+ #: app/main/profile/BPMediaAlbum.php:74
1143
+ msgid "Sorry, the requested album does not exist."
1144
+ msgstr "Desculpe, o álbum não existe"
1145
+
1146
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1147
+ msgid "Sorry, the requested media does not belong to the group"
1148
+ msgstr "Desculpe, a mídia em questão não pertence ao grupo"
1149
+
1150
+ #: app/main/BPMediaGroupLoader.php:252
1151
+ msgid "Media Settings"
1152
+ msgstr "Configurações de mídia"
1153
+
1154
+ #: app/main/group/BPMediaGroupsExtension.php:40
1155
+ #: app/main/group/BPMediaGroupsExtension.php:87
1156
+ msgid "Album Creation Control"
1157
+ msgstr "Controle para criação de áudio"
1158
+
1159
+ #: app/main/profile/BPMediaScreen.php:114
1160
+ #: app/main/profile/BPMediaScreen.php:374
1161
+ msgid "The requested url does not exist"
1162
+ msgstr "A URL requisitada não existe"
1163
+
1164
+ #: app/main/profile/BPMediaScreen.php:196
1165
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1166
+ msgid "Sorry, no %s were found."
1167
+ msgstr "Desculpe, não foi encontrada nenhuma página com %s"
1168
+
1169
+ #: app/main/profile/BPMediaScreen.php:307
1170
+ msgid "Edit %s"
1171
+ msgstr "Editar %s"
1172
+
1173
+ #: app/main/profile/BPMediaScreen.php:328
1174
+ msgid "%s Title"
1175
+ msgstr "Título de %s"
1176
+
1177
+ #: app/main/profile/BPMediaScreen.php:334
1178
+ msgid "%s Description"
1179
+ msgstr "Descrição de %s"
1180
+
1181
+ #: app/main/profile/BPMediaScreen.php:342
1182
+ msgid "Update"
1183
+ msgstr "Atualizar"
1184
+
1185
+ #: app/main/profile/BPMediaScreen.php:343
1186
+ msgid "Back to Media File"
1187
+ msgstr "Voltar para o arquivo de mídia"
1188
+
1189
+ #: app/main/profile/BPMediaScreen.php:344
1190
+ msgid "Back to Media"
1191
+ msgstr "Voltar para a mídia"
1192
+
1193
+ #: app/main/profile/BPMediaScreen.php:367
1194
+ msgid "You do not have access to this page."
1195
+ msgstr "Você não pode acessar esta página"
1196
+
1197
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1198
+ #: app/main/BuddyPressMedia.php:327
1199
+ msgid "Albums"
1200
+ msgstr "Álbuns"
1201
+
1202
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1203
+ msgid "Album"
1204
+ msgstr "Álbum"
1205
+
1206
+ #: app/main/BuddyPressMedia.php:333
1207
+ msgid "Upload"
1208
+ msgstr "Adicionar"
1209
+
1210
+ #: app/main/profile/BPMediaTemplate.php:246
1211
+ msgid "Select Album"
1212
+ msgstr "Selecionar álbum"
1213
+
1214
+ #: app/main/profile/BPMediaTemplate.php:247
1215
+ #: app/main/profile/BPMediaTemplate.php:275
1216
+ msgid "x"
1217
+ msgstr "x"
1218
+
1219
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1220
+ #: app/main/profile/BPMediaTemplate.php:274
1221
+ msgid "Create Album"
1222
+ msgstr "Criar álbum"
1223
+
1224
+ #: app/main/profile/BPMediaTemplate.php:278
1225
+ msgid "Album Name"
1226
+ msgstr "Nome do álbum"
1227
+
1228
+ #: app/main/profile/BPMediaTemplate.php:96
1229
+ msgid "Drop files here"
1230
+ msgstr "Jogue os arquivos aqui"
1231
+
1232
+ #: app/main/profile/BPMediaTemplate.php:97
1233
+ msgid " or "
1234
+ msgstr "ou"
1235
+
1236
+ #: app/admin/BPMediaAdmin.php:410
1237
+ msgid "Latest News"
1238
+ msgstr "Últimas notícias"
1239
+
1240
+ #: app/helper/BPMediaSettings.php:34
1241
+ msgid "Photos"
1242
+ msgstr "Fotos"
1243
+
1244
+ #: app/main/BuddyPressMedia.php:312
1245
+ msgid "Photo"
1246
+ msgstr "Foto"
1247
+
1248
+ #: app/main/BuddyPressMedia.php:315
1249
+ msgid "Videos"
1250
+ msgstr "Vídeos"
1251
+
1252
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1253
+ msgid "Music"
1254
+ msgstr "Música"
1255
+
1256
+ #: app/admin/BPMediaAdmin.php:389
1257
+ msgid "Donate"
1258
+ msgstr "Doar"
1259
+
1260
+ #: app/admin/BPMediaAdmin.php:405
1261
+ msgid "RSS Feed"
1262
+ msgstr "RSS"
1263
+
1264
+ #: app/admin/BPMediaAdmin.php:403
1265
+ msgid "Facebook"
1266
+ msgstr "Facebook"
1267
+
1268
+ #: app/admin/BPMediaAdmin.php:404
1269
+ msgid "Follow us on Twitter"
1270
+ msgstr "Siga-nos no Twitter"
1271
+
1272
+ #: app/admin/BPMediaAdmin.php:404
1273
+ msgid "Twitter"
1274
+ msgstr "Twitter"
1275
+
1276
+ #: app/admin/BPMediaAdmin.php:405
1277
+ msgid "Subscribe to our feeds"
1278
+ msgstr "Acompanhe nossas atualizações"
1279
+
1280
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1281
+ msgid "Addons"
1282
+ msgstr "Addons"
1283
+
1284
+ #: app/admin/BPMediaAdmin.php:97
1285
+ msgid "Support "
1286
+ msgstr "Suporte"
1287
+
1288
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1289
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1290
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1291
+ #: app/main/BuddyPressMedia.php:304
1292
+ msgid "Media"
1293
+ msgstr "Mídia"
1294
+
1295
+ #: app/helper/BPMediaSettings.php:184
1296
+ msgid "Support"
1297
+ msgstr "Suporte"
1298
+
1299
+ #: app/admin/BPMediaAdmin.php:182
1300
+ msgid "Empowering The Web With WordPress"
1301
+ msgstr "Empodere a web com WordPress"
1302
+
1303
+ #: app/admin/BPMediaAdmin.php:403
1304
+ msgid "Become a fan on Facebook"
1305
+ msgstr "Sejá um fã no Facebook"
1306
+
1307
+ #: app/helper/BPMediaSettings.php:182
1308
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1309
+ msgstr "BuddyPress Media Addons para a conversão de áudio e vídeo"
1310
+
1311
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1312
+ msgid "Recounting of media files done successfully"
1313
+ msgstr "Recontagem de mídia realizado com sucesso"
1314
+
1315
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1316
+ msgid "Recounting Failed"
1317
+ msgstr "Falha na recontagem"
1318
+
1319
+ #: app/helper/BPMediaSettings.php:405
1320
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1321
+ msgstr "É preciso especificar duas opções ou usar uma das seleções individuais"
1322
+
1323
+ #: app/helper/BPMediaSettings.php:533
1324
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1325
+ msgstr "Por favor, digite os valores para construir o menu dropdown. Formato: array('value' => 'option)"
1326
+
1327
+ #: app/helper/BPMediaAddon.php:49
1328
+ msgid "BuddyPress-Media Kaltura Add-on"
1329
+ msgstr "BuddyPress-Media Kaltura Add-on"
1330
+
1331
+ #: app/helper/BPMediaAddon.php:52
1332
+ msgid "Add support for more video formats using Kaltura video solution."
1333
+ msgstr "Adicione suporte a mais formatos de vídeo utilizando a solução de vídeos Kaltura"
1334
+
1335
+ #: app/helper/BPMediaAddon.php:53
1336
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1337
+ msgstr "Funciona com Kaltura.com, serviços hospedados do Kaltura-CE e Kaltura-on-premise"
1338
+
1339
+ #: app/helper/BPMediaAddon.php:59
1340
+ msgid "BuddyPress-Media FFMPEG Add-on"
1341
+ msgstr "BuddyPress-Media FFMPEG Add-on"
1342
+
1343
+ #: app/helper/BPMediaAddon.php:62
1344
+ msgid "Add supports for more audio & video formats using open-source media-node."
1345
+ msgstr "Adicione suporte a mais formatos de áudio e vídeo utilizando a ferramenta open source ffmpeg"
1346
+
1347
+ #: app/helper/BPMediaAddon.php:63
1348
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1349
+ msgstr "Contém com configuração automática para sistemas Ubuntu/Debian"
1350
+
1351
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1352
+ msgid "Buy Now"
1353
+ msgstr "Compre agora"
1354
+
1355
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1356
+ msgid "Live Demo"
1357
+ msgstr "Demo"
1358
+
1359
+ #: app/main/group/BPMediaGroupAction.php:124
1360
+ #: app/main/includes/BPMediaHostWordpress.php:742
1361
+ msgid "%1$s added a %2$s"
1362
+ msgstr "%1$s adicionado ao %2$s"
1363
+
1364
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1365
+ #: app/admin/BPMediaAdmin.php:213
1366
+ msgid "BuddyPress Media"
1367
+ msgstr "BuddyPress Media"
1368
+
1369
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1370
+ #: app/main/BuddyPressMedia.php:443
1371
+ msgid "Settings"
1372
+ msgstr "Configurações"
1373
+
1374
+ #: app/helper/BPMediaFeed.php:43
1375
+ msgid "No items"
1376
+ msgstr "Nenhum item"
1377
+
1378
+ #: app/helper/BPMediaFeed.php:49
1379
+ msgid "Posted "
1380
+ msgstr "Publicado"
1381
+
1382
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1383
+ msgid "BuddyPress Media Settings"
1384
+ msgstr "Configurações do BuddyPress Media"
1385
+
1386
+ #: app/helper/BPMediaSettings.php:39
1387
+ msgid "Video"
1388
+ msgstr "Vídeo"
1389
+
1390
+ #: app/helper/BPMediaSettings.php:44
1391
+ msgid "Audio"
1392
+ msgstr "Áudio"
1393
+
1394
+ #: app/main/includes/BPMediaActions.php:330
1395
+ msgid "Download"
1396
+ msgstr "Download"
1397
+
1398
+ #: app/admin/BPMediaAdmin.php:367
1399
+ msgid "Spread the Word"
1400
+ msgstr "Espalhe a palavra"
1401
+
1402
+ #: app/helper/BPMediaAdminWidget.php:29
1403
+ msgid "Argument missing. id is required."
1404
+ msgstr "Falta argumento. ID é necessária."
languages/buddypress-media-ro_RO.po ADDED
@@ -0,0 +1,1393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Romanian
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:30:49+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr "Dimensiunea maximă de încărcare"
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr "Selectați albumul:"
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr "&"
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr "Felicitări!"
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr "Toate fișierele media din BP Album au fost importate."
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr "Curățare acum"
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr "Curățare mai târziu"
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr "Atenție!"
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr "Începeți importarea"
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr "Comentarii"
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr "Comentarii: 0/0 (Nu există comentarii pentru a importa)"
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr "Favoritele utilizatorilor"
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr "Importator"
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr "Activare audio (mp3)"
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr "Integrare Lightbox"
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr "Activare video (mp4)"
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr "Important"
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr "Atașați fișiere media"
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr "Vizualizați"
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr ""
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr "SAU"
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr "Alte setări"
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr "Renumărare"
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr "<strong>Prieteni</strong> - Vizibil prietenilor utilizatorului"
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr "<strong>Utilizatori</strong> - Vizibil utilizatorilor înregistrați"
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr "<strong>Public</strong> - Vizibil pentru toată lumea"
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr "<strong>Privat</strong> - Vizibil doar pentru utilizator"
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr "Încărcare din Activitate"
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr ""
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr "Integrarea în grupuri"
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr "Permiteți media în grupuri"
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr "Setări de afișare"
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr "Numărul de fișiere media"
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr "Activare fotografii"
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr "Setare drept copertă de album"
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr "Anulare copertă de album"
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr "Setări de confidențialitate"
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr "Actualizați baza de date media BuddyPress"
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr "Start"
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr ""
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr ""
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr ""
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr ""
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr ""
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr ""
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr ""
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr ""
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr ""
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+
553
+ #: app/admin/BPMediaAdmin.php:363
554
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
555
+ msgstr ""
556
+
557
+ #: app/admin/BPMediaAdmin.php:364
558
+ msgid "Add link to footer"
559
+ msgstr ""
560
+
561
+ #: app/admin/BPMediaAdmin.php:365
562
+ msgid "Tweet"
563
+ msgstr ""
564
+
565
+ #: app/admin/BPMediaAdmin.php:366
566
+ msgid "Rate on WordPress.org"
567
+ msgstr ""
568
+
569
+ #: app/admin/BPMediaAdmin.php:377
570
+ msgid "USD"
571
+ msgstr ""
572
+
573
+ #: app/admin/BPMediaAdmin.php:407
574
+ msgid "Subscribe"
575
+ msgstr ""
576
+
577
+ #: app/admin/BPMediaAdmin.php:99
578
+ msgid "BuddyPress Media Convert Videos"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
582
+ msgid "Convert Videos"
583
+ msgstr ""
584
+
585
+ #: app/admin/BPMediaAdmin.php:182
586
+ msgid "By"
587
+ msgstr "de"
588
+
589
+ #: app/admin/BPMediaAdmin.php:262
590
+ msgid "BuddyPress Media Covert Videos"
591
+ msgstr ""
592
+
593
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
594
+ msgid "Atleast one Media Type Must be selected"
595
+ msgstr ""
596
+
597
+ #: app/helper/BPMediaSettings.php:305
598
+ msgid "Media Type"
599
+ msgstr "Tipuri de fișiere media"
600
+
601
+ #: app/helper/BPMediaSettings.php:603
602
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
603
+ msgstr ""
604
+
605
+ #: app/admin/BPMediaAdmin.php:91
606
+ msgid "BuddyPress Media Database Update"
607
+ msgstr ""
608
+
609
+ #: app/main/privacy/BPMediaPrivacy.php:121
610
+ msgid "<strong>Users</strong>, Visible to registered users"
611
+ msgstr "<strong>Utilizatori</strong> - Vizibil utilizatorilor înregistrați"
612
+
613
+ #: app/main/privacy/BPMediaPrivacy.php:125
614
+ msgid "<strong>Public</strong>, Visible to the world"
615
+ msgstr "<strong>Public</strong> - Vizibil pentru toată lumea"
616
+
617
+ #: app/helper/BPMediaSettings.php:172
618
+ msgid "Enable menu in WordPress admin bar"
619
+ msgstr ""
620
+
621
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
622
+ msgid "Update Database"
623
+ msgstr ""
624
+
625
+ #: app/helper/BPMediaSettings.php:132
626
+ msgid "Download Button"
627
+ msgstr "Buton de descărcare"
628
+
629
+ #: app/helper/BPMediaSettings.php:135
630
+ msgid "Display download button under media"
631
+ msgstr ""
632
+
633
+ #: app/main/BuddyPressMedia.php:306
634
+ msgid "Privacy"
635
+ msgstr ""
636
+
637
+ #: app/helper/BPMediaSettings.php:140
638
+ msgid "Enable Privacy"
639
+ msgstr "Activare Confidențialitate"
640
+
641
+ #: app/helper/BPMediaSettings.php:143
642
+ msgid "Enable privacy"
643
+ msgstr "Activare confidențialitate"
644
+
645
+ #: app/helper/BPMediaSettings.php:161
646
+ msgid "User Override"
647
+ msgstr ""
648
+
649
+ #: app/helper/BPMediaSettings.php:155
650
+ msgid "Default Privacy"
651
+ msgstr ""
652
+
653
+ #: app/helper/BPMediaSettings.php:33
654
+ msgid "Enabled Media Types"
655
+ msgstr ""
656
+
657
+ #: app/helper/BPMediaSettings.php:169
658
+ msgid "Admin bar menu"
659
+ msgstr ""
660
+
661
+ #: app/helper/BPMediaSettings.php:318
662
+ msgid "Settings saved."
663
+ msgstr "Setările au fost salvate."
664
+
665
+ #: app/main/profile/BPMediaTemplate.php:29
666
+ msgid "Wall Posts"
667
+ msgstr ""
668
+
669
+ #: app/main/profile/BPMediaTemplate.php:83
670
+ msgid "+ Create New Album"
671
+ msgstr "+ Creați un album nou"
672
+
673
+ #: app/main/profile/BPMediaTemplate.php:90
674
+ msgid "Cancel"
675
+ msgstr "Anulare"
676
+
677
+ #: app/main/profile/BPMediaTemplate.php:213
678
+ msgid "Show More"
679
+ msgstr ""
680
+
681
+ #: app/main/profile/BPMediaTemplate.php:267
682
+ msgid "Select"
683
+ msgstr ""
684
+
685
+ #: app/main/profile/BPMediaTemplate.php:286
686
+ msgid "Add Media"
687
+ msgstr ""
688
+
689
+ #: app/main/includes/BPMediaFilters.php:158
690
+ msgid "Delete %s"
691
+ msgstr ""
692
+
693
+ #: app/main/widgets/BPMediaWidget.php:197
694
+ msgid "Widget Type:"
695
+ msgstr ""
696
+
697
+ #: app/main/widgets/BPMediaWidget.php:210
698
+ msgid "Show All"
699
+ msgstr "Arată totul"
700
+
701
+ #: app/main/widgets/BPMediaWidget.php:213
702
+ msgid "Show Photos"
703
+ msgstr "Arată fotografiile"
704
+
705
+ #: app/main/widgets/BPMediaWidget.php:216
706
+ msgid "Show Music"
707
+ msgstr "Arată muzica"
708
+
709
+ #: app/main/widgets/BPMediaWidget.php:220
710
+ msgid "Show Videos"
711
+ msgstr ""
712
+
713
+ #: app/main/widgets/BPMediaWidget.php:20
714
+ msgid "The most recent/popular media uploaded on your site"
715
+ msgstr ""
716
+
717
+ #: app/main/widgets/BPMediaWidget.php:21
718
+ msgid "BuddyPress Media Widget"
719
+ msgstr ""
720
+
721
+ #: app/main/widgets/BPMediaWidget.php:150
722
+ msgid "No "
723
+ msgstr "Nu"
724
+
725
+ #: app/main/BuddyPressMedia.php:158
726
+ msgid "BuddyPress is not installed."
727
+ msgstr "BuddyPress nu este instalat."
728
+
729
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
730
+ msgid "BuddyPress Media Addons"
731
+ msgstr ""
732
+
733
+ #: app/admin/BPMediaAdmin.php:88
734
+ msgid "BuddyPress Media Component"
735
+ msgstr ""
736
+
737
+ #: app/helper/BPMediaSupport.php:121
738
+ msgid "Additional Information"
739
+ msgstr "Informații suplimentare"
740
+
741
+ #: app/helper/BPMediaSettings.php:286
742
+ msgid "Recount Success"
743
+ msgstr ""
744
+
745
+ #: app/helper/BPMediaSettings.php:291
746
+ msgid "Recount Fail"
747
+ msgstr ""
748
+
749
+ #: app/main/includes/BPMediaHostWordpress.php:170
750
+ msgid "MP4 file you have uploaded is corrupt."
751
+ msgstr ""
752
+
753
+ #: app/helper/BPMediaSupport.php:246
754
+ msgid "Thank you for your Feedback/Suggestion."
755
+ msgstr ""
756
+
757
+ #: app/helper/BPMediaSupport.php:248
758
+ msgid "Thank you for posting your support request."
759
+ msgstr ""
760
+
761
+ #: app/helper/BPMediaSupport.php:249
762
+ msgid "We will get back to you shortly."
763
+ msgstr ""
764
+
765
+ #: app/helper/BPMediaSupport.php:252
766
+ msgid "Your server failed to send an email."
767
+ msgstr ""
768
+
769
+ #: app/helper/BPMediaSupport.php:253
770
+ msgid "Kindly contact your server support to fix this."
771
+ msgstr ""
772
+
773
+ #: app/helper/BPMediaSupport.php:254
774
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
775
+ msgstr ""
776
+
777
+ #: app/helper/BPMediaSupport.php:95
778
+ msgid "Name"
779
+ msgstr "Nume"
780
+
781
+ #: app/helper/BPMediaSupport.php:98
782
+ msgid "Email"
783
+ msgstr "Email"
784
+
785
+ #: app/helper/BPMediaSupport.php:101
786
+ msgid "Website"
787
+ msgstr "Pagină web"
788
+
789
+ #: app/helper/BPMediaSupport.php:104
790
+ msgid "Phone"
791
+ msgstr "Telefon"
792
+
793
+ #: app/helper/BPMediaSupport.php:107
794
+ msgid "Subject"
795
+ msgstr "Subiect"
796
+
797
+ #: app/helper/BPMediaSupport.php:110
798
+ msgid "Details"
799
+ msgstr ""
800
+
801
+ #: app/helper/BPMediaSupport.php:161
802
+ msgid "BuddyPress Media Premium Support Request from"
803
+ msgstr ""
804
+
805
+ #: app/helper/BPMediaSupport.php:164
806
+ msgid "BuddyPress Media New Feature Request from"
807
+ msgstr ""
808
+
809
+ #: app/helper/BPMediaSupport.php:167
810
+ msgid "BuddyPress Media Bug Report from"
811
+ msgstr ""
812
+
813
+ #: app/helper/BPMediaSupport.php:170
814
+ msgid "BuddyPress Media Contact from"
815
+ msgstr ""
816
+
817
+ #: app/helper/BPMediaSettings.php:358
818
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
819
+ msgstr ""
820
+
821
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
822
+ #: app/helper/BPMediaSettings.php:531
823
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
824
+ msgstr ""
825
+
826
+ #: app/main/includes/BPMediaActions.php:874
827
+ msgid "%1$s created an album %2$s"
828
+ msgstr "%1$s a creat un album %2$s"
829
+
830
+ #: app/main/BPMediaComponent.php:262
831
+ msgid "All Albums"
832
+ msgstr ""
833
+
834
+ #: app/main/BPMediaComponent.php:263
835
+ msgid "View Album"
836
+ msgstr ""
837
+
838
+ #: app/main/BPMediaComponent.php:264
839
+ msgid "Search Albums"
840
+ msgstr ""
841
+
842
+ #: app/main/BPMediaComponent.php:265
843
+ msgid "No album found"
844
+ msgstr ""
845
+
846
+ #: app/main/BPMediaComponent.php:266
847
+ msgid "No album found in Trash"
848
+ msgstr ""
849
+
850
+ #: app/main/BPMediaComponent.php:300
851
+ msgid "Add New Media"
852
+ msgstr ""
853
+
854
+ #: app/main/BPMediaComponent.php:308
855
+ msgid "BuddyPress Media's Media Files"
856
+ msgstr ""
857
+
858
+ #: app/main/includes/BPMediaFunction.php:229
859
+ msgid "%1$s added new media in album %2$s"
860
+ msgstr ""
861
+
862
+ #: app/importers/BPMediaAlbumimporter.php:81
863
+ msgid "Users"
864
+ msgstr "Utilizatori"
865
+
866
+ #: app/main/includes/BPMediaFilters.php:410
867
+ msgid "Total Photos"
868
+ msgstr ""
869
+
870
+ #: app/main/includes/BPMediaFilters.php:411
871
+ msgid "Total Videos"
872
+ msgstr ""
873
+
874
+ #: app/main/includes/BPMediaFilters.php:412
875
+ msgid "Total Audio"
876
+ msgstr ""
877
+
878
+ #: app/main/includes/BPMediaFilters.php:413
879
+ msgid "Total Albums"
880
+ msgstr ""
881
+
882
+ #: app/helper/BPMediaSettings.php:118
883
+ msgid "Groups"
884
+ msgstr "Grupuri"
885
+
886
+ #: app/main/includes/BPMediaActions.php:348
887
+ msgid "Edit Media"
888
+ msgstr "Editare media"
889
+
890
+ #: app/main/profile/BPMediaAlbumScreen.php:246
891
+ msgid "Edit"
892
+ msgstr "Editare"
893
+
894
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
895
+ #: app/main/profile/BPMediaTemplate.php:282
896
+ msgid "Create"
897
+ msgstr ""
898
+
899
+ #: app/main/BPMediaComponent.php:260
900
+ #: app/main/profile/BPMediaAlbumScreen.php:246
901
+ msgid "Edit Album"
902
+ msgstr "Editare album"
903
+
904
+ #: app/main/BPMediaComponent.php:261
905
+ msgid "New Album"
906
+ msgstr "Album nou"
907
+
908
+ #: app/helper/BPMediaSupport.php:126
909
+ msgid "Your WP Admin Login:"
910
+ msgstr ""
911
+
912
+ #: app/helper/BPMediaSupport.php:129
913
+ msgid "Your WP Admin password:"
914
+ msgstr ""
915
+
916
+ #: app/helper/BPMediaSupport.php:132
917
+ msgid "Your SSH / FTP host:"
918
+ msgstr ""
919
+
920
+ #: app/helper/BPMediaSupport.php:135
921
+ msgid "Your SSH / FTP login:"
922
+ msgstr ""
923
+
924
+ #: app/helper/BPMediaSupport.php:138
925
+ msgid "Your SSH / FTP password:"
926
+ msgstr ""
927
+
928
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
929
+ msgid "Media Title"
930
+ msgstr ""
931
+
932
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
933
+ msgid "Media Description"
934
+ msgstr ""
935
+
936
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
937
+ msgid "Select Media File"
938
+ msgstr "Alegeți fișierul media"
939
+
940
+ #: app/main/BPMediaComponent.php:60
941
+ msgid "Search Media..."
942
+ msgstr ""
943
+
944
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
945
+ msgid "BuddyPress Media Support"
946
+ msgstr ""
947
+
948
+ #: app/helper/BPMediaSupport.php:81
949
+ msgid "Submit a Bug Report"
950
+ msgstr ""
951
+
952
+ #: app/helper/BPMediaSupport.php:84
953
+ msgid "Submit a New Feature Request"
954
+ msgstr ""
955
+
956
+ #: app/helper/BPMediaSupport.php:87
957
+ msgid "Submit a Premium Support Request"
958
+ msgstr ""
959
+
960
+ #: app/main/includes/BPMediaHostWordpress.php:615
961
+ msgid "Post"
962
+ msgstr ""
963
+
964
+ #: app/main/includes/BPMediaHostWordpress.php:615
965
+ msgid "or press esc to cancel."
966
+ msgstr ""
967
+
968
+ #: app/main/profile/BPMediaAlbumScreen.php:252
969
+ msgid "Delete"
970
+ msgstr "Ștergeți"
971
+
972
+ #: app/main/includes/BPMediaHostWordpress.php:59
973
+ msgid "Sorry, the requested media does not exist."
974
+ msgstr ""
975
+
976
+ #: app/main/includes/BPMediaHostWordpress.php:137
977
+ msgid "Error Uploading File"
978
+ msgstr ""
979
+
980
+ #: app/main/includes/BPMediaHostWordpress.php:177
981
+ #: app/main/includes/BPMediaHostWordpress.php:182
982
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
983
+ msgstr ""
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:187
986
+ msgid "The MP4 file you have uploaded is not a video file."
987
+ msgstr ""
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:198
990
+ msgid "MP3 file you have uploaded is currupt."
991
+ msgstr ""
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:205
994
+ #: app/main/includes/BPMediaHostWordpress.php:210
995
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
996
+ msgstr ""
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:215
999
+ msgid "The MP3 file you have uploaded is not an audio file."
1000
+ msgstr ""
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:227
1003
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1004
+ msgstr ""
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:236
1007
+ msgid "Error creating attachment for the media file, please try again"
1008
+ msgstr ""
1009
+
1010
+ #: app/main/includes/BPMediaHostWordpress.php:346
1011
+ msgid "%s uploaded a media."
1012
+ msgstr ""
1013
+
1014
+ #: app/main/includes/BPMediaHostWordpress.php:367
1015
+ msgid "Uploaded by "
1016
+ msgstr "Încărcat(ă) de"
1017
+
1018
+ #: app/main/includes/BPMediaHostWordpress.php:590
1019
+ msgid "Comment <span>%s</span>"
1020
+ msgstr ""
1021
+
1022
+ #: app/main/includes/BPMediaHostWordpress.php:594
1023
+ msgid "Favorite"
1024
+ msgstr ""
1025
+
1026
+ #: app/main/includes/BPMediaHostWordpress.php:596
1027
+ msgid "Remove Favorite"
1028
+ msgstr ""
1029
+
1030
+ #: app/main/widgets/BPMediaWidget.php:203
1031
+ msgid "Title:"
1032
+ msgstr "Titlu:"
1033
+
1034
+ #: app/main/widgets/BPMediaWidget.php:206
1035
+ msgid "Number of posts to show:"
1036
+ msgstr ""
1037
+
1038
+ #: app/main/widgets/BPMediaWidget.php:199
1039
+ msgid "Recent Media"
1040
+ msgstr ""
1041
+
1042
+ #: app/main/widgets/BPMediaWidget.php:72
1043
+ msgid "All"
1044
+ msgstr ""
1045
+
1046
+ #: app/main/group/BPMediaGroupsExtension.php:41
1047
+ #: app/main/group/BPMediaGroupsExtension.php:88
1048
+ msgid "Who can create Albums in this group?"
1049
+ msgstr ""
1050
+
1051
+ #: app/main/group/BPMediaGroupsExtension.php:45
1052
+ #: app/main/group/BPMediaGroupsExtension.php:92
1053
+ msgid "All Group Members"
1054
+ msgstr ""
1055
+
1056
+ #: app/main/group/BPMediaGroupsExtension.php:49
1057
+ #: app/main/group/BPMediaGroupsExtension.php:96
1058
+ msgid "Group Admins and Mods only"
1059
+ msgstr ""
1060
+
1061
+ #: app/main/group/BPMediaGroupsExtension.php:53
1062
+ #: app/main/group/BPMediaGroupsExtension.php:100
1063
+ msgid "Group Admin only"
1064
+ msgstr ""
1065
+
1066
+ #: app/main/group/BPMediaGroupsExtension.php:104
1067
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1068
+ msgid "Save Changes"
1069
+ msgstr "Salvare modificări"
1070
+
1071
+ #: app/main/group/BPMediaGroupsExtension.php:130
1072
+ msgid "There was an error saving, please try again"
1073
+ msgstr ""
1074
+
1075
+ #: app/main/group/BPMediaGroupsExtension.php:132
1076
+ msgid "Settings saved successfully"
1077
+ msgstr "Setările au fost salvate cu succes."
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:153
1080
+ msgid ""
1081
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1082
+ "\t home screen."
1083
+ msgstr ""
1084
+
1085
+ #: app/main/widgets/BPMediaWidget.php:200
1086
+ msgid "Popular Media"
1087
+ msgstr ""
1088
+
1089
+ #: app/main/profile/BPMediaScreen.php:396
1090
+ msgid "Media deleted successfully"
1091
+ msgstr ""
1092
+
1093
+ #: app/main/profile/BPMediaTemplate.php:98
1094
+ #: app/main/profile/BPMediaUploadScreen.php:33
1095
+ msgid "Upload Media"
1096
+ msgstr ""
1097
+
1098
+ #: app/main/profile/BPMediaUploadScreen.php:71
1099
+ msgid "You are not allowed to be here"
1100
+ msgstr ""
1101
+
1102
+ #: app/main/profile/BPMediaUploadScreen.php:98
1103
+ #: app/main/profile/BPMediaUploadScreen.php:122
1104
+ msgid "File uploaded is not supported"
1105
+ msgstr ""
1106
+
1107
+ #: app/main/profile/BPMediaUploadScreen.php:105
1108
+ msgid "Image uploads are disabled"
1109
+ msgstr ""
1110
+
1111
+ #: app/main/profile/BPMediaUploadScreen.php:111
1112
+ msgid "Video uploads are disabled"
1113
+ msgstr ""
1114
+
1115
+ #: app/main/profile/BPMediaUploadScreen.php:117
1116
+ msgid "Audio uploads are disabled"
1117
+ msgstr ""
1118
+
1119
+ #: app/main/profile/BPMediaUploadScreen.php:135
1120
+ msgid "Upload Successful"
1121
+ msgstr "Încărcarea a avut loc cu succes"
1122
+
1123
+ #: app/main/profile/BPMediaUploadScreen.php:140
1124
+ msgid "You did not specified a file to upload"
1125
+ msgstr ""
1126
+
1127
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1128
+ msgid "Sorry, no media items were found in this album."
1129
+ msgstr ""
1130
+
1131
+ #: app/main/profile/BPMediaAlbum.php:74
1132
+ msgid "Sorry, the requested album does not exist."
1133
+ msgstr ""
1134
+
1135
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1136
+ msgid "Sorry, the requested media does not belong to the group"
1137
+ msgstr ""
1138
+
1139
+ #: app/main/BPMediaGroupLoader.php:252
1140
+ msgid "Media Settings"
1141
+ msgstr "Setări media"
1142
+
1143
+ #: app/main/group/BPMediaGroupsExtension.php:40
1144
+ #: app/main/group/BPMediaGroupsExtension.php:87
1145
+ msgid "Album Creation Control"
1146
+ msgstr ""
1147
+
1148
+ #: app/main/profile/BPMediaScreen.php:114
1149
+ #: app/main/profile/BPMediaScreen.php:374
1150
+ msgid "The requested url does not exist"
1151
+ msgstr ""
1152
+
1153
+ #: app/main/profile/BPMediaScreen.php:196
1154
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1155
+ msgid "Sorry, no %s were found."
1156
+ msgstr ""
1157
+
1158
+ #: app/main/profile/BPMediaScreen.php:307
1159
+ msgid "Edit %s"
1160
+ msgstr ""
1161
+
1162
+ #: app/main/profile/BPMediaScreen.php:328
1163
+ msgid "%s Title"
1164
+ msgstr ""
1165
+
1166
+ #: app/main/profile/BPMediaScreen.php:334
1167
+ msgid "%s Description"
1168
+ msgstr ""
1169
+
1170
+ #: app/main/profile/BPMediaScreen.php:342
1171
+ msgid "Update"
1172
+ msgstr "Actualizare"
1173
+
1174
+ #: app/main/profile/BPMediaScreen.php:343
1175
+ msgid "Back to Media File"
1176
+ msgstr "Înapoi la fișierul media"
1177
+
1178
+ #: app/main/profile/BPMediaScreen.php:344
1179
+ msgid "Back to Media"
1180
+ msgstr "Înapoi la Media"
1181
+
1182
+ #: app/main/profile/BPMediaScreen.php:367
1183
+ msgid "You do not have access to this page."
1184
+ msgstr "Nu aveți acces la aceastî pagină."
1185
+
1186
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1187
+ #: app/main/BuddyPressMedia.php:327
1188
+ msgid "Albums"
1189
+ msgstr "Albume"
1190
+
1191
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1192
+ msgid "Album"
1193
+ msgstr "Album"
1194
+
1195
+ #: app/main/BuddyPressMedia.php:333
1196
+ msgid "Upload"
1197
+ msgstr ""
1198
+
1199
+ #: app/main/profile/BPMediaTemplate.php:246
1200
+ msgid "Select Album"
1201
+ msgstr "Selectați album"
1202
+
1203
+ #: app/main/profile/BPMediaTemplate.php:247
1204
+ #: app/main/profile/BPMediaTemplate.php:275
1205
+ msgid "x"
1206
+ msgstr "x"
1207
+
1208
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1209
+ #: app/main/profile/BPMediaTemplate.php:274
1210
+ msgid "Create Album"
1211
+ msgstr ""
1212
+
1213
+ #: app/main/profile/BPMediaTemplate.php:278
1214
+ msgid "Album Name"
1215
+ msgstr "Numele albumului"
1216
+
1217
+ #: app/main/profile/BPMediaTemplate.php:96
1218
+ msgid "Drop files here"
1219
+ msgstr "Trageți fișierele aici"
1220
+
1221
+ #: app/main/profile/BPMediaTemplate.php:97
1222
+ msgid " or "
1223
+ msgstr "sau"
1224
+
1225
+ #: app/admin/BPMediaAdmin.php:410
1226
+ msgid "Latest News"
1227
+ msgstr "Știri recente"
1228
+
1229
+ #: app/helper/BPMediaSettings.php:34
1230
+ msgid "Photos"
1231
+ msgstr "Fotografii"
1232
+
1233
+ #: app/main/BuddyPressMedia.php:312
1234
+ msgid "Photo"
1235
+ msgstr "Fotografie"
1236
+
1237
+ #: app/main/BuddyPressMedia.php:315
1238
+ msgid "Videos"
1239
+ msgstr "Fișiere video"
1240
+
1241
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1242
+ msgid "Music"
1243
+ msgstr "Muzică"
1244
+
1245
+ #: app/admin/BPMediaAdmin.php:389
1246
+ msgid "Donate"
1247
+ msgstr "Donați"
1248
+
1249
+ #: app/admin/BPMediaAdmin.php:405
1250
+ msgid "RSS Feed"
1251
+ msgstr "Flux RSS"
1252
+
1253
+ #: app/admin/BPMediaAdmin.php:403
1254
+ msgid "Facebook"
1255
+ msgstr "Facebook"
1256
+
1257
+ #: app/admin/BPMediaAdmin.php:404
1258
+ msgid "Follow us on Twitter"
1259
+ msgstr "Urmăriți-ne pe Twitter"
1260
+
1261
+ #: app/admin/BPMediaAdmin.php:404
1262
+ msgid "Twitter"
1263
+ msgstr "Twitter"
1264
+
1265
+ #: app/admin/BPMediaAdmin.php:405
1266
+ msgid "Subscribe to our feeds"
1267
+ msgstr ""
1268
+
1269
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1270
+ msgid "Addons"
1271
+ msgstr ""
1272
+
1273
+ #: app/admin/BPMediaAdmin.php:97
1274
+ msgid "Support "
1275
+ msgstr "Suport"
1276
+
1277
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1278
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1279
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1280
+ #: app/main/BuddyPressMedia.php:304
1281
+ msgid "Media"
1282
+ msgstr ""
1283
+
1284
+ #: app/helper/BPMediaSettings.php:184
1285
+ msgid "Support"
1286
+ msgstr "Suport"
1287
+
1288
+ #: app/admin/BPMediaAdmin.php:182
1289
+ msgid "Empowering The Web With WordPress"
1290
+ msgstr ""
1291
+
1292
+ #: app/admin/BPMediaAdmin.php:403
1293
+ msgid "Become a fan on Facebook"
1294
+ msgstr ""
1295
+
1296
+ #: app/helper/BPMediaSettings.php:182
1297
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1298
+ msgstr ""
1299
+
1300
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1301
+ msgid "Recounting of media files done successfully"
1302
+ msgstr ""
1303
+
1304
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1305
+ msgid "Recounting Failed"
1306
+ msgstr "Renumărare a eșuat"
1307
+
1308
+ #: app/helper/BPMediaSettings.php:405
1309
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1310
+ msgstr ""
1311
+
1312
+ #: app/helper/BPMediaSettings.php:533
1313
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1314
+ msgstr ""
1315
+
1316
+ #: app/helper/BPMediaAddon.php:49
1317
+ msgid "BuddyPress-Media Kaltura Add-on"
1318
+ msgstr ""
1319
+
1320
+ #: app/helper/BPMediaAddon.php:52
1321
+ msgid "Add support for more video formats using Kaltura video solution."
1322
+ msgstr ""
1323
+
1324
+ #: app/helper/BPMediaAddon.php:53
1325
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1326
+ msgstr ""
1327
+
1328
+ #: app/helper/BPMediaAddon.php:59
1329
+ msgid "BuddyPress-Media FFMPEG Add-on"
1330
+ msgstr ""
1331
+
1332
+ #: app/helper/BPMediaAddon.php:62
1333
+ msgid "Add supports for more audio & video formats using open-source media-node."
1334
+ msgstr ""
1335
+
1336
+ #: app/helper/BPMediaAddon.php:63
1337
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1338
+ msgstr ""
1339
+
1340
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1341
+ msgid "Buy Now"
1342
+ msgstr "Cumpără acum"
1343
+
1344
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1345
+ msgid "Live Demo"
1346
+ msgstr "Demo în direct"
1347
+
1348
+ #: app/main/group/BPMediaGroupAction.php:124
1349
+ #: app/main/includes/BPMediaHostWordpress.php:742
1350
+ msgid "%1$s added a %2$s"
1351
+ msgstr ""
1352
+
1353
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1354
+ #: app/admin/BPMediaAdmin.php:213
1355
+ msgid "BuddyPress Media"
1356
+ msgstr "BuddyPress Media"
1357
+
1358
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1359
+ #: app/main/BuddyPressMedia.php:443
1360
+ msgid "Settings"
1361
+ msgstr "Setări"
1362
+
1363
+ #: app/helper/BPMediaFeed.php:43
1364
+ msgid "No items"
1365
+ msgstr "Fără elemente."
1366
+
1367
+ #: app/helper/BPMediaFeed.php:49
1368
+ msgid "Posted "
1369
+ msgstr "Postat."
1370
+
1371
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1372
+ msgid "BuddyPress Media Settings"
1373
+ msgstr "Setări BuddyPress Media."
1374
+
1375
+ #: app/helper/BPMediaSettings.php:39
1376
+ msgid "Video"
1377
+ msgstr "Video"
1378
+
1379
+ #: app/helper/BPMediaSettings.php:44
1380
+ msgid "Audio"
1381
+ msgstr "Audio"
1382
+
1383
+ #: app/main/includes/BPMediaActions.php:330
1384
+ msgid "Download"
1385
+ msgstr "Descarcă"
1386
+
1387
+ #: app/admin/BPMediaAdmin.php:367
1388
+ msgid "Spread the Word"
1389
+ msgstr "Duceți vorba mai departe"
1390
+
1391
+ #: app/helper/BPMediaAdminWidget.php:29
1392
+ msgid "Argument missing. id is required."
1393
+ msgstr "Argument lipsă. id-ul este necesar."
languages/buddypress-media-sr_SR.po ADDED
@@ -0,0 +1,1393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of BuddyPress Media in Serbian
2
+ # This file is distributed under the same license as the BuddyPress Media package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-04-25 07:31:18+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: BuddyPress Media\n"
12
+
13
+ #: app/helper/BPMediaSettings.php:612
14
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
15
+ msgstr ""
16
+
17
+ #: app/helper/BPMediaAddon.php:29
18
+ msgid "BuddyPress-Media Photo Tagging"
19
+ msgstr ""
20
+
21
+ #: app/main/profile/BPMediaAlbumScreen.php:300
22
+ msgid "Submit"
23
+ msgstr ""
24
+
25
+ #: app/main/includes/BPMediaActions.php:531
26
+ msgid "Please Select an Album !!"
27
+ msgstr ""
28
+
29
+ #: app/main/includes/BPMediaActions.php:1163
30
+ msgid "Private"
31
+ msgstr ""
32
+
33
+ #: app/main/includes/BPMediaActions.php:1175
34
+ msgid "No media found"
35
+ msgstr ""
36
+
37
+ #: app/main/profile/BPMediaAlbumScreen.php:250
38
+ #: app/main/profile/BPMediaAlbumScreen.php:258
39
+ msgid "Delete Album"
40
+ msgstr ""
41
+
42
+ #: app/main/profile/BPMediaAlbumScreen.php:254
43
+ #: app/main/profile/BPMediaAlbumScreen.php:297
44
+ msgid "Select All Visible"
45
+ msgstr ""
46
+
47
+ #: app/main/profile/BPMediaAlbumScreen.php:255
48
+ #: app/main/profile/BPMediaAlbumScreen.php:298
49
+ msgid "Unselect All Visible"
50
+ msgstr ""
51
+
52
+ #: app/main/profile/BPMediaAlbumScreen.php:256
53
+ msgid "Delete Selected Media"
54
+ msgstr ""
55
+
56
+ #: app/main/profile/BPMediaAlbumScreen.php:295
57
+ msgid "Move"
58
+ msgstr ""
59
+
60
+ #: app/main/profile/BPMediaAlbumScreen.php:299
61
+ msgid "Move selected"
62
+ msgstr ""
63
+
64
+ #: app/main/profile/BPMediaAlbumScreen.php:299
65
+ msgid "Move all"
66
+ msgstr ""
67
+
68
+ #: app/main/includes/BPMediaActions.php:183
69
+ msgid "Something went wrong. Please try again."
70
+ msgstr ""
71
+
72
+ #: app/main/includes/BPMediaActions.php:184
73
+ msgid "Are you sure you want to merge this album?"
74
+ msgstr ""
75
+
76
+ #: app/main/includes/BPMediaActions.php:185
77
+ msgid "Would you like to delete this album after the merge?"
78
+ msgstr ""
79
+
80
+ #: app/main/includes/BPMediaActions.php:186
81
+ msgid "Are you sure you want to delete the selected media?"
82
+ msgstr ""
83
+
84
+ #: app/main/includes/BPMediaActions.php:187
85
+ msgid "Are you sure you want to delete this activity and associated media?"
86
+ msgstr ""
87
+
88
+ #: app/main/includes/BPMediaActions.php:188
89
+ msgid "Are you sure?"
90
+ msgstr ""
91
+
92
+ #: app/main/includes/BPMediaActions.php:189
93
+ msgid "Please select media."
94
+ msgstr ""
95
+
96
+ #: app/main/includes/BPMediaActions.php:190
97
+ msgid "Please select an action."
98
+ msgstr ""
99
+
100
+ #: app/main/includes/BPMediaActions.php:529
101
+ msgid "You have not filled the album name"
102
+ msgstr ""
103
+
104
+ #: app/main/includes/BPMediaActions.php:530
105
+ msgid "Sorry you cannot create albums in this group"
106
+ msgstr ""
107
+
108
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
109
+ #: app/admin/BPMediaAdmin.php:475
110
+ msgid "Update Network Settings Automatically"
111
+ msgstr ""
112
+
113
+ #: app/admin/BPMediaAdmin.php:465
114
+ msgid "You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href=\"%s\">here</a> to change your settings manually."
115
+ msgstr ""
116
+
117
+ #: app/admin/BPMediaAdmin.php:474
118
+ msgid "You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href=\"%s\">here</a> to change your settings manually."
119
+ msgstr ""
120
+
121
+ #: app/admin/BPMediaAdmin.php:489
122
+ msgid "Network settings updated successfully."
123
+ msgstr ""
124
+
125
+ #: app/admin/BPMediaAdmin.php:454
126
+ msgid "You have images enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of %s. Click <a href=\"%s\">here</a> to change your settings manually."
127
+ msgstr ""
128
+
129
+ #: app/admin/BPMediaAdmin.php:455 app/admin/BPMediaAdmin.php:466
130
+ #: app/admin/BPMediaAdmin.php:475
131
+ msgid "Recommended"
132
+ msgstr ""
133
+
134
+ #: app/helper/BPMediaSettings.php:331
135
+ msgid "If you make changes to width, height or crop settings, you must use \"<a href=\"%s\">Regenerate Thumbnail Plugin</a>\" to regenerate old images.\""
136
+ msgstr ""
137
+
138
+ #: app/helper/BPMediaSettings.php:501
139
+ msgid "Width"
140
+ msgstr ""
141
+
142
+ #: app/helper/BPMediaSettings.php:502
143
+ msgid "Height"
144
+ msgstr ""
145
+
146
+ #: app/helper/BPMediaSettings.php:503
147
+ msgid "Crop"
148
+ msgstr ""
149
+
150
+ #: app/helper/BPMediaSettings.php:613
151
+ msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
152
+ msgstr ""
153
+
154
+ #: app/admin/BPMediaAdmin.php:68
155
+ msgid "Please do not refresh this page."
156
+ msgstr ""
157
+
158
+ #: app/admin/BPMediaAdmin.php:69
159
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
160
+ msgstr ""
161
+
162
+ #: app/helper/BPMediaSettings.php:266
163
+ msgid "Currently your network allows uploading of the following file types. You can change the settings <a href=\"%s\">here</a>.<br /><code>%s</code></span>"
164
+ msgstr ""
165
+
166
+ #: app/helper/BPMediaSettings.php:50
167
+ msgid "Image Settings"
168
+ msgstr ""
169
+
170
+ #: app/helper/BPMediaSettings.php:51
171
+ msgid "Thumbnail Size"
172
+ msgstr ""
173
+
174
+ #: app/helper/BPMediaSettings.php:55
175
+ msgid "Used in albums, sidebar media widget acitvity stream"
176
+ msgstr ""
177
+
178
+ #: app/helper/BPMediaSettings.php:57
179
+ msgid "Medium Size"
180
+ msgstr ""
181
+
182
+ #: app/helper/BPMediaSettings.php:61
183
+ msgid "Used in activity stream for single media uploads"
184
+ msgstr ""
185
+
186
+ #: app/helper/BPMediaSettings.php:63
187
+ msgid "Large Size"
188
+ msgstr ""
189
+
190
+ #: app/helper/BPMediaSettings.php:67
191
+ msgid "Used in single media and thickbox"
192
+ msgstr ""
193
+
194
+ #: app/helper/BPMediaSettings.php:70
195
+ msgid "Video Payer Settings"
196
+ msgstr ""
197
+
198
+ #: app/helper/BPMediaSettings.php:71 app/helper/BPMediaSettings.php:81
199
+ msgid "Activity Player Size"
200
+ msgstr ""
201
+
202
+ #: app/helper/BPMediaSettings.php:75 app/helper/BPMediaSettings.php:86
203
+ msgid "Single Player Size"
204
+ msgstr ""
205
+
206
+ #: app/helper/BPMediaSettings.php:80
207
+ msgid "Audio Player Settings"
208
+ msgstr ""
209
+
210
+ #: app/main/profile/BPMediaTemplate.php:98
211
+ msgid "Max Upload Size"
212
+ msgstr ""
213
+
214
+ #: app/main/profile/BPMediaTemplate.php:44
215
+ msgid "Select Album: "
216
+ msgstr ""
217
+
218
+ #: app/main/profile/BPMediaTemplate.php:93
219
+ msgid "&"
220
+ msgstr ""
221
+
222
+ #: app/importers/BPMediaAlbumimporter.php:141
223
+ msgid "The following %d BP Album Media id's could not be imported"
224
+ msgstr ""
225
+
226
+ #: app/importers/BPMediaAlbumimporter.php:150
227
+ msgid "I just imported bp-album to @buddypressmedia http://goo.gl/8Upmv on %s"
228
+ msgstr ""
229
+
230
+ #: app/importers/BPMediaAlbumimporter.php:151
231
+ msgid "Congratulations!"
232
+ msgstr ""
233
+
234
+ #: app/importers/BPMediaAlbumimporter.php:151
235
+ msgid "All media from BP Album has been imported."
236
+ msgstr ""
237
+
238
+ #: app/importers/BPMediaAlbumimporter.php:152
239
+ msgid "Tweet this"
240
+ msgstr ""
241
+
242
+ #: app/importers/BPMediaAlbumimporter.php:156
243
+ msgid "However, a lot of unnecessary files and a database table are still eating up your resources. If everything seems fine, you can clean this data up."
244
+ msgstr ""
245
+
246
+ #: app/importers/BPMediaAlbumimporter.php:159
247
+ msgid "Clean up Now"
248
+ msgstr ""
249
+
250
+ #: app/importers/BPMediaAlbumimporter.php:164
251
+ msgid "Clean up Later"
252
+ msgstr ""
253
+
254
+ #: app/importers/BPMediaAlbumimporter.php:169
255
+ msgid "Why don't you try adding some instagram like effects to your images?"
256
+ msgstr ""
257
+
258
+ #: app/importers/BPMediaAlbumimporter.php:187
259
+ msgid "Looks like you don't use BP Album. Is there any other BuddyPress Plugin you want an importer for?"
260
+ msgstr ""
261
+
262
+ #: app/importers/BPMediaAlbumimporter.php:188
263
+ msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
264
+ msgstr ""
265
+
266
+ #: app/importers/BPMediaAlbumimporter.php:72
267
+ msgid "Warning!"
268
+ msgstr ""
269
+
270
+ #: app/importers/BPMediaAlbumimporter.php:72
271
+ msgid "This import process is irreversible. Although everything is tested, please take a <a target=\"_blank\" href=\"http://codex.wordpress.org/WordPress_Backups\">backup of your database and files</a>, before proceeding. If you don't know your way around databases and files, consider <a target=\"_blank\" href=\"%s\">hiring us</a>, or another professional."
272
+ msgstr ""
273
+
274
+ #: app/importers/BPMediaAlbumimporter.php:73
275
+ msgid "If you have set \"WP_DEBUG\" in you wp-config.php file, please make sure it is set to \"false\", so that it doesn't conflict with the import process."
276
+ msgstr ""
277
+
278
+ #: app/importers/BPMediaAlbumimporter.php:74
279
+ msgid "I have taken a backup of the database and files of this site."
280
+ msgstr ""
281
+
282
+ #: app/importers/BPMediaAlbumimporter.php:76
283
+ msgid "Start Import"
284
+ msgstr ""
285
+
286
+ #: app/importers/BPMediaAlbumimporter.php:111
287
+ msgid "Comments"
288
+ msgstr ""
289
+
290
+ #: app/importers/BPMediaAlbumimporter.php:117
291
+ msgid "Comments: 0/0 (No comments to import)"
292
+ msgstr ""
293
+
294
+ #: app/importers/BPMediaAlbumimporter.php:124
295
+ msgid "User's Favorites"
296
+ msgstr ""
297
+
298
+ #: app/importers/BPMediaAlbumimporter.php:133
299
+ msgid "BP-Album is active on your site and will cause problems with the import."
300
+ msgstr ""
301
+
302
+ #: app/importers/BPMediaAlbumimporter.php:134
303
+ msgid "Click here to deactivate BP-Album and continue importing"
304
+ msgstr ""
305
+
306
+ #: app/importers/BPMediaAlbumimporter.php:140
307
+ msgid "Some of the media failed to import. The file might be corrupt or deleted."
308
+ msgstr ""
309
+
310
+ #: app/admin/BPMediaAdmin.php:94 app/admin/BPMediaAdmin.php:270
311
+ #: app/admin/BPMediaAdmin.php:271
312
+ msgid "Importer"
313
+ msgstr ""
314
+
315
+ #: app/helper/BPMediaSettings.php:193
316
+ msgid "BP-Album Importer"
317
+ msgstr ""
318
+
319
+ #: app/helper/BPMediaSettings.php:47
320
+ msgid "Enable Audio (mp3)"
321
+ msgstr ""
322
+
323
+ #: app/helper/BPMediaSettings.php:102
324
+ msgid "Lightbox Integration"
325
+ msgstr ""
326
+
327
+ #: app/helper/BPMediaSettings.php:103
328
+ msgid "Lightbox"
329
+ msgstr ""
330
+
331
+ #: app/helper/BPMediaSettings.php:106
332
+ msgid "Enable Lighbox on Media"
333
+ msgstr ""
334
+
335
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
336
+ #: app/importers/BPMediaAlbumimporter.php:177
337
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
338
+ msgstr ""
339
+
340
+ #: app/helper/BPMediaSettings.php:42
341
+ msgid "Enable Video (mp4)"
342
+ msgstr ""
343
+
344
+ #: app/helper/BPMediaAddon.php:39
345
+ msgid "BuddyPress-Media Instagram"
346
+ msgstr ""
347
+
348
+ #: app/helper/BPMediaAddon.php:32 app/helper/BPMediaAddon.php:42
349
+ #: app/importers/BPMediaAlbumimporter.php:176
350
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
351
+ msgstr ""
352
+
353
+ #: app/helper/BPMediaAddon.php:33 app/helper/BPMediaAddon.php:43
354
+ #: app/importers/BPMediaAlbumimporter.php:177
355
+ msgid "Important"
356
+ msgstr ""
357
+
358
+ #: app/main/activity/BPMediaActivity.php:46
359
+ msgid "Attach Media"
360
+ msgstr ""
361
+
362
+ #: app/main/activity/BPMediaActivity.php:103
363
+ msgid "View"
364
+ msgstr ""
365
+
366
+ #: app/main/activity/BPMediaActivity.php:161
367
+ msgid "%1$s posted an update in the group %2$s"
368
+ msgstr ""
369
+
370
+ #: app/main/BuddyPressMedia.php:160
371
+ msgid "To use BuddyPress Media, BuddyPress must be installed first."
372
+ msgstr ""
373
+
374
+ #: app/main/BuddyPressMedia.php:161
375
+ msgid "<a href=\"%s\">Install BuddyPress now</a>"
376
+ msgstr ""
377
+
378
+ #: app/admin/BPMediaAdmin.php:386
379
+ msgid "OR"
380
+ msgstr ""
381
+
382
+ #: app/admin/BPMediaAdmin.php:387
383
+ msgid "Use <a href=\"https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">premium add-ons</a> starting from $9"
384
+ msgstr ""
385
+
386
+ #: app/helper/BPMediaSupport.php:231
387
+ msgid "Debug Info"
388
+ msgstr ""
389
+
390
+ #: app/helper/BPMediaSettings.php:312 app/helper/BPMediaSettings.php:314
391
+ msgid "\"Number of media\" count value should be numeric and greater than 0."
392
+ msgstr ""
393
+
394
+ #: app/helper/BPMediaSettings.php:314
395
+ msgid "Default Count"
396
+ msgstr ""
397
+
398
+ #: app/helper/BPMediaSettings.php:548
399
+ msgid "None"
400
+ msgstr ""
401
+
402
+ #: app/helper/BPMediaSupport.php:50
403
+ msgid "Debug info"
404
+ msgstr ""
405
+
406
+ #: app/helper/BPMediaSettings.php:178
407
+ msgid "Repair media counts"
408
+ msgstr ""
409
+
410
+ #: app/helper/BPMediaSettings.php:164
411
+ msgid "Allow users to override admin defaults (<em>Recommended</em>)"
412
+ msgstr ""
413
+
414
+ #: app/helper/BPMediaSettings.php:167
415
+ msgid "Other Settings"
416
+ msgstr ""
417
+
418
+ #: app/helper/BPMediaSettings.php:175 app/helper/BPMediaSettings.php:177
419
+ msgid "Recount"
420
+ msgstr ""
421
+
422
+ #: app/helper/BPMediaSettings.php:148
423
+ msgid "<strong>Friends</strong> - Visible to user's friends"
424
+ msgstr ""
425
+
426
+ #: app/helper/BPMediaSettings.php:149
427
+ msgid "<strong>Users</strong> - Visible to registered users"
428
+ msgstr ""
429
+
430
+ #: app/helper/BPMediaSettings.php:150
431
+ msgid "<strong>Public</strong> - Visible to the world"
432
+ msgstr ""
433
+
434
+ #: app/helper/BPMediaSettings.php:147
435
+ msgid "<strong>Private</strong> - Visible only to the user"
436
+ msgstr ""
437
+
438
+ #: app/helper/BPMediaSettings.php:93
439
+ msgid "Activity Upload"
440
+ msgstr ""
441
+
442
+ #: app/helper/BPMediaSettings.php:94
443
+ msgid "Activity Uploads"
444
+ msgstr ""
445
+
446
+ #: app/helper/BPMediaSettings.php:97
447
+ msgid "Enable Activity Uploading"
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaSettings.php:111
451
+ msgid "Groups Integration"
452
+ msgstr ""
453
+
454
+ #: app/helper/BPMediaSettings.php:121
455
+ msgid "Allow Media in Groups"
456
+ msgstr ""
457
+
458
+ #: app/helper/BPMediaSettings.php:126
459
+ msgid "Display Settings"
460
+ msgstr ""
461
+
462
+ #: app/helper/BPMediaSettings.php:127
463
+ msgid "Number of media"
464
+ msgstr ""
465
+
466
+ #: app/helper/BPMediaSettings.php:37
467
+ msgid "Enable Photos"
468
+ msgstr ""
469
+
470
+ #: app/main/includes/BPMediaActions.php:337
471
+ #: app/main/includes/BPMediaActions.php:971
472
+ msgid "Set as Album Cover"
473
+ msgstr ""
474
+
475
+ #: app/main/includes/BPMediaActions.php:342
476
+ #: app/main/includes/BPMediaActions.php:974
477
+ msgid "Unset as Album Cover"
478
+ msgstr ""
479
+
480
+ #: app/helper/BPMediaSettings.php:139
481
+ msgid "Privacy Settings"
482
+ msgstr ""
483
+
484
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
485
+ msgid "Update BuddyPress Media Database"
486
+ msgstr ""
487
+
488
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
489
+ msgid "Start"
490
+ msgstr ""
491
+
492
+ #: app/main/privacy/BPMediaPrivacy.php:113
493
+ msgid "<strong>Private</strong>, Visible only to myself"
494
+ msgstr ""
495
+
496
+ #: app/main/privacy/BPMediaPrivacy.php:117
497
+ msgid "<strong>Friends</strong>, Visible to my friends"
498
+ msgstr ""
499
+
500
+ #: app/main/privacy/BPMediaPrivacy.php:145
501
+ msgid "Set default privacy levels for your media"
502
+ msgstr ""
503
+
504
+ #: app/main/privacy/BPMediaPrivacy.php:326
505
+ msgid "This %s is private"
506
+ msgstr ""
507
+
508
+ #: app/main/privacy/BPMediaPrivacy.php:327
509
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
510
+ msgstr ""
511
+
512
+ #: app/main/privacy/BPMediaPrivacy.php:328
513
+ msgid "This %s is visible to logged in users, only"
514
+ msgstr ""
515
+
516
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
517
+ msgid "Default privacy level for your media has been updated"
518
+ msgstr ""
519
+
520
+ #: app/main/widgets/BPMediaWidget.php:82
521
+ msgid ""
522
+ "Please configure this widget\n"
523
+ "\t\t\t\t\t\t\t\t\t<a href=\"%s\" target=\"_blank\"\n"
524
+ "\t\t\t\t\t\t\t\t\ttitle=\"Configure BuddyPress Media Widget\">\n"
525
+ "\t\t\t\t\t\t\t\t\there</a>."
526
+ msgstr ""
527
+
528
+ #: app/main/profile/BPMediaAlbumScreen.php:300
529
+ msgid "to"
530
+ msgstr ""
531
+
532
+ #: app/main/profile/BPMediaScreen.php:125
533
+ msgid "All %s"
534
+ msgstr ""
535
+
536
+ #: app/main/BuddyPressMedia.php:547
537
+ msgid ""
538
+ "The BuddyPress version installed is an\n"
539
+ "\t\t\t\t\t\t\t\t\t\tolder version and is not supported,\n"
540
+ "\t\t\t\t\t\t\t\t\t\tplease update BuddyPress to use\n"
541
+ "\t\t\t\t\t\t\t\t\t\tBuddyPress Media Plugin.\n"
542
+ "\t\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
543
+ msgstr ""
544
+
545
+ #: app/main/BuddyPressMedia.php:560
546
+ msgid ""
547
+ "You have not installed BuddyPress.\n"
548
+ "\t\t\t\t\t\t\t\t\tPlease install latest version of BuddyPress\n"
549
+ "\t\t\t\t\t\t\t\t\tto use BuddyPress Media plugin.\n"
550
+ "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
551
+ msgstr ""
552
+
553
+ #: app/admin/BPMediaAdmin.php:363
554
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
555
+ msgstr ""
556
+
557
+ #: app/admin/BPMediaAdmin.php:364
558
+ msgid "Add link to footer"
559
+ msgstr ""
560
+
561
+ #: app/admin/BPMediaAdmin.php:365
562
+ msgid "Tweet"
563
+ msgstr ""
564
+
565
+ #: app/admin/BPMediaAdmin.php:366
566
+ msgid "Rate on WordPress.org"
567
+ msgstr ""
568
+
569
+ #: app/admin/BPMediaAdmin.php:377
570
+ msgid "USD"
571
+ msgstr ""
572
+
573
+ #: app/admin/BPMediaAdmin.php:407
574
+ msgid "Subscribe"
575
+ msgstr ""
576
+
577
+ #: app/admin/BPMediaAdmin.php:99
578
+ msgid "BuddyPress Media Convert Videos"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:99 app/admin/BPMediaAdmin.php:263
582
+ msgid "Convert Videos"
583
+ msgstr ""
584
+
585
+ #: app/admin/BPMediaAdmin.php:182
586
+ msgid "By"
587
+ msgstr ""
588
+
589
+ #: app/admin/BPMediaAdmin.php:262
590
+ msgid "BuddyPress Media Covert Videos"
591
+ msgstr ""
592
+
593
+ #: app/helper/BPMediaSettings.php:303 app/helper/BPMediaSettings.php:305
594
+ msgid "Atleast one Media Type Must be selected"
595
+ msgstr ""
596
+
597
+ #: app/helper/BPMediaSettings.php:305
598
+ msgid "Media Type"
599
+ msgstr ""
600
+
601
+ #: app/helper/BPMediaSettings.php:603
602
+ msgid "BuddyPress Media 2.6 requires a database upgrade. "
603
+ msgstr ""
604
+
605
+ #: app/admin/BPMediaAdmin.php:91
606
+ msgid "BuddyPress Media Database Update"
607
+ msgstr ""
608
+
609
+ #: app/main/privacy/BPMediaPrivacy.php:121
610
+ msgid "<strong>Users</strong>, Visible to registered users"
611
+ msgstr ""
612
+
613
+ #: app/main/privacy/BPMediaPrivacy.php:125
614
+ msgid "<strong>Public</strong>, Visible to the world"
615
+ msgstr ""
616
+
617
+ #: app/helper/BPMediaSettings.php:172
618
+ msgid "Enable menu in WordPress admin bar"
619
+ msgstr ""
620
+
621
+ #: app/helper/BPMediaSettings.php:189 app/helper/BPMediaSettings.php:604
622
+ msgid "Update Database"
623
+ msgstr ""
624
+
625
+ #: app/helper/BPMediaSettings.php:132
626
+ msgid "Download Button"
627
+ msgstr ""
628
+
629
+ #: app/helper/BPMediaSettings.php:135
630
+ msgid "Display download button under media"
631
+ msgstr ""
632
+
633
+ #: app/main/BuddyPressMedia.php:306
634
+ msgid "Privacy"
635
+ msgstr ""
636
+
637
+ #: app/helper/BPMediaSettings.php:140
638
+ msgid "Enable Privacy"
639
+ msgstr ""
640
+
641
+ #: app/helper/BPMediaSettings.php:143
642
+ msgid "Enable privacy"
643
+ msgstr ""
644
+
645
+ #: app/helper/BPMediaSettings.php:161
646
+ msgid "User Override"
647
+ msgstr ""
648
+
649
+ #: app/helper/BPMediaSettings.php:155
650
+ msgid "Default Privacy"
651
+ msgstr ""
652
+
653
+ #: app/helper/BPMediaSettings.php:33
654
+ msgid "Enabled Media Types"
655
+ msgstr ""
656
+
657
+ #: app/helper/BPMediaSettings.php:169
658
+ msgid "Admin bar menu"
659
+ msgstr "Admin bar meni\n"
660
+
661
+ #: app/helper/BPMediaSettings.php:318
662
+ msgid "Settings saved."
663
+ msgstr "Podešavanja sačuvana."
664
+
665
+ #: app/main/profile/BPMediaTemplate.php:29
666
+ msgid "Wall Posts"
667
+ msgstr "Objave na zidu"
668
+
669
+ #: app/main/profile/BPMediaTemplate.php:83
670
+ msgid "+ Create New Album"
671
+ msgstr "Kreiraj novi album"
672
+
673
+ #: app/main/profile/BPMediaTemplate.php:90
674
+ msgid "Cancel"
675
+ msgstr "Otkaži"
676
+
677
+ #: app/main/profile/BPMediaTemplate.php:213
678
+ msgid "Show More"
679
+ msgstr "Prikaži više"
680
+
681
+ #: app/main/profile/BPMediaTemplate.php:267
682
+ msgid "Select"
683
+ msgstr "Odaberi"
684
+
685
+ #: app/main/profile/BPMediaTemplate.php:286
686
+ msgid "Add Media"
687
+ msgstr "Dodaj media dokument\n"
688
+
689
+ #: app/main/includes/BPMediaFilters.php:158
690
+ msgid "Delete %s"
691
+ msgstr "Obriši %s"
692
+
693
+ #: app/main/widgets/BPMediaWidget.php:197
694
+ msgid "Widget Type:"
695
+ msgstr "Vrsta dodatka:"
696
+
697
+ #: app/main/widgets/BPMediaWidget.php:210
698
+ msgid "Show All"
699
+ msgstr "Prikaži sve"
700
+
701
+ #: app/main/widgets/BPMediaWidget.php:213
702
+ msgid "Show Photos"
703
+ msgstr "Prikaži slike"
704
+
705
+ #: app/main/widgets/BPMediaWidget.php:216
706
+ msgid "Show Music"
707
+ msgstr "Prikaži muziku"
708
+
709
+ #: app/main/widgets/BPMediaWidget.php:220
710
+ msgid "Show Videos"
711
+ msgstr "Prikaži video snimke"
712
+
713
+ #: app/main/widgets/BPMediaWidget.php:20
714
+ msgid "The most recent/popular media uploaded on your site"
715
+ msgstr "Najskoriji/najpopularniji media dokument otpremljen na vaš sajt"
716
+
717
+ #: app/main/widgets/BPMediaWidget.php:21
718
+ msgid "BuddyPress Media Widget"
719
+ msgstr "BuddyPress Media Dodatak"
720
+
721
+ #: app/main/widgets/BPMediaWidget.php:150
722
+ msgid "No "
723
+ msgstr "Ne"
724
+
725
+ #: app/main/BuddyPressMedia.php:158
726
+ msgid "BuddyPress is not installed."
727
+ msgstr "BuddyPress nije instaliran."
728
+
729
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:247
730
+ msgid "BuddyPress Media Addons"
731
+ msgstr "BuddyPress Media Dodaci"
732
+
733
+ #: app/admin/BPMediaAdmin.php:88
734
+ msgid "BuddyPress Media Component"
735
+ msgstr "BuddyPress Media Komponenta"
736
+
737
+ #: app/helper/BPMediaSupport.php:121
738
+ msgid "Additional Information"
739
+ msgstr "Dodatne Informacije"
740
+
741
+ #: app/helper/BPMediaSettings.php:286
742
+ msgid "Recount Success"
743
+ msgstr "Ponovno prebrojavanje uspešno"
744
+
745
+ #: app/helper/BPMediaSettings.php:291
746
+ msgid "Recount Fail"
747
+ msgstr "Ponovno prebrojavanje nije uspelo."
748
+
749
+ #: app/main/includes/BPMediaHostWordpress.php:170
750
+ msgid "MP4 file you have uploaded is corrupt."
751
+ msgstr "MP4 dokument koji ste otpremili je oštećen."
752
+
753
+ #: app/helper/BPMediaSupport.php:246
754
+ msgid "Thank you for your Feedback/Suggestion."
755
+ msgstr "Zahvaljujemo na povratnoj informaciji/sugestiji."
756
+
757
+ #: app/helper/BPMediaSupport.php:248
758
+ msgid "Thank you for posting your support request."
759
+ msgstr "Hvala vam na postavljanju zahteva za podršku."
760
+
761
+ #: app/helper/BPMediaSupport.php:249
762
+ msgid "We will get back to you shortly."
763
+ msgstr "Vratićemo se uskoro. "
764
+
765
+ #: app/helper/BPMediaSupport.php:252
766
+ msgid "Your server failed to send an email."
767
+ msgstr "Vaš server nije uspeo da pošalje email."
768
+
769
+ #: app/helper/BPMediaSupport.php:253
770
+ msgid "Kindly contact your server support to fix this."
771
+ msgstr "Ljubazno zamolite vašu server podršku da popravi ovo."
772
+
773
+ #: app/helper/BPMediaSupport.php:254
774
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
775
+ msgstr "Možete, pak, da kreirate zahtev za podršku <a href=\"%s\"> ovde </a>"
776
+
777
+ #: app/helper/BPMediaSupport.php:95
778
+ msgid "Name"
779
+ msgstr "Ime"
780
+
781
+ #: app/helper/BPMediaSupport.php:98
782
+ msgid "Email"
783
+ msgstr "Email"
784
+
785
+ #: app/helper/BPMediaSupport.php:101
786
+ msgid "Website"
787
+ msgstr "Web sajt"
788
+
789
+ #: app/helper/BPMediaSupport.php:104
790
+ msgid "Phone"
791
+ msgstr "Telefon"
792
+
793
+ #: app/helper/BPMediaSupport.php:107
794
+ msgid "Subject"
795
+ msgstr "Naslov"
796
+
797
+ #: app/helper/BPMediaSupport.php:110
798
+ msgid "Details"
799
+ msgstr "Detalji"
800
+
801
+ #: app/helper/BPMediaSupport.php:161
802
+ msgid "BuddyPress Media Premium Support Request from"
803
+ msgstr "BuddyPress Media Premium zahtev za podršku od"
804
+
805
+ #: app/helper/BPMediaSupport.php:164
806
+ msgid "BuddyPress Media New Feature Request from"
807
+ msgstr "BuddyPress Media zahtev za novim funkcijama od"
808
+
809
+ #: app/helper/BPMediaSupport.php:167
810
+ msgid "BuddyPress Media Bug Report from"
811
+ msgstr "BuddyPress Media izveštaj o greški od"
812
+
813
+ #: app/helper/BPMediaSupport.php:170
814
+ msgid "BuddyPress Media Contact from"
815
+ msgstr "BuddyPress Media Kontakt od"
816
+
817
+ #: app/helper/BPMediaSettings.php:358
818
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' ) "
819
+ msgstr ""
820
+
821
+ #: app/helper/BPMediaSettings.php:403 app/helper/BPMediaSettings.php:452
822
+ #: app/helper/BPMediaSettings.php:531
823
+ msgid "Please provide \"option\" value ( required ) in the argument. Pass argument to add_settings_field in the following format array( 'option' => 'option_name' )"
824
+ msgstr "Molimo obezbedite vrednost ,,opcija\" (obavezna) u diskusiji. Prebacite diskusiju na polje dodaj podešavanja u nizu sledećeg formata ( 'option' => 'option_name' )"
825
+
826
+ #: app/main/includes/BPMediaActions.php:874
827
+ msgid "%1$s created an album %2$s"
828
+ msgstr "%1$s je kreirao album %2$s"
829
+
830
+ #: app/main/BPMediaComponent.php:262
831
+ msgid "All Albums"
832
+ msgstr "Svi albumi"
833
+
834
+ #: app/main/BPMediaComponent.php:263
835
+ msgid "View Album"
836
+ msgstr "Pogledaj Album"
837
+
838
+ #: app/main/BPMediaComponent.php:264
839
+ msgid "Search Albums"
840
+ msgstr "Pretraži Albume"
841
+
842
+ #: app/main/BPMediaComponent.php:265
843
+ msgid "No album found"
844
+ msgstr "Nema pronađenih albuma"
845
+
846
+ #: app/main/BPMediaComponent.php:266
847
+ msgid "No album found in Trash"
848
+ msgstr "Albumi nisu pronađeni u Smeću"
849
+
850
+ #: app/main/BPMediaComponent.php:300
851
+ msgid "Add New Media"
852
+ msgstr "Dodaj Novi Media dokument"
853
+
854
+ #: app/main/BPMediaComponent.php:308
855
+ msgid "BuddyPress Media's Media Files"
856
+ msgstr "Media Dokumenti BuddyPress Medie"
857
+
858
+ #: app/main/includes/BPMediaFunction.php:229
859
+ msgid "%1$s added new media in album %2$s"
860
+ msgstr "%1$s je dodao novi media dokument u album %2$s"
861
+
862
+ #: app/importers/BPMediaAlbumimporter.php:81
863
+ msgid "Users"
864
+ msgstr "Korisnici"
865
+
866
+ #: app/main/includes/BPMediaFilters.php:410
867
+ msgid "Total Photos"
868
+ msgstr "Sve Slike"
869
+
870
+ #: app/main/includes/BPMediaFilters.php:411
871
+ msgid "Total Videos"
872
+ msgstr "Svi Video snimci"
873
+
874
+ #: app/main/includes/BPMediaFilters.php:412
875
+ msgid "Total Audio"
876
+ msgstr "Svi Audio snimci"
877
+
878
+ #: app/main/includes/BPMediaFilters.php:413
879
+ msgid "Total Albums"
880
+ msgstr "Svi Albumi"
881
+
882
+ #: app/helper/BPMediaSettings.php:118
883
+ msgid "Groups"
884
+ msgstr "Grupe"
885
+
886
+ #: app/main/includes/BPMediaActions.php:348
887
+ msgid "Edit Media"
888
+ msgstr "Uredi Media dokument"
889
+
890
+ #: app/main/profile/BPMediaAlbumScreen.php:246
891
+ msgid "Edit"
892
+ msgstr "Uredi"
893
+
894
+ #: app/main/BPMediaComponent.php:258 app/main/profile/BPMediaTemplate.php:89
895
+ #: app/main/profile/BPMediaTemplate.php:282
896
+ msgid "Create"
897
+ msgstr "Kreiraj"
898
+
899
+ #: app/main/BPMediaComponent.php:260
900
+ #: app/main/profile/BPMediaAlbumScreen.php:246
901
+ msgid "Edit Album"
902
+ msgstr "Uredi Album"
903
+
904
+ #: app/main/BPMediaComponent.php:261
905
+ msgid "New Album"
906
+ msgstr "Novi Album"
907
+
908
+ #: app/helper/BPMediaSupport.php:126
909
+ msgid "Your WP Admin Login:"
910
+ msgstr "Vaša WP Admin Prijava:"
911
+
912
+ #: app/helper/BPMediaSupport.php:129
913
+ msgid "Your WP Admin password:"
914
+ msgstr "Vaša WP Admin Šifra:"
915
+
916
+ #: app/helper/BPMediaSupport.php:132
917
+ msgid "Your SSH / FTP host:"
918
+ msgstr "Vaš SSH / FTP host:"
919
+
920
+ #: app/helper/BPMediaSupport.php:135
921
+ msgid "Your SSH / FTP login:"
922
+ msgstr "Vaša SSH / FTP prijava:"
923
+
924
+ #: app/helper/BPMediaSupport.php:138
925
+ msgid "Your SSH / FTP password:"
926
+ msgstr "Vaša SSH / FTP šifra:"
927
+
928
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
929
+ msgid "Media Title"
930
+ msgstr "Naziv Media dokumenta"
931
+
932
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
933
+ msgid "Media Description"
934
+ msgstr "Opis Media dokumenta"
935
+
936
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
937
+ msgid "Select Media File"
938
+ msgstr "Izaberi Media dokument"
939
+
940
+ #: app/main/BPMediaComponent.php:60
941
+ msgid "Search Media..."
942
+ msgstr "Pretraži Media dokument"
943
+
944
+ #: app/admin/BPMediaAdmin.php:97 app/admin/BPMediaAdmin.php:254
945
+ msgid "BuddyPress Media Support"
946
+ msgstr "BuddyPress Media Podrška"
947
+
948
+ #: app/helper/BPMediaSupport.php:81
949
+ msgid "Submit a Bug Report"
950
+ msgstr "Pošalji izveštaj o grešci "
951
+
952
+ #: app/helper/BPMediaSupport.php:84
953
+ msgid "Submit a New Feature Request"
954
+ msgstr "Pošalji Zahtev za Novom Funkcijom"
955
+
956
+ #: app/helper/BPMediaSupport.php:87
957
+ msgid "Submit a Premium Support Request"
958
+ msgstr "Pošalji Zahtev za Premium Podrškom"
959
+
960
+ #: app/main/includes/BPMediaHostWordpress.php:615
961
+ msgid "Post"
962
+ msgstr "Objavi"
963
+
964
+ #: app/main/includes/BPMediaHostWordpress.php:615
965
+ msgid "or press esc to cancel."
966
+ msgstr "ili pritisni esc za otkazivanje."
967
+
968
+ #: app/main/profile/BPMediaAlbumScreen.php:252
969
+ msgid "Delete"
970
+ msgstr "Obriši"
971
+
972
+ #: app/main/includes/BPMediaHostWordpress.php:59
973
+ msgid "Sorry, the requested media does not exist."
974
+ msgstr "Žao nam je, traženi media dokument ne postoji. "
975
+
976
+ #: app/main/includes/BPMediaHostWordpress.php:137
977
+ msgid "Error Uploading File"
978
+ msgstr "Greška pri Otpremanju Dokumenta"
979
+
980
+ #: app/main/includes/BPMediaHostWordpress.php:177
981
+ #: app/main/includes/BPMediaHostWordpress.php:182
982
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
983
+ msgstr "MP4 dokument koji ste otpremili koristi nepodržan video kodek. Podržani video kodek je H.264."
984
+
985
+ #: app/main/includes/BPMediaHostWordpress.php:187
986
+ msgid "The MP4 file you have uploaded is not a video file."
987
+ msgstr "MP4 dokument koji ste otpremili nije video dokument."
988
+
989
+ #: app/main/includes/BPMediaHostWordpress.php:198
990
+ msgid "MP3 file you have uploaded is currupt."
991
+ msgstr "MP3 dokument koji ste otpremili je oštećen."
992
+
993
+ #: app/main/includes/BPMediaHostWordpress.php:205
994
+ #: app/main/includes/BPMediaHostWordpress.php:210
995
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
996
+ msgstr "MP3 dokument koji ste otpremili koristi nepodržani audio format. Podržani audio format je MP3."
997
+
998
+ #: app/main/includes/BPMediaHostWordpress.php:215
999
+ msgid "The MP3 file you have uploaded is not an audio file."
1000
+ msgstr "MP3 dokument koji ste otpremili nije audio dokument. "
1001
+
1002
+ #: app/main/includes/BPMediaHostWordpress.php:227
1003
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1004
+ msgstr "Media Dokument koji ste pokušali da otpremite nije podržan. Podržani media dokumenti su .jpg, .png, .gif, .mp3, .mov i.mp4."
1005
+
1006
+ #: app/main/includes/BPMediaHostWordpress.php:236
1007
+ msgid "Error creating attachment for the media file, please try again"
1008
+ msgstr "Greška pri kreiranju priloga za media dokument, molimo, pokušajte ponovo."
1009
+
1010
+ #: app/main/includes/BPMediaHostWordpress.php:346
1011
+ msgid "%s uploaded a media."
1012
+ msgstr "%s je otpremio media dokument."
1013
+
1014
+ #: app/main/includes/BPMediaHostWordpress.php:367
1015
+ msgid "Uploaded by "
1016
+ msgstr "Otpremio"
1017
+
1018
+ #: app/main/includes/BPMediaHostWordpress.php:590
1019
+ msgid "Comment <span>%s</span>"
1020
+ msgstr "Komentariši <span>%s</span>"
1021
+
1022
+ #: app/main/includes/BPMediaHostWordpress.php:594
1023
+ msgid "Favorite"
1024
+ msgstr "Favorit"
1025
+
1026
+ #: app/main/includes/BPMediaHostWordpress.php:596
1027
+ msgid "Remove Favorite"
1028
+ msgstr "Ukloni Favorit"
1029
+
1030
+ #: app/main/widgets/BPMediaWidget.php:203
1031
+ msgid "Title:"
1032
+ msgstr "Naziv:"
1033
+
1034
+ #: app/main/widgets/BPMediaWidget.php:206
1035
+ msgid "Number of posts to show:"
1036
+ msgstr "Broj objava za prikazivanje:"
1037
+
1038
+ #: app/main/widgets/BPMediaWidget.php:199
1039
+ msgid "Recent Media"
1040
+ msgstr "Noviji Media dokumenti"
1041
+
1042
+ #: app/main/widgets/BPMediaWidget.php:72
1043
+ msgid "All"
1044
+ msgstr "Sve"
1045
+
1046
+ #: app/main/group/BPMediaGroupsExtension.php:41
1047
+ #: app/main/group/BPMediaGroupsExtension.php:88
1048
+ msgid "Who can create Albums in this group?"
1049
+ msgstr "Ko može da kreira Albume u ovoj grupi?"
1050
+
1051
+ #: app/main/group/BPMediaGroupsExtension.php:45
1052
+ #: app/main/group/BPMediaGroupsExtension.php:92
1053
+ msgid "All Group Members"
1054
+ msgstr "Svi Članovi Grupe"
1055
+
1056
+ #: app/main/group/BPMediaGroupsExtension.php:49
1057
+ #: app/main/group/BPMediaGroupsExtension.php:96
1058
+ msgid "Group Admins and Mods only"
1059
+ msgstr "Samo Administratori i Moderatori Grupe"
1060
+
1061
+ #: app/main/group/BPMediaGroupsExtension.php:53
1062
+ #: app/main/group/BPMediaGroupsExtension.php:100
1063
+ msgid "Group Admin only"
1064
+ msgstr "Samo Administrator Grupe"
1065
+
1066
+ #: app/main/group/BPMediaGroupsExtension.php:104
1067
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1068
+ msgid "Save Changes"
1069
+ msgstr "Sačuvaj Izmene"
1070
+
1071
+ #: app/main/group/BPMediaGroupsExtension.php:130
1072
+ msgid "There was an error saving, please try again"
1073
+ msgstr "Došlo je do greške prilikom čuvanja, molimo, pokušajte ponovo"
1074
+
1075
+ #: app/main/group/BPMediaGroupsExtension.php:132
1076
+ msgid "Settings saved successfully"
1077
+ msgstr "Podešavanja su uspešno sačuvana"
1078
+
1079
+ #: app/main/group/BPMediaGroupsExtension.php:153
1080
+ msgid ""
1081
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1082
+ "\t home screen."
1083
+ msgstr "Ovde možes da prikažeš mali odeljak sa informacijama iz ekstenzije tvoje grupe. Biće prikazan na početnom ekranu grupe. "
1084
+
1085
+ #: app/main/widgets/BPMediaWidget.php:200
1086
+ msgid "Popular Media"
1087
+ msgstr "Popularni Media dokumenti"
1088
+
1089
+ #: app/main/profile/BPMediaScreen.php:396
1090
+ msgid "Media deleted successfully"
1091
+ msgstr "Media dokument uspešno obrisan"
1092
+
1093
+ #: app/main/profile/BPMediaTemplate.php:98
1094
+ #: app/main/profile/BPMediaUploadScreen.php:33
1095
+ msgid "Upload Media"
1096
+ msgstr "Otpremi Media dokument"
1097
+
1098
+ #: app/main/profile/BPMediaUploadScreen.php:71
1099
+ msgid "You are not allowed to be here"
1100
+ msgstr "Nije vam dozvoljen pristup ovde"
1101
+
1102
+ #: app/main/profile/BPMediaUploadScreen.php:98
1103
+ #: app/main/profile/BPMediaUploadScreen.php:122
1104
+ msgid "File uploaded is not supported"
1105
+ msgstr "Otpremljeni dokument nije podržan"
1106
+
1107
+ #: app/main/profile/BPMediaUploadScreen.php:105
1108
+ msgid "Image uploads are disabled"
1109
+ msgstr "Nije omogućeno otpremanje slika"
1110
+
1111
+ #: app/main/profile/BPMediaUploadScreen.php:111
1112
+ msgid "Video uploads are disabled"
1113
+ msgstr "Nije omogućeno otpremanje video snimaka"
1114
+
1115
+ #: app/main/profile/BPMediaUploadScreen.php:117
1116
+ msgid "Audio uploads are disabled"
1117
+ msgstr "Nije omogućeno otpremanje audio snimaka"
1118
+
1119
+ #: app/main/profile/BPMediaUploadScreen.php:135
1120
+ msgid "Upload Successful"
1121
+ msgstr "Otpremanje uspešno"
1122
+
1123
+ #: app/main/profile/BPMediaUploadScreen.php:140
1124
+ msgid "You did not specified a file to upload"
1125
+ msgstr "Nije označen dokument za otpremanje"
1126
+
1127
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1128
+ msgid "Sorry, no media items were found in this album."
1129
+ msgstr "Žalimo, nisu pronađeni media dokumenti u ovom albumu."
1130
+
1131
+ #: app/main/profile/BPMediaAlbum.php:74
1132
+ msgid "Sorry, the requested album does not exist."
1133
+ msgstr "Žao nam je, traženi album ne postoji."
1134
+
1135
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1136
+ msgid "Sorry, the requested media does not belong to the group"
1137
+ msgstr "Žao nam je, traženi media dokument ne pripada grupi."
1138
+
1139
+ #: app/main/BPMediaGroupLoader.php:252
1140
+ msgid "Media Settings"
1141
+ msgstr "Media Podešavanja"
1142
+
1143
+ #: app/main/group/BPMediaGroupsExtension.php:40
1144
+ #: app/main/group/BPMediaGroupsExtension.php:87
1145
+ msgid "Album Creation Control"
1146
+ msgstr "Kontrola Kreiranja Albuma"
1147
+
1148
+ #: app/main/profile/BPMediaScreen.php:114
1149
+ #: app/main/profile/BPMediaScreen.php:374
1150
+ msgid "The requested url does not exist"
1151
+ msgstr "Traženi url ne postoji"
1152
+
1153
+ #: app/main/profile/BPMediaScreen.php:196
1154
+ #: app/main/profile/BPMediaAlbumScreen.php:82
1155
+ msgid "Sorry, no %s were found."
1156
+ msgstr "Žao nam je, nisu pronađeni %s."
1157
+
1158
+ #: app/main/profile/BPMediaScreen.php:307
1159
+ msgid "Edit %s"
1160
+ msgstr "Uredi %s "
1161
+
1162
+ #: app/main/profile/BPMediaScreen.php:328
1163
+ msgid "%s Title"
1164
+ msgstr "%s Naziv"
1165
+
1166
+ #: app/main/profile/BPMediaScreen.php:334
1167
+ msgid "%s Description"
1168
+ msgstr "%s Opis"
1169
+
1170
+ #: app/main/profile/BPMediaScreen.php:342
1171
+ msgid "Update"
1172
+ msgstr "Ažuriraj"
1173
+
1174
+ #: app/main/profile/BPMediaScreen.php:343
1175
+ msgid "Back to Media File"
1176
+ msgstr "Povratak na Media Dokument"
1177
+
1178
+ #: app/main/profile/BPMediaScreen.php:344
1179
+ msgid "Back to Media"
1180
+ msgstr "Povratak na Media"
1181
+
1182
+ #: app/main/profile/BPMediaScreen.php:367
1183
+ msgid "You do not have access to this page."
1184
+ msgstr "Nemate pristup ovoj stranici"
1185
+
1186
+ #: app/main/BPMediaComponent.php:256 app/main/BPMediaComponent.php:268
1187
+ #: app/main/BuddyPressMedia.php:327
1188
+ msgid "Albums"
1189
+ msgstr "Albumi"
1190
+
1191
+ #: app/main/BPMediaComponent.php:257 app/main/BuddyPressMedia.php:330
1192
+ msgid "Album"
1193
+ msgstr "Album"
1194
+
1195
+ #: app/main/BuddyPressMedia.php:333
1196
+ msgid "Upload"
1197
+ msgstr "Otpremi"
1198
+
1199
+ #: app/main/profile/BPMediaTemplate.php:246
1200
+ msgid "Select Album"
1201
+ msgstr "Odaberi Album"
1202
+
1203
+ #: app/main/profile/BPMediaTemplate.php:247
1204
+ #: app/main/profile/BPMediaTemplate.php:275
1205
+ msgid "x"
1206
+ msgstr "x"
1207
+
1208
+ #: app/main/BPMediaComponent.php:259 app/main/profile/BPMediaTemplate.php:268
1209
+ #: app/main/profile/BPMediaTemplate.php:274
1210
+ msgid "Create Album"
1211
+ msgstr "Kreiraj Album"
1212
+
1213
+ #: app/main/profile/BPMediaTemplate.php:278
1214
+ msgid "Album Name"
1215
+ msgstr "Naziv Albuma"
1216
+
1217
+ #: app/main/profile/BPMediaTemplate.php:96
1218
+ msgid "Drop files here"
1219
+ msgstr "Ovde otpustite datoteku"
1220
+
1221
+ #: app/main/profile/BPMediaTemplate.php:97
1222
+ msgid " or "
1223
+ msgstr "ili"
1224
+
1225
+ #: app/admin/BPMediaAdmin.php:410
1226
+ msgid "Latest News"
1227
+ msgstr "Najnovije Vesti"
1228
+
1229
+ #: app/helper/BPMediaSettings.php:34
1230
+ msgid "Photos"
1231
+ msgstr "Slike"
1232
+
1233
+ #: app/main/BuddyPressMedia.php:312
1234
+ msgid "Photo"
1235
+ msgstr "Slika"
1236
+
1237
+ #: app/main/BuddyPressMedia.php:315
1238
+ msgid "Videos"
1239
+ msgstr "Video snimci"
1240
+
1241
+ #: app/main/BuddyPressMedia.php:321 app/main/BuddyPressMedia.php:324
1242
+ msgid "Music"
1243
+ msgstr "Muzika"
1244
+
1245
+ #: app/admin/BPMediaAdmin.php:389
1246
+ msgid "Donate"
1247
+ msgstr "Pokloni"
1248
+
1249
+ #: app/admin/BPMediaAdmin.php:405
1250
+ msgid "RSS Feed"
1251
+ msgstr "RSS Napajanje"
1252
+
1253
+ #: app/admin/BPMediaAdmin.php:403
1254
+ msgid "Facebook"
1255
+ msgstr "Facebook"
1256
+
1257
+ #: app/admin/BPMediaAdmin.php:404
1258
+ msgid "Follow us on Twitter"
1259
+ msgstr "Pratite nas na Twitter-u"
1260
+
1261
+ #: app/admin/BPMediaAdmin.php:404
1262
+ msgid "Twitter"
1263
+ msgstr "Twitter"
1264
+
1265
+ #: app/admin/BPMediaAdmin.php:405
1266
+ msgid "Subscribe to our feeds"
1267
+ msgstr "Prijavite se za naše novosti"
1268
+
1269
+ #: app/admin/BPMediaAdmin.php:96 app/admin/BPMediaAdmin.php:248
1270
+ msgid "Addons"
1271
+ msgstr "Dodaci"
1272
+
1273
+ #: app/admin/BPMediaAdmin.php:97
1274
+ msgid "Support "
1275
+ msgstr "Podrška"
1276
+
1277
+ #: app/admin/BPMediaAdmin.php:160 app/importers/BPMediaAlbumimporter.php:91
1278
+ #: app/main/BPMediaComponent.php:298 app/main/BPMediaComponent.php:299
1279
+ #: app/main/BPMediaComponent.php:305 app/main/BuddyPressMedia.php:301
1280
+ #: app/main/BuddyPressMedia.php:304
1281
+ msgid "Media"
1282
+ msgstr "Media"
1283
+
1284
+ #: app/helper/BPMediaSettings.php:184
1285
+ msgid "Support"
1286
+ msgstr "Podrška"
1287
+
1288
+ #: app/admin/BPMediaAdmin.php:182
1289
+ msgid "Empowering The Web With WordPress"
1290
+ msgstr "Osposobljavanje weba pomoću WordPress-a"
1291
+
1292
+ #: app/admin/BPMediaAdmin.php:403
1293
+ msgid "Become a fan on Facebook"
1294
+ msgstr "Postanite fan na Fejsbuku"
1295
+
1296
+ #: app/helper/BPMediaSettings.php:182
1297
+ msgid "BuddyPress Media Addons for Audio/Video Conversion"
1298
+ msgstr "BuddyPress Media Dodaci za Audio/Video Konvertovanje"
1299
+
1300
+ #: app/helper/BPMediaSettings.php:284 app/helper/BPMediaSettings.php:286
1301
+ msgid "Recounting of media files done successfully"
1302
+ msgstr "Prebrojavanje media datoteka završeno uspešno"
1303
+
1304
+ #: app/helper/BPMediaSettings.php:289 app/helper/BPMediaSettings.php:291
1305
+ msgid "Recounting Failed"
1306
+ msgstr "Prebrojavanje neuspešno"
1307
+
1308
+ #: app/helper/BPMediaSettings.php:405
1309
+ msgid "Need to specify atleast to radios else use a checkbox instead"
1310
+ msgstr "Potrebno je odrediti barem radio ili koristiti polje za potvrdu umesto toga"
1311
+
1312
+ #: app/helper/BPMediaSettings.php:533
1313
+ msgid "Please provide some values to populate the dropdown. Format : array( 'value' => 'option' )"
1314
+ msgstr "Molimo da navedete neke vrednosti za popunjavanje padajućeg menija. Format : niz ( 'value' => 'option' )"
1315
+
1316
+ #: app/helper/BPMediaAddon.php:49
1317
+ msgid "BuddyPress-Media Kaltura Add-on"
1318
+ msgstr "BuddyPress-Media Kaltura Dodatak"
1319
+
1320
+ #: app/helper/BPMediaAddon.php:52
1321
+ msgid "Add support for more video formats using Kaltura video solution."
1322
+ msgstr "Dodaj podršku za više video formata koristeći Kaltura video rešenje."
1323
+
1324
+ #: app/helper/BPMediaAddon.php:53
1325
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1326
+ msgstr "Rad sa Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
1327
+
1328
+ #: app/helper/BPMediaAddon.php:59
1329
+ msgid "BuddyPress-Media FFMPEG Add-on"
1330
+ msgstr "BuddyPress-Media FFMPEG Dodatak"
1331
+
1332
+ #: app/helper/BPMediaAddon.php:62
1333
+ msgid "Add supports for more audio & video formats using open-source media-node."
1334
+ msgstr "Dodaj podršku za više audio i video formata koristeći otvoreni kod media node-a."
1335
+
1336
+ #: app/helper/BPMediaAddon.php:63
1337
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
1338
+ msgstr "Media node ima automatsko podešavanje za Ubuntu/Debian."
1339
+
1340
+ #: app/helper/BPMediaAddon.php:109 app/importers/BPMediaAlbumimporter.php:181
1341
+ msgid "Buy Now"
1342
+ msgstr "Kupi odmah"
1343
+
1344
+ #: app/helper/BPMediaAddon.php:110 app/importers/BPMediaAlbumimporter.php:182
1345
+ msgid "Live Demo"
1346
+ msgstr "Demo uživo"
1347
+
1348
+ #: app/main/group/BPMediaGroupAction.php:124
1349
+ #: app/main/includes/BPMediaHostWordpress.php:742
1350
+ msgid "%1$s added a %2$s"
1351
+ msgstr "%1$s je dodao %2$s"
1352
+
1353
+ #: app/admin/BPMediaAdmin.php:88 app/admin/BPMediaAdmin.php:212
1354
+ #: app/admin/BPMediaAdmin.php:213
1355
+ msgid "BuddyPress Media"
1356
+ msgstr "BuddyPress Media"
1357
+
1358
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:241
1359
+ #: app/main/BuddyPressMedia.php:443
1360
+ msgid "Settings"
1361
+ msgstr "Podešavanja"
1362
+
1363
+ #: app/helper/BPMediaFeed.php:43
1364
+ msgid "No items"
1365
+ msgstr "Nema stavki"
1366
+
1367
+ #: app/helper/BPMediaFeed.php:49
1368
+ msgid "Posted "
1369
+ msgstr "Objavljeno"
1370
+
1371
+ #: app/admin/BPMediaAdmin.php:89 app/admin/BPMediaAdmin.php:240
1372
+ msgid "BuddyPress Media Settings"
1373
+ msgstr "BuddyPress Media Podešavanja"
1374
+
1375
+ #: app/helper/BPMediaSettings.php:39
1376
+ msgid "Video"
1377
+ msgstr "Video snimci"
1378
+
1379
+ #: app/helper/BPMediaSettings.php:44
1380
+ msgid "Audio"
1381
+ msgstr "Audio snimci"
1382
+
1383
+ #: app/main/includes/BPMediaActions.php:330
1384
+ msgid "Download"
1385
+ msgstr "Preuzimanje"
1386
+
1387
+ #: app/admin/BPMediaAdmin.php:367
1388
+ msgid "Spread the Word"
1389
+ msgstr "Proširite glas"
1390
+
1391
+ #: app/helper/BPMediaAdminWidget.php:29
1392
+ msgid "Argument missing. id is required."
1393
+ msgstr "Nedostaje diskusija. ID je obavezan."
languages/buddypress-media.mo CHANGED
Binary file
languages/buddypress-media.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-18 12:58+0530\n"
6
- "PO-Revision-Date: 2013-04-18 12:59+0530\n"
7
- "Last-Translator: Joshua Abenazer <joshua.abenazer@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
@@ -16,163 +16,6 @@ msgstr ""
16
  "X-Poedit-Country: India\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: app/helper/BPMediaAddon.php:29
20
- msgid "BuddyPress-Media Instagram"
21
- msgstr ""
22
-
23
- #: app/helper/BPMediaAddon.php:32
24
- msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
25
- msgstr ""
26
-
27
- #: app/helper/BPMediaAddon.php:33
28
- msgid "Important"
29
- msgstr ""
30
-
31
- #: app/helper/BPMediaAddon.php:33
32
- msgid "You need to have ImageMagick installed on your server for this addon to work."
33
- msgstr ""
34
-
35
- #: app/helper/BPMediaAddon.php:39
36
- msgid "BuddyPress-Media Kaltura Add-on"
37
- msgstr ""
38
-
39
- #: app/helper/BPMediaAddon.php:42
40
- msgid "Add support for more video formats using Kaltura video solution."
41
- msgstr ""
42
-
43
- #: app/helper/BPMediaAddon.php:43
44
- msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
45
- msgstr ""
46
-
47
- #: app/helper/BPMediaAddon.php:49
48
- msgid "BuddyPress-Media FFMPEG Add-on"
49
- msgstr ""
50
-
51
- #: app/helper/BPMediaAddon.php:52
52
- msgid "Add supports for more audio & video formats using open-source media-node."
53
- msgstr ""
54
-
55
- #: app/helper/BPMediaAddon.php:53
56
- msgid "Media node comes with automated setup script for Ubuntu/Debian."
57
- msgstr ""
58
-
59
- #: app/helper/BPMediaAddon.php:99
60
- msgid "Buy Now"
61
- msgstr ""
62
-
63
- #: app/helper/BPMediaAddon.php:100
64
- msgid "Live Demo"
65
- msgstr ""
66
-
67
- #: app/helper/BPMediaSupport.php:50
68
- msgid "Debug info"
69
- msgstr ""
70
-
71
- #: app/helper/BPMediaSupport.php:81
72
- msgid "Submit a Bug Report"
73
- msgstr ""
74
-
75
- #: app/helper/BPMediaSupport.php:84
76
- msgid "Submit a New Feature Request"
77
- msgstr ""
78
-
79
- #: app/helper/BPMediaSupport.php:87
80
- msgid "Submit a Premium Support Request"
81
- msgstr ""
82
-
83
- #: app/helper/BPMediaSupport.php:95
84
- msgid "Name"
85
- msgstr ""
86
-
87
- #: app/helper/BPMediaSupport.php:98
88
- msgid "Email"
89
- msgstr ""
90
-
91
- #: app/helper/BPMediaSupport.php:101
92
- msgid "Website"
93
- msgstr ""
94
-
95
- #: app/helper/BPMediaSupport.php:104
96
- msgid "Phone"
97
- msgstr ""
98
-
99
- #: app/helper/BPMediaSupport.php:107
100
- msgid "Subject"
101
- msgstr ""
102
-
103
- #: app/helper/BPMediaSupport.php:110
104
- msgid "Details"
105
- msgstr ""
106
-
107
- #: app/helper/BPMediaSupport.php:121
108
- msgid "Additional Information"
109
- msgstr ""
110
-
111
- #: app/helper/BPMediaSupport.php:126
112
- msgid "Your WP Admin Login:"
113
- msgstr ""
114
-
115
- #: app/helper/BPMediaSupport.php:129
116
- msgid "Your WP Admin password:"
117
- msgstr ""
118
-
119
- #: app/helper/BPMediaSupport.php:132
120
- msgid "Your SSH / FTP host:"
121
- msgstr ""
122
-
123
- #: app/helper/BPMediaSupport.php:135
124
- msgid "Your SSH / FTP login:"
125
- msgstr ""
126
-
127
- #: app/helper/BPMediaSupport.php:138
128
- msgid "Your SSH / FTP password:"
129
- msgstr ""
130
-
131
- #: app/helper/BPMediaSupport.php:161
132
- msgid "BuddyPress Media Premium Support Request from"
133
- msgstr ""
134
-
135
- #: app/helper/BPMediaSupport.php:164
136
- msgid "BuddyPress Media New Feature Request from"
137
- msgstr ""
138
-
139
- #: app/helper/BPMediaSupport.php:167
140
- msgid "BuddyPress Media Bug Report from"
141
- msgstr ""
142
-
143
- #: app/helper/BPMediaSupport.php:170
144
- msgid "BuddyPress Media Contact from"
145
- msgstr ""
146
-
147
- #: app/helper/BPMediaSupport.php:231
148
- msgid "Debug Info"
149
- msgstr ""
150
-
151
- #: app/helper/BPMediaSupport.php:246
152
- msgid "Thank you for your Feedback/Suggestion."
153
- msgstr ""
154
-
155
- #: app/helper/BPMediaSupport.php:248
156
- msgid "Thank you for posting your support request."
157
- msgstr ""
158
-
159
- #: app/helper/BPMediaSupport.php:249
160
- msgid "We will get back to you shortly."
161
- msgstr ""
162
-
163
- #: app/helper/BPMediaSupport.php:252
164
- msgid "Your server failed to send an email."
165
- msgstr ""
166
-
167
- #: app/helper/BPMediaSupport.php:253
168
- msgid "Kindly contact your server support to fix this."
169
- msgstr ""
170
-
171
- #: app/helper/BPMediaSupport.php:254
172
- #, php-format
173
- msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
174
- msgstr ""
175
-
176
  #: app/helper/BPMediaFeed.php:43
177
  msgid "No items"
178
  msgstr ""
@@ -181,16 +24,11 @@ msgstr ""
181
  msgid "Posted "
182
  msgstr ""
183
 
184
- #: app/helper/BPMediaAdminWidget.php:29
185
- msgid "Argument missing. id is required."
186
- msgstr ""
187
-
188
  #: app/helper/BPMediaSettings.php:33
189
  msgid "Enabled Media Types"
190
  msgstr ""
191
 
192
  #: app/helper/BPMediaSettings.php:34
193
- #: app/main/BuddyPressMedia.php:309
194
  msgid "Photos"
195
  msgstr ""
196
 
@@ -199,7 +37,6 @@ msgid "Enable Photos"
199
  msgstr ""
200
 
201
  #: app/helper/BPMediaSettings.php:39
202
- #: app/main/BuddyPressMedia.php:318
203
  msgid "Video"
204
  msgstr ""
205
 
@@ -314,7 +151,6 @@ msgid "Display download button under media"
314
  msgstr ""
315
 
316
  #: app/helper/BPMediaSettings.php:139
317
- #: app/main/privacy/BPMediaPrivacyScreen.php:59
318
  msgid "Privacy Settings"
319
  msgstr ""
320
 
@@ -380,14 +216,11 @@ msgid "BuddyPress Media Addons for Audio/Video Conversion"
380
  msgstr ""
381
 
382
  #: app/helper/BPMediaSettings.php:184
383
- #: app/admin/BPMediaAdmin.php:255
384
  msgid "Support"
385
  msgstr ""
386
 
387
  #: app/helper/BPMediaSettings.php:189
388
- #: app/helper/BPMediaSettings.php:603
389
- #: app/admin/BPMediaAdmin.php:91
390
- #: app/main/privacy/BPMediaPrivacySettings.php:29
391
  msgid "Update Database"
392
  msgstr ""
393
 
@@ -479,114 +312,287 @@ msgstr ""
479
  msgid "None"
480
  msgstr ""
481
 
482
- #: app/helper/BPMediaSettings.php:602
483
  msgid "BuddyPress Media 2.6 requires a database upgrade. "
484
  msgstr ""
485
 
486
- #: app/helper/BPMediaSettings.php:610
487
- msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/support/forum/buddypress-media/technical-support/\">rtCamp Support Forum</a>."
488
  msgstr ""
489
 
490
- #: app/helper/BPMediaSettings.php:611
491
  msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
492
  msgstr ""
493
 
494
- #: app/admin/BPMediaAdmin.php:68
495
- msgid "Please do not refresh this page."
496
  msgstr ""
497
 
498
- #: app/admin/BPMediaAdmin.php:69
499
- msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
500
  msgstr ""
501
 
502
- #: app/admin/BPMediaAdmin.php:88
503
- msgid "BuddyPress Media Component"
504
  msgstr ""
505
 
506
- #: app/admin/BPMediaAdmin.php:88
507
- #: app/admin/BPMediaAdmin.php:212
508
- #: app/admin/BPMediaAdmin.php:213
509
- msgid "BuddyPress Media"
510
  msgstr ""
511
 
512
- #: app/admin/BPMediaAdmin.php:89
513
- #: app/admin/BPMediaAdmin.php:240
514
- msgid "BuddyPress Media Settings"
515
  msgstr ""
516
 
517
- #: app/admin/BPMediaAdmin.php:89
518
- #: app/admin/BPMediaAdmin.php:241
519
- #: app/main/BuddyPressMedia.php:443
520
- msgid "Settings"
521
  msgstr ""
522
 
523
- #: app/admin/BPMediaAdmin.php:91
524
- msgid "BuddyPress Media Database Update"
525
  msgstr ""
526
 
527
- #: app/admin/BPMediaAdmin.php:94
528
- #: app/admin/BPMediaAdmin.php:270
529
- #: app/admin/BPMediaAdmin.php:271
530
- msgid "Importer"
531
  msgstr ""
532
 
533
- #: app/admin/BPMediaAdmin.php:96
534
- #: app/admin/BPMediaAdmin.php:247
535
- msgid "BuddyPress Media Addons"
536
  msgstr ""
537
 
538
- #: app/admin/BPMediaAdmin.php:96
539
- #: app/admin/BPMediaAdmin.php:248
540
- msgid "Addons"
541
  msgstr ""
542
 
543
- #: app/admin/BPMediaAdmin.php:97
544
- #: app/admin/BPMediaAdmin.php:254
545
- msgid "BuddyPress Media Support"
546
  msgstr ""
547
 
548
- #: app/admin/BPMediaAdmin.php:97
549
- msgid "Support "
550
  msgstr ""
551
 
552
- #: app/admin/BPMediaAdmin.php:99
553
- msgid "BuddyPress Media Convert Videos"
554
  msgstr ""
555
 
556
- #: app/admin/BPMediaAdmin.php:99
557
- #: app/admin/BPMediaAdmin.php:263
558
- msgid "Convert Videos"
559
  msgstr ""
560
 
561
- #: app/admin/BPMediaAdmin.php:160
562
- #: app/importers/BPMediaAlbumimporter.php:91
563
- #: app/main/BuddyPressMedia.php:301
564
- #: app/main/BuddyPressMedia.php:304
565
- #: app/main/BPMediaComponent.php:297
566
- #: app/main/BPMediaComponent.php:298
567
- #: app/main/BPMediaComponent.php:304
568
- msgid "Media"
569
  msgstr ""
570
 
571
- #: app/admin/BPMediaAdmin.php:182
572
- msgid "By"
573
  msgstr ""
574
 
575
- #: app/admin/BPMediaAdmin.php:182
576
- msgid "Empowering The Web With WordPress"
577
  msgstr ""
578
 
579
- #: app/admin/BPMediaAdmin.php:262
580
- msgid "BuddyPress Media Covert Videos"
581
  msgstr ""
582
 
583
- #: app/admin/BPMediaAdmin.php:363
584
- #, php-format
585
- msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
586
  msgstr ""
587
 
588
- #: app/admin/BPMediaAdmin.php:364
589
- msgid "Add link to footer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
590
  msgstr ""
591
 
592
  #: app/admin/BPMediaAdmin.php:365
@@ -776,6 +782,70 @@ msgstr ""
776
  msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
777
  msgstr ""
778
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
779
  #: app/main/BPMediaGroupLoader.php:252
780
  msgid "Media Settings"
781
  msgstr ""
@@ -810,17 +880,6 @@ msgstr ""
810
  msgid "Music"
811
  msgstr ""
812
 
813
- #: app/main/BuddyPressMedia.php:327
814
- #: app/main/BPMediaComponent.php:255
815
- #: app/main/BPMediaComponent.php:267
816
- msgid "Albums"
817
- msgstr ""
818
-
819
- #: app/main/BuddyPressMedia.php:330
820
- #: app/main/BPMediaComponent.php:256
821
- msgid "Album"
822
- msgstr ""
823
-
824
  #: app/main/BuddyPressMedia.php:333
825
  msgid "Upload"
826
  msgstr ""
@@ -844,344 +903,268 @@ msgid ""
844
  "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
845
  msgstr ""
846
 
847
- #: app/main/BPMediaComponent.php:60
848
- msgid "Search Media..."
849
  msgstr ""
850
 
851
- #: app/main/BPMediaComponent.php:257
852
- msgid "Create"
853
  msgstr ""
854
 
855
- #: app/main/BPMediaComponent.php:258
856
- msgid "Create Album"
857
  msgstr ""
858
 
859
- #: app/main/BPMediaComponent.php:259
860
- msgid "Edit Album"
861
- msgstr ""
862
-
863
- #: app/main/BPMediaComponent.php:260
864
- msgid "New Album"
865
- msgstr ""
866
-
867
- #: app/main/BPMediaComponent.php:261
868
- msgid "All Albums"
869
- msgstr ""
870
-
871
- #: app/main/BPMediaComponent.php:262
872
- msgid "View Album"
873
- msgstr ""
874
-
875
- #: app/main/BPMediaComponent.php:263
876
- msgid "Search Albums"
877
  msgstr ""
878
 
879
- #: app/main/BPMediaComponent.php:264
880
- msgid "No album found"
881
  msgstr ""
882
 
883
- #: app/main/BPMediaComponent.php:265
884
- msgid "No album found in Trash"
885
  msgstr ""
886
 
887
- #: app/main/BPMediaComponent.php:299
888
- msgid "Add New Media"
889
  msgstr ""
890
 
891
- #: app/main/BPMediaComponent.php:307
892
- msgid "BuddyPress Media's Media Files"
 
893
  msgstr ""
894
 
895
- #: app/main/privacy/BPMediaPrivacySettings.php:28
896
- msgid "Update BuddyPress Media Database"
897
  msgstr ""
898
 
899
- #: app/main/privacy/BPMediaPrivacySettings.php:93
900
- msgid "Start"
901
  msgstr ""
902
 
903
- #: app/main/privacy/BPMediaPrivacyScreen.php:42
904
- msgid "Default privacy level for your media has been updated"
905
  msgstr ""
906
 
907
- #: app/main/privacy/BPMediaPrivacyScreen.php:53
908
- msgid "Save Changes"
 
909
  msgstr ""
910
 
911
- #: app/main/privacy/BPMediaPrivacy.php:113
912
- msgid "<strong>Private</strong>, Visible only to myself"
913
  msgstr ""
914
 
915
- #: app/main/privacy/BPMediaPrivacy.php:117
916
- msgid "<strong>Friends</strong>, Visible to my friends"
917
  msgstr ""
918
 
919
- #: app/main/privacy/BPMediaPrivacy.php:121
920
- msgid "<strong>Users</strong>, Visible to registered users"
921
  msgstr ""
922
 
923
- #: app/main/privacy/BPMediaPrivacy.php:125
924
- msgid "<strong>Public</strong>, Visible to the world"
 
925
  msgstr ""
926
 
927
- #: app/main/privacy/BPMediaPrivacy.php:145
928
- msgid "Set default privacy levels for your media"
 
929
  msgstr ""
930
 
931
- #: app/main/privacy/BPMediaPrivacy.php:326
 
932
  #, php-format
933
- msgid "This %s is private"
934
  msgstr ""
935
 
936
- #: app/main/privacy/BPMediaPrivacy.php:327
937
  #, php-format
938
- msgid "This %1s is visible only to %2s&rsquo;s friends"
939
  msgstr ""
940
 
941
- #: app/main/privacy/BPMediaPrivacy.php:328
942
  #, php-format
943
- msgid "This %s is visible to logged in users, only"
944
  msgstr ""
945
 
946
- #: app/main/includes/BPMediaFilters.php:158
947
  #, php-format
948
- msgid "Delete %s"
949
  msgstr ""
950
 
951
- #: app/main/includes/BPMediaFilters.php:409
952
- msgid "Total Photos"
953
  msgstr ""
954
 
955
- #: app/main/includes/BPMediaFilters.php:410
956
- msgid "Total Videos"
957
  msgstr ""
958
 
959
- #: app/main/includes/BPMediaFilters.php:411
960
- msgid "Total Audio"
961
  msgstr ""
962
 
963
- #: app/main/includes/BPMediaFilters.php:412
964
- msgid "Total Albums"
965
  msgstr ""
966
 
967
- #: app/main/includes/BPMediaTemplateFunctions.php:34
968
- msgid "Media Title"
969
  msgstr ""
970
 
971
- #: app/main/includes/BPMediaTemplateFunctions.php:35
972
- msgid "Media Description"
973
  msgstr ""
974
 
975
- #: app/main/includes/BPMediaTemplateFunctions.php:36
976
- msgid "Select Media File"
 
977
  msgstr ""
978
 
979
- #: app/main/includes/BPMediaTemplateFunctions.php:231
980
- msgid "Show More"
981
  msgstr ""
982
 
983
- #: app/main/includes/BPMediaHostWordpress.php:59
984
- msgid "Sorry, the requested media does not exist."
985
  msgstr ""
986
 
987
- #: app/main/includes/BPMediaHostWordpress.php:137
988
- msgid "Error Uploading File"
989
  msgstr ""
990
 
991
- #: app/main/includes/BPMediaHostWordpress.php:170
992
- msgid "MP4 file you have uploaded is corrupt."
993
  msgstr ""
994
 
995
- #: app/main/includes/BPMediaHostWordpress.php:177
996
- #: app/main/includes/BPMediaHostWordpress.php:182
997
- msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
998
  msgstr ""
999
 
1000
- #: app/main/includes/BPMediaHostWordpress.php:187
1001
- msgid "The MP4 file you have uploaded is not a video file."
1002
  msgstr ""
1003
 
1004
- #: app/main/includes/BPMediaHostWordpress.php:198
1005
- msgid "MP3 file you have uploaded is currupt."
1006
  msgstr ""
1007
 
1008
- #: app/main/includes/BPMediaHostWordpress.php:205
1009
- #: app/main/includes/BPMediaHostWordpress.php:210
1010
- msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1011
  msgstr ""
1012
 
1013
- #: app/main/includes/BPMediaHostWordpress.php:215
1014
- msgid "The MP3 file you have uploaded is not an audio file."
1015
  msgstr ""
1016
 
1017
- #: app/main/includes/BPMediaHostWordpress.php:227
1018
- msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
 
1019
  msgstr ""
1020
 
1021
- #: app/main/includes/BPMediaHostWordpress.php:236
1022
- msgid "Error creating attachment for the media file, please try again"
 
1023
  msgstr ""
1024
 
1025
- #: app/main/includes/BPMediaHostWordpress.php:346
1026
- #, php-format
1027
- msgid "%s uploaded a media."
1028
  msgstr ""
1029
 
1030
- #: app/main/includes/BPMediaHostWordpress.php:367
1031
- msgid "Uploaded by "
1032
  msgstr ""
1033
 
1034
- #: app/main/includes/BPMediaHostWordpress.php:592
1035
- #, php-format
1036
- msgid "Comment <span>%s</span>"
1037
  msgstr ""
1038
 
1039
- #: app/main/includes/BPMediaHostWordpress.php:596
1040
- msgid "Favorite"
1041
  msgstr ""
1042
 
1043
- #: app/main/includes/BPMediaHostWordpress.php:598
1044
- msgid "Remove Favorite"
1045
  msgstr ""
1046
 
1047
- #: app/main/includes/BPMediaHostWordpress.php:617
1048
- msgid "Post"
1049
  msgstr ""
1050
 
1051
- #: app/main/includes/BPMediaHostWordpress.php:617
1052
- msgid "or press esc to cancel."
1053
  msgstr ""
1054
 
1055
- #: app/main/includes/BPMediaHostWordpress.php:642
1056
- msgid "Delete"
1057
  msgstr ""
1058
 
1059
- #: app/main/includes/BPMediaHostWordpress.php:744
1060
- #: app/main/includes/BPMediaActions.php:921
1061
  #: app/main/group/BPMediaGroupAction.php:124
 
1062
  #, php-format
1063
  msgid "%1$s added a %2$s"
1064
  msgstr ""
1065
 
1066
- #: app/main/includes/BPMediaHostWordpress.php:1019
1067
- msgid "Wall Posts"
1068
- msgstr ""
1069
-
1070
- #: app/main/includes/BPMediaActions.php:74
1071
- #: app/main/includes/BPMediaActions.php:98
1072
- msgid "File uploaded is not supported"
1073
- msgstr ""
1074
-
1075
- #: app/main/includes/BPMediaActions.php:81
1076
- msgid "Image uploads are disabled"
1077
- msgstr ""
1078
-
1079
- #: app/main/includes/BPMediaActions.php:87
1080
- msgid "Video uploads are disabled"
1081
- msgstr ""
1082
-
1083
- #: app/main/includes/BPMediaActions.php:93
1084
- msgid "Audio uploads are disabled"
1085
- msgstr ""
1086
-
1087
- #: app/main/includes/BPMediaActions.php:112
1088
- msgid "Upload Successful"
1089
- msgstr ""
1090
-
1091
- #: app/main/includes/BPMediaActions.php:117
1092
- msgid "You did not specified a file to upload"
1093
- msgstr ""
1094
-
1095
- #: app/main/includes/BPMediaActions.php:183
1096
- msgid "Something went wrong. Please try again."
1097
- msgstr ""
1098
-
1099
- #: app/main/includes/BPMediaActions.php:184
1100
- msgid "Are you sure you want to merge this album?"
1101
- msgstr ""
1102
-
1103
- #: app/main/includes/BPMediaActions.php:185
1104
- msgid "Would you like to delete this album after the merge?"
1105
- msgstr ""
1106
-
1107
- #: app/main/includes/BPMediaActions.php:186
1108
- msgid "Are you sure you want to delete the selected media?"
1109
- msgstr ""
1110
-
1111
- #: app/main/includes/BPMediaActions.php:187
1112
- msgid "Are you sure you want to delete this activity and associated media?"
1113
- msgstr ""
1114
-
1115
- #: app/main/includes/BPMediaActions.php:188
1116
- msgid "Are you sure?"
1117
- msgstr ""
1118
-
1119
- #: app/main/includes/BPMediaActions.php:189
1120
- msgid "Please select media."
1121
- msgstr ""
1122
-
1123
- #: app/main/includes/BPMediaActions.php:190
1124
- msgid "Please select an action."
1125
- msgstr ""
1126
-
1127
- #: app/main/includes/BPMediaActions.php:330
1128
- msgid "Download"
1129
- msgstr ""
1130
-
1131
- #: app/main/includes/BPMediaActions.php:337
1132
- #: app/main/includes/BPMediaActions.php:971
1133
- msgid "Set as Album Cover"
1134
- msgstr ""
1135
-
1136
- #: app/main/includes/BPMediaActions.php:342
1137
- #: app/main/includes/BPMediaActions.php:974
1138
- msgid "Unset as Album Cover"
1139
  msgstr ""
1140
 
1141
- #: app/main/includes/BPMediaActions.php:348
1142
- msgid "Edit Media"
 
1143
  msgstr ""
1144
 
1145
- #: app/main/includes/BPMediaActions.php:348
1146
- msgid "Edit"
 
1147
  msgstr ""
1148
 
1149
- #: app/main/includes/BPMediaActions.php:529
1150
- msgid "You have not filled the album name"
 
1151
  msgstr ""
1152
 
1153
- #: app/main/includes/BPMediaActions.php:530
1154
- msgid "Sorry you cannot create albums in this group"
 
1155
  msgstr ""
1156
 
1157
- #: app/main/includes/BPMediaActions.php:531
1158
- msgid "Please Select an Album !!"
 
1159
  msgstr ""
1160
 
1161
- #: app/main/includes/BPMediaActions.php:874
1162
- #, php-format
1163
- msgid "%1$s created an album %2$s"
1164
  msgstr ""
1165
 
1166
- #: app/main/includes/BPMediaActions.php:1159
1167
- msgid "Private"
1168
  msgstr ""
1169
 
1170
- #: app/main/includes/BPMediaActions.php:1171
1171
- msgid "No media found"
 
 
1172
  msgstr ""
1173
 
1174
- #: app/main/includes/bp-media-upload-handler.php:32
1175
- msgid "You are not allowed to be here"
1176
  msgstr ""
1177
 
1178
- #: app/main/includes/BPMediaFunction.php:168
1179
- msgid "You do not have access to this page."
1180
  msgstr ""
1181
 
1182
- #: app/main/includes/BPMediaFunction.php:229
1183
  #, php-format
1184
- msgid "%1$s added new media in album %2$s"
1185
  msgstr ""
1186
 
1187
  #: app/main/widgets/BPMediaWidget.php:20
@@ -1245,207 +1228,235 @@ msgstr ""
1245
  msgid "Show Videos"
1246
  msgstr ""
1247
 
1248
- #: app/main/group/BPMediaGroupElementExtension.php:91
1249
- msgid "Sorry, the requested media does not belong to the group"
1250
  msgstr ""
1251
 
1252
- #: app/main/group/BPMediaGroupsExtension.php:40
1253
- #: app/main/group/BPMediaGroupsExtension.php:87
1254
- msgid "Album Creation Control"
1255
  msgstr ""
1256
 
1257
- #: app/main/group/BPMediaGroupsExtension.php:41
1258
- #: app/main/group/BPMediaGroupsExtension.php:88
1259
- msgid "Who can create Albums in this group?"
1260
  msgstr ""
1261
 
1262
- #: app/main/group/BPMediaGroupsExtension.php:45
1263
- #: app/main/group/BPMediaGroupsExtension.php:92
1264
- msgid "All Group Members"
1265
  msgstr ""
1266
 
1267
- #: app/main/group/BPMediaGroupsExtension.php:49
1268
- #: app/main/group/BPMediaGroupsExtension.php:96
1269
- msgid "Group Admins and Mods only"
1270
  msgstr ""
1271
 
1272
- #: app/main/group/BPMediaGroupsExtension.php:53
1273
- #: app/main/group/BPMediaGroupsExtension.php:100
1274
- msgid "Group Admin only"
1275
  msgstr ""
1276
 
1277
- #: app/main/group/BPMediaGroupsExtension.php:130
1278
- msgid "There was an error saving, please try again"
1279
  msgstr ""
1280
 
1281
- #: app/main/group/BPMediaGroupsExtension.php:132
1282
- msgid "Settings saved successfully"
 
1283
  msgstr ""
1284
 
1285
- #: app/main/group/BPMediaGroupsExtension.php:153
1286
- msgid ""
1287
- "You could display a small snippet of information from your group extension here. It will show on the group\n"
1288
- "\t home screen."
1289
  msgstr ""
1290
 
1291
- #: app/main/profile/BPMediaUploadScreen.php:33
1292
- #: app/main/profile/BPMediaTemplate.php:98
1293
- msgid "Upload Media"
1294
  msgstr ""
1295
 
1296
- #: app/main/profile/BPMediaTemplate.php:44
1297
- msgid "Select Album: "
1298
  msgstr ""
1299
 
1300
- #: app/main/profile/BPMediaTemplate.php:83
1301
- msgid "+ Create New Album"
1302
  msgstr ""
1303
 
1304
- #: app/main/profile/BPMediaTemplate.php:90
1305
- msgid "Cancel"
1306
  msgstr ""
1307
 
1308
- #: app/main/profile/BPMediaTemplate.php:93
1309
- msgid "&"
1310
  msgstr ""
1311
 
1312
- #: app/main/profile/BPMediaTemplate.php:96
1313
- msgid "Drop files here"
 
1314
  msgstr ""
1315
 
1316
- #: app/main/profile/BPMediaTemplate.php:97
1317
- msgid " or "
1318
  msgstr ""
1319
 
1320
- #: app/main/profile/BPMediaTemplate.php:98
1321
- msgid "Max Upload Size"
1322
  msgstr ""
1323
 
1324
- #: app/main/profile/BPMediaTemplate.php:246
1325
- msgid "Select Album"
 
1326
  msgstr ""
1327
 
1328
- #: app/main/profile/BPMediaTemplate.php:247
1329
- #: app/main/profile/BPMediaTemplate.php:275
1330
- msgid "x"
1331
  msgstr ""
1332
 
1333
- #: app/main/profile/BPMediaTemplate.php:267
1334
- msgid "Select"
1335
  msgstr ""
1336
 
1337
- #: app/main/profile/BPMediaTemplate.php:278
1338
- msgid "Album Name"
1339
  msgstr ""
1340
 
1341
- #: app/main/profile/BPMediaTemplate.php:286
1342
- msgid "Add Media"
 
1343
  msgstr ""
1344
 
1345
- #: app/main/profile/BPMediaAlbumScreen.php:82
1346
- #: app/main/profile/BPMediaScreen.php:194
 
 
 
1347
  #, php-format
1348
- msgid "Sorry, no %s were found."
1349
  msgstr ""
1350
 
1351
- #: app/main/profile/BPMediaAlbumScreen.php:134
1352
- msgid "Sorry, no media items were found in this album."
1353
  msgstr ""
1354
 
1355
- #: app/main/profile/BPMediaAlbumScreen.php:250
1356
- #: app/main/profile/BPMediaAlbumScreen.php:258
1357
- msgid "Delete Album"
1358
  msgstr ""
1359
 
1360
- #: app/main/profile/BPMediaAlbumScreen.php:254
1361
- #: app/main/profile/BPMediaAlbumScreen.php:300
1362
- msgid "Select All Visible"
1363
  msgstr ""
1364
 
1365
- #: app/main/profile/BPMediaAlbumScreen.php:255
1366
- #: app/main/profile/BPMediaAlbumScreen.php:301
1367
- msgid "Unselect All Visible"
1368
  msgstr ""
1369
 
1370
- #: app/main/profile/BPMediaAlbumScreen.php:256
1371
- msgid "Delete Selected Media"
1372
  msgstr ""
1373
 
1374
- #: app/main/profile/BPMediaAlbumScreen.php:298
1375
- msgid "Move"
1376
  msgstr ""
1377
 
1378
- #: app/main/profile/BPMediaAlbumScreen.php:302
1379
- msgid "Move selected"
1380
  msgstr ""
1381
 
1382
- #: app/main/profile/BPMediaAlbumScreen.php:302
1383
- msgid "Move all"
 
1384
  msgstr ""
1385
 
1386
- #: app/main/profile/BPMediaAlbumScreen.php:303
1387
- msgid "to"
 
1388
  msgstr ""
1389
 
1390
- #: app/main/profile/BPMediaAlbumScreen.php:303
1391
- msgid "Submit"
1392
  msgstr ""
1393
 
1394
- #: app/main/profile/BPMediaScreen.php:112
1395
- #: app/main/profile/BPMediaScreen.php:372
1396
- msgid "The requested url does not exist"
1397
  msgstr ""
1398
 
1399
- #: app/main/profile/BPMediaScreen.php:123
1400
- #, php-format
1401
- msgid "All %s"
1402
  msgstr ""
1403
 
1404
- #: app/main/profile/BPMediaScreen.php:305
1405
- #, php-format
1406
- msgid "Edit %s"
1407
  msgstr ""
1408
 
1409
- #: app/main/profile/BPMediaScreen.php:326
1410
- #, php-format
1411
- msgid "%s Title"
1412
  msgstr ""
1413
 
1414
- #: app/main/profile/BPMediaScreen.php:332
1415
- #, php-format
1416
- msgid "%s Description"
1417
  msgstr ""
1418
 
1419
- #: app/main/profile/BPMediaScreen.php:340
1420
- msgid "Update"
1421
  msgstr ""
1422
 
1423
- #: app/main/profile/BPMediaScreen.php:341
1424
- msgid "Back to Media File"
1425
  msgstr ""
1426
 
1427
- #: app/main/profile/BPMediaScreen.php:342
1428
- msgid "Back to Media"
1429
  msgstr ""
1430
 
1431
- #: app/main/profile/BPMediaScreen.php:394
1432
- msgid "Media deleted successfully"
1433
  msgstr ""
1434
 
1435
- #: app/main/profile/BPMediaAlbum.php:74
1436
- msgid "Sorry, the requested album does not exist."
1437
  msgstr ""
1438
 
1439
- #: app/main/activity/BPMediaActivity.php:46
1440
- msgid "Attach Media"
1441
  msgstr ""
1442
 
1443
- #: app/main/activity/BPMediaActivity.php:103
1444
- msgid "View"
1445
  msgstr ""
1446
 
1447
- #: app/main/activity/BPMediaActivity.php:161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1448
  #, php-format
1449
- msgid "%1$s posted an update in the group %2$s"
 
 
 
 
 
 
 
 
1450
  msgstr ""
1451
 
2
  msgstr ""
3
  "Project-Id-Version: BuddyPress Media\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-25 12:57+0530\n"
6
+ "PO-Revision-Date: 2013-04-25 12:57+0530\n"
7
+ "Last-Translator: Saurabh Shukla <saurabh.shukla@rtcamp.com>\n"
8
  "Language-Team: rtCamp <info@rtcamp.com>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\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 ""
24
  msgid "Posted "
25
  msgstr ""
26
 
 
 
 
 
27
  #: app/helper/BPMediaSettings.php:33
28
  msgid "Enabled Media Types"
29
  msgstr ""
30
 
31
  #: app/helper/BPMediaSettings.php:34
 
32
  msgid "Photos"
33
  msgstr ""
34
 
37
  msgstr ""
38
 
39
  #: app/helper/BPMediaSettings.php:39
 
40
  msgid "Video"
41
  msgstr ""
42
 
151
  msgstr ""
152
 
153
  #: app/helper/BPMediaSettings.php:139
 
154
  msgid "Privacy Settings"
155
  msgstr ""
156
 
216
  msgstr ""
217
 
218
  #: app/helper/BPMediaSettings.php:184
 
219
  msgid "Support"
220
  msgstr ""
221
 
222
  #: app/helper/BPMediaSettings.php:189
223
+ #: app/helper/BPMediaSettings.php:604
 
 
224
  msgid "Update Database"
225
  msgstr ""
226
 
312
  msgid "None"
313
  msgstr ""
314
 
315
+ #: app/helper/BPMediaSettings.php:603
316
  msgid "BuddyPress Media 2.6 requires a database upgrade. "
317
  msgstr ""
318
 
319
+ #: app/helper/BPMediaSettings.php:612
320
+ msgid "If your site has some issues due to BuddyPress Media and you want one on one support then you can create a support topic on the <a target=\"_blank\" href=\"http://rtcamp.com/groups/buddypress-media/forum/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media\">rtCamp Support Forum</a>."
321
  msgstr ""
322
 
323
+ #: app/helper/BPMediaSettings.php:613
324
  msgid "If you have any suggestions, enhancements or bug reports, then you can open a new issue on <a target=\"_blank\" href=\"https://github.com/rtCamp/buddypress-media/issues/new\">GitHub</a>."
325
  msgstr ""
326
 
327
+ #: app/helper/BPMediaAdminWidget.php:29
328
+ msgid "Argument missing. id is required."
329
  msgstr ""
330
 
331
+ #: app/helper/BPMediaSupport.php:50
332
+ msgid "Debug info"
333
  msgstr ""
334
 
335
+ #: app/helper/BPMediaSupport.php:81
336
+ msgid "Submit a Bug Report"
337
  msgstr ""
338
 
339
+ #: app/helper/BPMediaSupport.php:84
340
+ msgid "Submit a New Feature Request"
 
 
341
  msgstr ""
342
 
343
+ #: app/helper/BPMediaSupport.php:87
344
+ msgid "Submit a Premium Support Request"
 
345
  msgstr ""
346
 
347
+ #: app/helper/BPMediaSupport.php:95
348
+ msgid "Name"
 
 
349
  msgstr ""
350
 
351
+ #: app/helper/BPMediaSupport.php:98
352
+ msgid "Email"
353
  msgstr ""
354
 
355
+ #: app/helper/BPMediaSupport.php:101
356
+ msgid "Website"
 
 
357
  msgstr ""
358
 
359
+ #: app/helper/BPMediaSupport.php:104
360
+ msgid "Phone"
 
361
  msgstr ""
362
 
363
+ #: app/helper/BPMediaSupport.php:107
364
+ msgid "Subject"
 
365
  msgstr ""
366
 
367
+ #: app/helper/BPMediaSupport.php:110
368
+ msgid "Details"
 
369
  msgstr ""
370
 
371
+ #: app/helper/BPMediaSupport.php:121
372
+ msgid "Additional Information"
373
  msgstr ""
374
 
375
+ #: app/helper/BPMediaSupport.php:126
376
+ msgid "Your WP Admin Login:"
377
  msgstr ""
378
 
379
+ #: app/helper/BPMediaSupport.php:129
380
+ msgid "Your WP Admin password:"
 
381
  msgstr ""
382
 
383
+ #: app/helper/BPMediaSupport.php:132
384
+ msgid "Your SSH / FTP host:"
 
 
 
 
 
 
385
  msgstr ""
386
 
387
+ #: app/helper/BPMediaSupport.php:135
388
+ msgid "Your SSH / FTP login:"
389
  msgstr ""
390
 
391
+ #: app/helper/BPMediaSupport.php:138
392
+ msgid "Your SSH / FTP password:"
393
  msgstr ""
394
 
395
+ #: app/helper/BPMediaSupport.php:161
396
+ msgid "BuddyPress Media Premium Support Request from"
397
  msgstr ""
398
 
399
+ #: app/helper/BPMediaSupport.php:164
400
+ msgid "BuddyPress Media New Feature Request from"
 
401
  msgstr ""
402
 
403
+ #: app/helper/BPMediaSupport.php:167
404
+ msgid "BuddyPress Media Bug Report from"
405
+ msgstr ""
406
+
407
+ #: app/helper/BPMediaSupport.php:170
408
+ msgid "BuddyPress Media Contact from"
409
+ msgstr ""
410
+
411
+ #: app/helper/BPMediaSupport.php:231
412
+ msgid "Debug Info"
413
+ msgstr ""
414
+
415
+ #: app/helper/BPMediaSupport.php:246
416
+ msgid "Thank you for your Feedback/Suggestion."
417
+ msgstr ""
418
+
419
+ #: app/helper/BPMediaSupport.php:248
420
+ msgid "Thank you for posting your support request."
421
+ msgstr ""
422
+
423
+ #: app/helper/BPMediaSupport.php:249
424
+ msgid "We will get back to you shortly."
425
+ msgstr ""
426
+
427
+ #: app/helper/BPMediaSupport.php:252
428
+ msgid "Your server failed to send an email."
429
+ msgstr ""
430
+
431
+ #: app/helper/BPMediaSupport.php:253
432
+ msgid "Kindly contact your server support to fix this."
433
+ msgstr ""
434
+
435
+ #: app/helper/BPMediaSupport.php:254
436
+ #, php-format
437
+ msgid "You can alternatively create a support request <a href=\"%s\">here</a>"
438
+ msgstr ""
439
+
440
+ #: app/helper/BPMediaAddon.php:29
441
+ msgid "BuddyPress-Media Photo Tagging"
442
+ msgstr ""
443
+
444
+ #: app/helper/BPMediaAddon.php:32
445
+ #: app/helper/BPMediaAddon.php:42
446
+ #: app/importers/BPMediaAlbumimporter.php:176
447
+ msgid "BuddyPress Media Instagram adds Instagram like filters to images uploaded with BuddyPress Media."
448
+ msgstr ""
449
+
450
+ #: app/helper/BPMediaAddon.php:33
451
+ #: app/helper/BPMediaAddon.php:43
452
+ #: app/importers/BPMediaAlbumimporter.php:177
453
+ msgid "Important"
454
+ msgstr ""
455
+
456
+ #: app/helper/BPMediaAddon.php:33
457
+ #: app/helper/BPMediaAddon.php:43
458
+ #: app/importers/BPMediaAlbumimporter.php:177
459
+ msgid "You need to have ImageMagick installed on your server for this addon to work."
460
+ msgstr ""
461
+
462
+ #: app/helper/BPMediaAddon.php:39
463
+ msgid "BuddyPress-Media Instagram"
464
+ msgstr ""
465
+
466
+ #: app/helper/BPMediaAddon.php:49
467
+ msgid "BuddyPress-Media Kaltura Add-on"
468
+ msgstr ""
469
+
470
+ #: app/helper/BPMediaAddon.php:52
471
+ msgid "Add support for more video formats using Kaltura video solution."
472
+ msgstr ""
473
+
474
+ #: app/helper/BPMediaAddon.php:53
475
+ msgid "Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise."
476
+ msgstr ""
477
+
478
+ #: app/helper/BPMediaAddon.php:59
479
+ msgid "BuddyPress-Media FFMPEG Add-on"
480
+ msgstr ""
481
+
482
+ #: app/helper/BPMediaAddon.php:62
483
+ msgid "Add supports for more audio & video formats using open-source media-node."
484
+ msgstr ""
485
+
486
+ #: app/helper/BPMediaAddon.php:63
487
+ msgid "Media node comes with automated setup script for Ubuntu/Debian."
488
+ msgstr ""
489
+
490
+ #: app/helper/BPMediaAddon.php:109
491
+ #: app/importers/BPMediaAlbumimporter.php:181
492
+ msgid "Buy Now"
493
+ msgstr ""
494
+
495
+ #: app/helper/BPMediaAddon.php:110
496
+ #: app/importers/BPMediaAlbumimporter.php:182
497
+ msgid "Live Demo"
498
+ msgstr ""
499
+
500
+ #: app/admin/BPMediaAdmin.php:68
501
+ msgid "Please do not refresh this page."
502
+ msgstr ""
503
+
504
+ #: app/admin/BPMediaAdmin.php:69
505
+ msgid "Something went wronng. Please <a href onclick=\"location.reload();\">refresh</a> page."
506
+ msgstr ""
507
+
508
+ #: app/admin/BPMediaAdmin.php:88
509
+ msgid "BuddyPress Media Component"
510
+ msgstr ""
511
+
512
+ #: app/admin/BPMediaAdmin.php:88
513
+ #: app/admin/BPMediaAdmin.php:212
514
+ #: app/admin/BPMediaAdmin.php:213
515
+ msgid "BuddyPress Media"
516
+ msgstr ""
517
+
518
+ #: app/admin/BPMediaAdmin.php:89
519
+ #: app/admin/BPMediaAdmin.php:240
520
+ msgid "BuddyPress Media Settings"
521
+ msgstr ""
522
+
523
+ #: app/admin/BPMediaAdmin.php:89
524
+ #: app/admin/BPMediaAdmin.php:241
525
+ #: app/main/BuddyPressMedia.php:443
526
+ msgid "Settings"
527
+ msgstr ""
528
+
529
+ #: app/admin/BPMediaAdmin.php:91
530
+ msgid "BuddyPress Media Database Update"
531
+ msgstr ""
532
+
533
+ #: app/admin/BPMediaAdmin.php:94
534
+ #: app/admin/BPMediaAdmin.php:270
535
+ #: app/admin/BPMediaAdmin.php:271
536
+ msgid "Importer"
537
+ msgstr ""
538
+
539
+ #: app/admin/BPMediaAdmin.php:96
540
+ #: app/admin/BPMediaAdmin.php:247
541
+ msgid "BuddyPress Media Addons"
542
+ msgstr ""
543
+
544
+ #: app/admin/BPMediaAdmin.php:96
545
+ #: app/admin/BPMediaAdmin.php:248
546
+ msgid "Addons"
547
+ msgstr ""
548
+
549
+ #: app/admin/BPMediaAdmin.php:97
550
+ #: app/admin/BPMediaAdmin.php:254
551
+ msgid "BuddyPress Media Support"
552
+ msgstr ""
553
+
554
+ #: app/admin/BPMediaAdmin.php:97
555
+ msgid "Support "
556
+ msgstr ""
557
+
558
+ #: app/admin/BPMediaAdmin.php:99
559
+ msgid "BuddyPress Media Convert Videos"
560
+ msgstr ""
561
+
562
+ #: app/admin/BPMediaAdmin.php:99
563
+ #: app/admin/BPMediaAdmin.php:263
564
+ msgid "Convert Videos"
565
+ msgstr ""
566
+
567
+ #: app/admin/BPMediaAdmin.php:160
568
+ #: app/importers/BPMediaAlbumimporter.php:91
569
+ #: app/main/BPMediaComponent.php:298
570
+ #: app/main/BPMediaComponent.php:299
571
+ #: app/main/BPMediaComponent.php:305
572
+ #: app/main/BuddyPressMedia.php:301
573
+ #: app/main/BuddyPressMedia.php:304
574
+ msgid "Media"
575
+ msgstr ""
576
+
577
+ #: app/admin/BPMediaAdmin.php:182
578
+ msgid "By"
579
+ msgstr ""
580
+
581
+ #: app/admin/BPMediaAdmin.php:182
582
+ msgid "Empowering The Web With WordPress"
583
+ msgstr ""
584
+
585
+ #: app/admin/BPMediaAdmin.php:262
586
+ msgid "BuddyPress Media Covert Videos"
587
+ msgstr ""
588
+
589
+ #: app/admin/BPMediaAdmin.php:363
590
+ #, php-format
591
+ msgid "I use @buddypressmedia http://goo.gl/8Upmv on %s"
592
+ msgstr ""
593
+
594
+ #: app/admin/BPMediaAdmin.php:364
595
+ msgid "Add link to footer"
596
  msgstr ""
597
 
598
  #: app/admin/BPMediaAdmin.php:365
782
  msgid "<a href=\"%s\">Create an issue</a> on GitHub requesting the same."
783
  msgstr ""
784
 
785
+ #: app/main/BPMediaComponent.php:60
786
+ msgid "Search Media..."
787
+ msgstr ""
788
+
789
+ #: app/main/BPMediaComponent.php:256
790
+ #: app/main/BPMediaComponent.php:268
791
+ #: app/main/BuddyPressMedia.php:327
792
+ msgid "Albums"
793
+ msgstr ""
794
+
795
+ #: app/main/BPMediaComponent.php:257
796
+ #: app/main/BuddyPressMedia.php:330
797
+ msgid "Album"
798
+ msgstr ""
799
+
800
+ #: app/main/BPMediaComponent.php:258
801
+ #: app/main/profile/BPMediaTemplate.php:89
802
+ #: app/main/profile/BPMediaTemplate.php:282
803
+ msgid "Create"
804
+ msgstr ""
805
+
806
+ #: app/main/BPMediaComponent.php:259
807
+ #: app/main/profile/BPMediaTemplate.php:268
808
+ #: app/main/profile/BPMediaTemplate.php:274
809
+ msgid "Create Album"
810
+ msgstr ""
811
+
812
+ #: app/main/BPMediaComponent.php:260
813
+ #: app/main/profile/BPMediaAlbumScreen.php:246
814
+ msgid "Edit Album"
815
+ msgstr ""
816
+
817
+ #: app/main/BPMediaComponent.php:261
818
+ msgid "New Album"
819
+ msgstr ""
820
+
821
+ #: app/main/BPMediaComponent.php:262
822
+ msgid "All Albums"
823
+ msgstr ""
824
+
825
+ #: app/main/BPMediaComponent.php:263
826
+ msgid "View Album"
827
+ msgstr ""
828
+
829
+ #: app/main/BPMediaComponent.php:264
830
+ msgid "Search Albums"
831
+ msgstr ""
832
+
833
+ #: app/main/BPMediaComponent.php:265
834
+ msgid "No album found"
835
+ msgstr ""
836
+
837
+ #: app/main/BPMediaComponent.php:266
838
+ msgid "No album found in Trash"
839
+ msgstr ""
840
+
841
+ #: app/main/BPMediaComponent.php:300
842
+ msgid "Add New Media"
843
+ msgstr ""
844
+
845
+ #: app/main/BPMediaComponent.php:308
846
+ msgid "BuddyPress Media's Media Files"
847
+ msgstr ""
848
+
849
  #: app/main/BPMediaGroupLoader.php:252
850
  msgid "Media Settings"
851
  msgstr ""
880
  msgid "Music"
881
  msgstr ""
882
 
 
 
 
 
 
 
 
 
 
 
 
883
  #: app/main/BuddyPressMedia.php:333
884
  msgid "Upload"
885
  msgstr ""
903
  "\t\t\t\t\t\t\t\t\t<a class=\"alignright\" href=\"%1$s\">X</a>"
904
  msgstr ""
905
 
906
+ #: app/main/profile/BPMediaTemplate.php:29
907
+ msgid "Wall Posts"
908
  msgstr ""
909
 
910
+ #: app/main/profile/BPMediaTemplate.php:44
911
+ msgid "Select Album: "
912
  msgstr ""
913
 
914
+ #: app/main/profile/BPMediaTemplate.php:83
915
+ msgid "+ Create New Album"
916
  msgstr ""
917
 
918
+ #: app/main/profile/BPMediaTemplate.php:90
919
+ msgid "Cancel"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
920
  msgstr ""
921
 
922
+ #: app/main/profile/BPMediaTemplate.php:93
923
+ msgid "&"
924
  msgstr ""
925
 
926
+ #: app/main/profile/BPMediaTemplate.php:96
927
+ msgid "Drop files here"
928
  msgstr ""
929
 
930
+ #: app/main/profile/BPMediaTemplate.php:97
931
+ msgid " or "
932
  msgstr ""
933
 
934
+ #: app/main/profile/BPMediaTemplate.php:98
935
+ #: app/main/profile/BPMediaUploadScreen.php:33
936
+ msgid "Upload Media"
937
  msgstr ""
938
 
939
+ #: app/main/profile/BPMediaTemplate.php:98
940
+ msgid "Max Upload Size"
941
  msgstr ""
942
 
943
+ #: app/main/profile/BPMediaTemplate.php:213
944
+ msgid "Show More"
945
  msgstr ""
946
 
947
+ #: app/main/profile/BPMediaTemplate.php:246
948
+ msgid "Select Album"
949
  msgstr ""
950
 
951
+ #: app/main/profile/BPMediaTemplate.php:247
952
+ #: app/main/profile/BPMediaTemplate.php:275
953
+ msgid "x"
954
  msgstr ""
955
 
956
+ #: app/main/profile/BPMediaTemplate.php:267
957
+ msgid "Select"
958
  msgstr ""
959
 
960
+ #: app/main/profile/BPMediaTemplate.php:278
961
+ msgid "Album Name"
962
  msgstr ""
963
 
964
+ #: app/main/profile/BPMediaTemplate.php:286
965
+ msgid "Add Media"
966
  msgstr ""
967
 
968
+ #: app/main/profile/BPMediaScreen.php:114
969
+ #: app/main/profile/BPMediaScreen.php:374
970
+ msgid "The requested url does not exist"
971
  msgstr ""
972
 
973
+ #: app/main/profile/BPMediaScreen.php:125
974
+ #, php-format
975
+ msgid "All %s"
976
  msgstr ""
977
 
978
+ #: app/main/profile/BPMediaScreen.php:196
979
+ #: app/main/profile/BPMediaAlbumScreen.php:82
980
  #, php-format
981
+ msgid "Sorry, no %s were found."
982
  msgstr ""
983
 
984
+ #: app/main/profile/BPMediaScreen.php:307
985
  #, php-format
986
+ msgid "Edit %s"
987
  msgstr ""
988
 
989
+ #: app/main/profile/BPMediaScreen.php:328
990
  #, php-format
991
+ msgid "%s Title"
992
  msgstr ""
993
 
994
+ #: app/main/profile/BPMediaScreen.php:334
995
  #, php-format
996
+ msgid "%s Description"
997
  msgstr ""
998
 
999
+ #: app/main/profile/BPMediaScreen.php:342
1000
+ msgid "Update"
1001
  msgstr ""
1002
 
1003
+ #: app/main/profile/BPMediaScreen.php:343
1004
+ msgid "Back to Media File"
1005
  msgstr ""
1006
 
1007
+ #: app/main/profile/BPMediaScreen.php:344
1008
+ msgid "Back to Media"
1009
  msgstr ""
1010
 
1011
+ #: app/main/profile/BPMediaScreen.php:367
1012
+ msgid "You do not have access to this page."
1013
  msgstr ""
1014
 
1015
+ #: app/main/profile/BPMediaScreen.php:396
1016
+ msgid "Media deleted successfully"
1017
  msgstr ""
1018
 
1019
+ #: app/main/profile/BPMediaUploadScreen.php:71
1020
+ msgid "You are not allowed to be here"
1021
  msgstr ""
1022
 
1023
+ #: app/main/profile/BPMediaUploadScreen.php:98
1024
+ #: app/main/profile/BPMediaUploadScreen.php:122
1025
+ msgid "File uploaded is not supported"
1026
  msgstr ""
1027
 
1028
+ #: app/main/profile/BPMediaUploadScreen.php:105
1029
+ msgid "Image uploads are disabled"
1030
  msgstr ""
1031
 
1032
+ #: app/main/profile/BPMediaUploadScreen.php:111
1033
+ msgid "Video uploads are disabled"
1034
  msgstr ""
1035
 
1036
+ #: app/main/profile/BPMediaUploadScreen.php:117
1037
+ msgid "Audio uploads are disabled"
1038
  msgstr ""
1039
 
1040
+ #: app/main/profile/BPMediaUploadScreen.php:135
1041
+ msgid "Upload Successful"
1042
  msgstr ""
1043
 
1044
+ #: app/main/profile/BPMediaUploadScreen.php:140
1045
+ msgid "You did not specified a file to upload"
 
1046
  msgstr ""
1047
 
1048
+ #: app/main/profile/BPMediaAlbumScreen.php:134
1049
+ msgid "Sorry, no media items were found in this album."
1050
  msgstr ""
1051
 
1052
+ #: app/main/profile/BPMediaAlbumScreen.php:246
1053
+ msgid "Edit"
1054
  msgstr ""
1055
 
1056
+ #: app/main/profile/BPMediaAlbumScreen.php:250
1057
+ #: app/main/profile/BPMediaAlbumScreen.php:258
1058
+ msgid "Delete Album"
1059
  msgstr ""
1060
 
1061
+ #: app/main/profile/BPMediaAlbumScreen.php:252
1062
+ msgid "Delete"
1063
  msgstr ""
1064
 
1065
+ #: app/main/profile/BPMediaAlbumScreen.php:254
1066
+ #: app/main/profile/BPMediaAlbumScreen.php:297
1067
+ msgid "Select All Visible"
1068
  msgstr ""
1069
 
1070
+ #: app/main/profile/BPMediaAlbumScreen.php:255
1071
+ #: app/main/profile/BPMediaAlbumScreen.php:298
1072
+ msgid "Unselect All Visible"
1073
  msgstr ""
1074
 
1075
+ #: app/main/profile/BPMediaAlbumScreen.php:256
1076
+ msgid "Delete Selected Media"
 
1077
  msgstr ""
1078
 
1079
+ #: app/main/profile/BPMediaAlbumScreen.php:295
1080
+ msgid "Move"
1081
  msgstr ""
1082
 
1083
+ #: app/main/profile/BPMediaAlbumScreen.php:299
1084
+ msgid "Move selected"
 
1085
  msgstr ""
1086
 
1087
+ #: app/main/profile/BPMediaAlbumScreen.php:299
1088
+ msgid "Move all"
1089
  msgstr ""
1090
 
1091
+ #: app/main/profile/BPMediaAlbumScreen.php:300
1092
+ msgid "to"
1093
  msgstr ""
1094
 
1095
+ #: app/main/profile/BPMediaAlbumScreen.php:300
1096
+ msgid "Submit"
1097
  msgstr ""
1098
 
1099
+ #: app/main/profile/BPMediaAlbum.php:74
1100
+ msgid "Sorry, the requested album does not exist."
1101
  msgstr ""
1102
 
1103
+ #: app/main/group/BPMediaGroupElementExtension.php:91
1104
+ msgid "Sorry, the requested media does not belong to the group"
1105
  msgstr ""
1106
 
 
 
1107
  #: app/main/group/BPMediaGroupAction.php:124
1108
+ #: app/main/includes/BPMediaHostWordpress.php:742
1109
  #, php-format
1110
  msgid "%1$s added a %2$s"
1111
  msgstr ""
1112
 
1113
+ #: app/main/group/BPMediaGroupsExtension.php:40
1114
+ #: app/main/group/BPMediaGroupsExtension.php:87
1115
+ msgid "Album Creation Control"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1116
  msgstr ""
1117
 
1118
+ #: app/main/group/BPMediaGroupsExtension.php:41
1119
+ #: app/main/group/BPMediaGroupsExtension.php:88
1120
+ msgid "Who can create Albums in this group?"
1121
  msgstr ""
1122
 
1123
+ #: app/main/group/BPMediaGroupsExtension.php:45
1124
+ #: app/main/group/BPMediaGroupsExtension.php:92
1125
+ msgid "All Group Members"
1126
  msgstr ""
1127
 
1128
+ #: app/main/group/BPMediaGroupsExtension.php:49
1129
+ #: app/main/group/BPMediaGroupsExtension.php:96
1130
+ msgid "Group Admins and Mods only"
1131
  msgstr ""
1132
 
1133
+ #: app/main/group/BPMediaGroupsExtension.php:53
1134
+ #: app/main/group/BPMediaGroupsExtension.php:100
1135
+ msgid "Group Admin only"
1136
  msgstr ""
1137
 
1138
+ #: app/main/group/BPMediaGroupsExtension.php:104
1139
+ #: app/main/privacy/BPMediaPrivacyScreen.php:53
1140
+ msgid "Save Changes"
1141
  msgstr ""
1142
 
1143
+ #: app/main/group/BPMediaGroupsExtension.php:130
1144
+ msgid "There was an error saving, please try again"
 
1145
  msgstr ""
1146
 
1147
+ #: app/main/group/BPMediaGroupsExtension.php:132
1148
+ msgid "Settings saved successfully"
1149
  msgstr ""
1150
 
1151
+ #: app/main/group/BPMediaGroupsExtension.php:153
1152
+ msgid ""
1153
+ "You could display a small snippet of information from your group extension here. It will show on the group\n"
1154
+ "\t home screen."
1155
  msgstr ""
1156
 
1157
+ #: app/main/activity/BPMediaActivity.php:46
1158
+ msgid "Attach Media"
1159
  msgstr ""
1160
 
1161
+ #: app/main/activity/BPMediaActivity.php:103
1162
+ msgid "View"
1163
  msgstr ""
1164
 
1165
+ #: app/main/activity/BPMediaActivity.php:161
1166
  #, php-format
1167
+ msgid "%1$s posted an update in the group %2$s"
1168
  msgstr ""
1169
 
1170
  #: app/main/widgets/BPMediaWidget.php:20
1228
  msgid "Show Videos"
1229
  msgstr ""
1230
 
1231
+ #: app/main/privacy/BPMediaPrivacySettings.php:28
1232
+ msgid "Update BuddyPress Media Database"
1233
  msgstr ""
1234
 
1235
+ #: app/main/privacy/BPMediaPrivacySettings.php:93
1236
+ msgid "Start"
 
1237
  msgstr ""
1238
 
1239
+ #: app/main/privacy/BPMediaPrivacy.php:113
1240
+ msgid "<strong>Private</strong>, Visible only to myself"
 
1241
  msgstr ""
1242
 
1243
+ #: app/main/privacy/BPMediaPrivacy.php:117
1244
+ msgid "<strong>Friends</strong>, Visible to my friends"
 
1245
  msgstr ""
1246
 
1247
+ #: app/main/privacy/BPMediaPrivacy.php:121
1248
+ msgid "<strong>Users</strong>, Visible to registered users"
 
1249
  msgstr ""
1250
 
1251
+ #: app/main/privacy/BPMediaPrivacy.php:125
1252
+ msgid "<strong>Public</strong>, Visible to the world"
 
1253
  msgstr ""
1254
 
1255
+ #: app/main/privacy/BPMediaPrivacy.php:145
1256
+ msgid "Set default privacy levels for your media"
1257
  msgstr ""
1258
 
1259
+ #: app/main/privacy/BPMediaPrivacy.php:326
1260
+ #, php-format
1261
+ msgid "This %s is private"
1262
  msgstr ""
1263
 
1264
+ #: app/main/privacy/BPMediaPrivacy.php:327
1265
+ #, php-format
1266
+ msgid "This %1s is visible only to %2s&rsquo;s friends"
 
1267
  msgstr ""
1268
 
1269
+ #: app/main/privacy/BPMediaPrivacy.php:328
1270
+ #, php-format
1271
+ msgid "This %s is visible to logged in users, only"
1272
  msgstr ""
1273
 
1274
+ #: app/main/privacy/BPMediaPrivacyScreen.php:42
1275
+ msgid "Default privacy level for your media has been updated"
1276
  msgstr ""
1277
 
1278
+ #: app/main/includes/BPMediaHostWordpress.php:59
1279
+ msgid "Sorry, the requested media does not exist."
1280
  msgstr ""
1281
 
1282
+ #: app/main/includes/BPMediaHostWordpress.php:137
1283
+ msgid "Error Uploading File"
1284
  msgstr ""
1285
 
1286
+ #: app/main/includes/BPMediaHostWordpress.php:170
1287
+ msgid "MP4 file you have uploaded is corrupt."
1288
  msgstr ""
1289
 
1290
+ #: app/main/includes/BPMediaHostWordpress.php:177
1291
+ #: app/main/includes/BPMediaHostWordpress.php:182
1292
+ msgid "The MP4 file you have uploaded is using an unsupported video codec. Supported video codec is H.264."
1293
  msgstr ""
1294
 
1295
+ #: app/main/includes/BPMediaHostWordpress.php:187
1296
+ msgid "The MP4 file you have uploaded is not a video file."
1297
  msgstr ""
1298
 
1299
+ #: app/main/includes/BPMediaHostWordpress.php:198
1300
+ msgid "MP3 file you have uploaded is currupt."
1301
  msgstr ""
1302
 
1303
+ #: app/main/includes/BPMediaHostWordpress.php:205
1304
+ #: app/main/includes/BPMediaHostWordpress.php:210
1305
+ msgid "The MP3 file you have uploaded is using an unsupported audio format. Supported audio format is MP3."
1306
  msgstr ""
1307
 
1308
+ #: app/main/includes/BPMediaHostWordpress.php:215
1309
+ msgid "The MP3 file you have uploaded is not an audio file."
 
1310
  msgstr ""
1311
 
1312
+ #: app/main/includes/BPMediaHostWordpress.php:227
1313
+ msgid "Media File you have tried to upload is not supported. Supported media files are .jpg, .png, .gif, .mp3, .mov and .mp4."
1314
  msgstr ""
1315
 
1316
+ #: app/main/includes/BPMediaHostWordpress.php:236
1317
+ msgid "Error creating attachment for the media file, please try again"
1318
  msgstr ""
1319
 
1320
+ #: app/main/includes/BPMediaHostWordpress.php:346
1321
+ #, php-format
1322
+ msgid "%s uploaded a media."
1323
  msgstr ""
1324
 
1325
+ #: app/main/includes/BPMediaHostWordpress.php:367
1326
+ msgid "Uploaded by "
1327
+ msgstr ""
1328
+
1329
+ #: app/main/includes/BPMediaHostWordpress.php:590
1330
  #, php-format
1331
+ msgid "Comment <span>%s</span>"
1332
  msgstr ""
1333
 
1334
+ #: app/main/includes/BPMediaHostWordpress.php:594
1335
+ msgid "Favorite"
1336
  msgstr ""
1337
 
1338
+ #: app/main/includes/BPMediaHostWordpress.php:596
1339
+ msgid "Remove Favorite"
 
1340
  msgstr ""
1341
 
1342
+ #: app/main/includes/BPMediaHostWordpress.php:615
1343
+ msgid "Post"
 
1344
  msgstr ""
1345
 
1346
+ #: app/main/includes/BPMediaHostWordpress.php:615
1347
+ msgid "or press esc to cancel."
 
1348
  msgstr ""
1349
 
1350
+ #: app/main/includes/BPMediaTemplateFunctions.php:34
1351
+ msgid "Media Title"
1352
  msgstr ""
1353
 
1354
+ #: app/main/includes/BPMediaTemplateFunctions.php:35
1355
+ msgid "Media Description"
1356
  msgstr ""
1357
 
1358
+ #: app/main/includes/BPMediaTemplateFunctions.php:36
1359
+ msgid "Select Media File"
1360
  msgstr ""
1361
 
1362
+ #: app/main/includes/BPMediaFunction.php:229
1363
+ #, php-format
1364
+ msgid "%1$s added new media in album %2$s"
1365
  msgstr ""
1366
 
1367
+ #: app/main/includes/BPMediaFilters.php:158
1368
+ #, php-format
1369
+ msgid "Delete %s"
1370
  msgstr ""
1371
 
1372
+ #: app/main/includes/BPMediaFilters.php:410
1373
+ msgid "Total Photos"
1374
  msgstr ""
1375
 
1376
+ #: app/main/includes/BPMediaFilters.php:411
1377
+ msgid "Total Videos"
 
1378
  msgstr ""
1379
 
1380
+ #: app/main/includes/BPMediaFilters.php:412
1381
+ msgid "Total Audio"
 
1382
  msgstr ""
1383
 
1384
+ #: app/main/includes/BPMediaFilters.php:413
1385
+ msgid "Total Albums"
 
1386
  msgstr ""
1387
 
1388
+ #: app/main/includes/BPMediaActions.php:183
1389
+ msgid "Something went wrong. Please try again."
 
1390
  msgstr ""
1391
 
1392
+ #: app/main/includes/BPMediaActions.php:184
1393
+ msgid "Are you sure you want to merge this album?"
 
1394
  msgstr ""
1395
 
1396
+ #: app/main/includes/BPMediaActions.php:185
1397
+ msgid "Would you like to delete this album after the merge?"
1398
  msgstr ""
1399
 
1400
+ #: app/main/includes/BPMediaActions.php:186
1401
+ msgid "Are you sure you want to delete the selected media?"
1402
  msgstr ""
1403
 
1404
+ #: app/main/includes/BPMediaActions.php:187
1405
+ msgid "Are you sure you want to delete this activity and associated media?"
1406
  msgstr ""
1407
 
1408
+ #: app/main/includes/BPMediaActions.php:188
1409
+ msgid "Are you sure?"
1410
  msgstr ""
1411
 
1412
+ #: app/main/includes/BPMediaActions.php:189
1413
+ msgid "Please select media."
1414
  msgstr ""
1415
 
1416
+ #: app/main/includes/BPMediaActions.php:190
1417
+ msgid "Please select an action."
1418
  msgstr ""
1419
 
1420
+ #: app/main/includes/BPMediaActions.php:330
1421
+ msgid "Download"
1422
  msgstr ""
1423
 
1424
+ #: app/main/includes/BPMediaActions.php:337
1425
+ #: app/main/includes/BPMediaActions.php:971
1426
+ msgid "Set as Album Cover"
1427
+ msgstr ""
1428
+
1429
+ #: app/main/includes/BPMediaActions.php:342
1430
+ #: app/main/includes/BPMediaActions.php:974
1431
+ msgid "Unset as Album Cover"
1432
+ msgstr ""
1433
+
1434
+ #: app/main/includes/BPMediaActions.php:348
1435
+ msgid "Edit Media"
1436
+ msgstr ""
1437
+
1438
+ #: app/main/includes/BPMediaActions.php:529
1439
+ msgid "You have not filled the album name"
1440
+ msgstr ""
1441
+
1442
+ #: app/main/includes/BPMediaActions.php:530
1443
+ msgid "Sorry you cannot create albums in this group"
1444
+ msgstr ""
1445
+
1446
+ #: app/main/includes/BPMediaActions.php:531
1447
+ msgid "Please Select an Album !!"
1448
+ msgstr ""
1449
+
1450
+ #: app/main/includes/BPMediaActions.php:874
1451
  #, php-format
1452
+ msgid "%1$s created an album %2$s"
1453
+ msgstr ""
1454
+
1455
+ #: app/main/includes/BPMediaActions.php:1163
1456
+ msgid "Private"
1457
+ msgstr ""
1458
+
1459
+ #: app/main/includes/BPMediaActions.php:1175
1460
+ msgid "No media found"
1461
  msgstr ""
1462
 
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.5 + BuddyPress 1.6
8
  Tested up to: WordPress 3.5 + BuddyPress 1.7
9
- Stable tag: 2.10.1
10
 
11
  Adds Photos, Music, Videos & Albums to BuddyPress. Supports mobile devices (iPhone/iPad, etc) and automatic audio/video conversion.
12
 
@@ -15,11 +15,12 @@ Adds Photos, Music, Videos & Albums to BuddyPress. Supports mobile devices (iPho
15
  BuddyPress Media adds Photos, Music, Videos & Albums to your BuddyPress powered social network. Supports mobile devices (Android/iPhone/iPad, etc) and automatic audio/video conversion.
16
 
17
  = Demo & Code =
18
- * [BuddyPress Media **Demo**](http://demo.rtcamp.com/buddypress-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media) (Stand-alone)
19
- * [BuddyPress Media Kaltura Add-on](http://demo.rtcamp.com/bpm-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
20
- * [BuddyPress Media FFMPEG Add-on](http://demo.rtcamp.com/bpm-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
21
 
22
- * [Fork BuddyPress Media on **GitHub**](http://github.com/rtCamp/buddypress-media/)
 
23
 
24
  = Features =
25
 
@@ -36,6 +37,8 @@ BuddyPress Media adds Photos, Music, Videos & Albums to your BuddyPress powered
36
  * **HTML5 playback**: with fall back to flash/silverlight player support
37
  * **Privacy**: Users can control access to their uploaded media
38
  * **Shortcode**: Display public media of all the users on the site
 
 
39
  * **Automatic conversion** (*premium*): of common audio & video formats to mp3/mp4 via [Kaltura Add-On](http://rtcamp.com/store/buddypress-media-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version"), and [FFMPEG Add-On](http://rtcamp.com/store/buddypress-media-ffmpeg/ "BuddyPress Media FFMPEG Addon")
40
 
41
  = Roadmap =
@@ -43,31 +46,20 @@ BuddyPress Media adds Photos, Music, Videos & Albums to your BuddyPress powered
43
  [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-media/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit BuddyPress Media's Roadmap page")
44
 
45
  * **Importers**: Site admins will be able to import media from other media plugins for BuddyPress
46
- * **Video conversion service** integration [*new*]: Videos can be converted via a service without installing or configuring anything on your server.
47
  * **External media** support: Users will be able to add external media using url
48
  * **Flagging** and **report abuse**: To auto moderate spam/inappropriate media
49
- * **Enhanced media management**: including sorting, moving media between albums, etc
50
-
51
- = Addons (Premium) =
52
-
53
- [**BuddyPress-Media Kaltura addon**](http://rtcamp.com/store/buddypress-media-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version")
54
-
55
- * Adds support for additional video formats including *.avi, *.mkv, *.asf, *.flv, *.wmv, *.rm, *.mpg.
56
- * You can use Kaltura.com/Kaltura On-Prem or self-hosted Kaltura-CE server with this.
57
 
58
- Available [here](http://rtcamp.com/store/buddypress-media-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version")
59
 
60
- [**BuddyPress-Media FFMPEG addon**](http://rtcamp.com/store/buddypress-media-ffmpeg-converter/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media FFMPEG Addon").
61
-
62
- * Adds support for additional video formats including *.avi, *.mkv, *.asf, *.flv, *.wmv, *.rm, *.mpg.
63
- * Adds support for additional audio formats including *.mp3, *.ogg, *.wav, *.aac, *.m4a, *.wma.
64
-
65
- Available [here](http://rtcamp.com/store/buddypress-media-ffmpeg-converter/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media FFMPEG Addon").
66
 
67
  **Coming Soon**
68
 
69
- * **Instagram filters** [*new*] (*premium*): Users will be able to apply Instagram like effects to uploaded images.
70
- * **Photo tagging** [*new*] (*premium*): Users will be able to tag themselves and friends on the uploaded images.
71
  * **Membership Addon** (*premium*): Users can be given controlled upload quotas and media type access on their profiles and groups.
72
 
73
  = Support =
@@ -75,14 +67,14 @@ Available [here](http://rtcamp.com/store/buddypress-media-ffmpeg-converter/?utm_
75
  **Important:** Please provide a **URL** of the site/web page when requesting support.
76
 
77
  * If you find something wrong on your site and feel it is due to BuddyPress Media:
78
- * [**rtCamp** Support Forum](http://rtcamp.com/support/forum/buddypress-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
79
 
80
  * If you are a developer and/or tester or would like to request a new feature:
81
  * [**GitHub** development issue log](http://github.com/rtCamp/buddypress-media/issues)
82
 
83
  = Translation =
84
 
85
- BuddyPress Media is now available in *Brazilian Portuguese*, *Spanish*, *Japanese*, *Polish* and *Serbian*. 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.
86
 
87
  * [Brazilian Portuguese](https://rtcamp.com/translate/projects/buddypress-media/pt-br/default) translation by [Jose Fabiosan](http://profiles.wordpress.org/josefabiosan/) and [doutorsocrates](http://profiles.wordpress.org/doutorsocrates/)
88
  * [Spanish](https://rtcamp.com/translate/projects/buddypress-media/es/default) translation by [Andrés Felipe](http://profiles.wordpress.org/naturalworldstm/)
@@ -91,6 +83,8 @@ BuddyPress Media is now available in *Brazilian Portuguese*, *Spanish*, *Japanes
91
  * [Serbian](https://rtcamp.com/translate/projects/buddypress-media/sr/default) translation by [nikolakica](http://profiles.wordpress.org/nikolakica/)
92
  * [German](https://rtcamp.com/translate/projects/buddypress-media/de/default) translation by [hannes.muc]
93
  * [French](https://rtcamp.com/translate/projects/buddypress-media/fr/default) translation by [Peter Lewit](http://profiles.wordpress.org/deegan)
 
 
94
 
95
  (**Note**: Credits are given for translations that are at least 50% complete.)
96
 
@@ -125,6 +119,13 @@ Please visit [BuddyPress Media's Features page](http://rtcamp.com/buddypress-med
125
 
126
  Please visit [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-media/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit BuddyPress Media's Features page") to get some details about future releases.
127
 
 
 
 
 
 
 
 
128
  = 2.10.1 =
129
  * Fixes bug in shortcode
130
 
@@ -377,5 +378,5 @@ Please visit [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-medi
377
  * HTML5 Video Tag Support (with fallback)
378
 
379
  == Upgrade Notice ==
380
- = 2.10.1 =
381
- Adds album management options (Merge/Move/Delete), shortcode to display media
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.5 + BuddyPress 1.6
8
  Tested up to: WordPress 3.5 + BuddyPress 1.7
9
+ Stable tag: 2.10.2
10
 
11
  Adds Photos, Music, Videos & Albums to BuddyPress. Supports mobile devices (iPhone/iPad, etc) and automatic audio/video conversion.
12
 
15
  BuddyPress Media adds Photos, Music, Videos & Albums to your BuddyPress powered social network. Supports mobile devices (Android/iPhone/iPad, etc) and automatic audio/video conversion.
16
 
17
  = Demo & Code =
18
+ * [BuddyPress Media **Demo**](http://demo.rtcamp.com/buddypress-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media) (Stand-alone, includes Instagram and Photo tagging addon)
19
+ * [BuddyPress Media Kaltura Add-on](http://demo.rtcamp.com/bpm-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
20
+ * [BuddyPress Media FFMPEG Add-on](http://demo.rtcamp.com/bpm-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
21
 
22
+
23
+ [Fork BuddyPress Media on **GitHub**](http://github.com/rtCamp/buddypress-media/)
24
 
25
  = Features =
26
 
37
  * **HTML5 playback**: with fall back to flash/silverlight player support
38
  * **Privacy**: Users can control access to their uploaded media
39
  * **Shortcode**: Display public media of all the users on the site
40
+ * **Enhanced media management**: including sorting, moving media between albums, etc
41
+ * **Advanced Image Editor**: Use the Dashboard media editor on the front-end!
42
  * **Automatic conversion** (*premium*): of common audio & video formats to mp3/mp4 via [Kaltura Add-On](http://rtcamp.com/store/buddypress-media-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version"), and [FFMPEG Add-On](http://rtcamp.com/store/buddypress-media-ffmpeg/ "BuddyPress Media FFMPEG Addon")
43
 
44
  = Roadmap =
46
  [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-media/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit BuddyPress Media's Roadmap page")
47
 
48
  * **Importers**: Site admins will be able to import media from other media plugins for BuddyPress
 
49
  * **External media** support: Users will be able to add external media using url
50
  * **Flagging** and **report abuse**: To auto moderate spam/inappropriate media
 
 
 
 
 
 
 
 
51
 
52
+ = Premium Addons =
53
 
54
+ * [**BuddyPress-Media Kaltura addon**](http://rtcamp.com/store/buddypress-media-kaltura/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version"): Adds support for additional browser-unsupported audio/video formats via Kaltura.com/Kaltura On-Prem or self-hosted Kaltura-CE servers.
55
+ * [**BuddyPress-Media FFMPEG addon**](http://rtcamp.com/store/buddypress-media-ffmpeg-converter/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media FFMPEG Addon"): Adds support for additional browser-unsupported audio/video formats via self hosted FFMPEG
56
+ * [**BuddyPress-Media Instagram**](http://rtcamp.com/store/buddypress-media-instagram/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media FFMPEG Addon"): Adds Instagram like filters to photos.
57
+ * [**BuddyPress-Media Photo Tagging**](http://rtcamp.com/store/buddypress-media-photo-tagging/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "BuddyPress Media FFMPEG Addon"): Adds user tagging to photos.
 
 
58
 
59
  **Coming Soon**
60
 
61
+ * **Encoding Service** [*new*] (*premium*): Site owners will be able to get unsupported formats converted via this service, even on a shared hosting, without installing any additional software.
62
+ * **Watermark Addon** [*new*] (*premium*): Adds advanced, customised watermarks to photos.
63
  * **Membership Addon** (*premium*): Users can be given controlled upload quotas and media type access on their profiles and groups.
64
 
65
  = Support =
67
  **Important:** Please provide a **URL** of the site/web page when requesting support.
68
 
69
  * If you find something wrong on your site and feel it is due to BuddyPress Media:
70
+ * [**rtCamp** Support Forum](http://rtcamp.com/groups/buddypress-media/forum/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
71
 
72
  * If you are a developer and/or tester or would like to request a new feature:
73
  * [**GitHub** development issue log](http://github.com/rtCamp/buddypress-media/issues)
74
 
75
  = Translation =
76
 
77
+ BuddyPress Media includes [full translation support](https://rtcamp.com/tutorials/buddypress-media-translation/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media). Head over to the [translation project](http://rtcamp.com/translate/projects/buddypress-media/?utm_source=readme&utm_medium=plugin&utm_campaign=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.
78
 
79
  * [Brazilian Portuguese](https://rtcamp.com/translate/projects/buddypress-media/pt-br/default) translation by [Jose Fabiosan](http://profiles.wordpress.org/josefabiosan/) and [doutorsocrates](http://profiles.wordpress.org/doutorsocrates/)
80
  * [Spanish](https://rtcamp.com/translate/projects/buddypress-media/es/default) translation by [Andrés Felipe](http://profiles.wordpress.org/naturalworldstm/)
83
  * [Serbian](https://rtcamp.com/translate/projects/buddypress-media/sr/default) translation by [nikolakica](http://profiles.wordpress.org/nikolakica/)
84
  * [German](https://rtcamp.com/translate/projects/buddypress-media/de/default) translation by [hannes.muc]
85
  * [French](https://rtcamp.com/translate/projects/buddypress-media/fr/default) translation by [Peter Lewit](http://profiles.wordpress.org/deegan)
86
+ * [Persian](https://rtcamp.com/translate/projects/buddypress-media/fa/default) translation by [mahdiar](http://profiles.wordpress.org/mahdiar/)
87
+
88
 
89
  (**Note**: Credits are given for translations that are at least 50% complete.)
90
 
119
 
120
  Please visit [BuddyPress Media's Roadmap page](http://rtcamp.com/buddypress-media/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit BuddyPress Media's Features page") to get some details about future releases.
121
 
122
+ = 2.10.2 =
123
+ * Fixes a [bug in admin](https://github.com/rtCamp/buddypress-media/issues/264)
124
+ * Fixes text-domain issues
125
+ * Adds framework for notifications
126
+ * Adds support for Tagging Addon
127
+ * Updated translations, especially German and Persian
128
+
129
  = 2.10.1 =
130
  * Fixes bug in shortcode
131
 
378
  * HTML5 Video Tag Support (with fallback)
379
 
380
  == Upgrade Notice ==
381
+ = 2.10.2 =
382
+ Adds album management options (Merge/Move/Delete), shortcode to display media. Bug fixes.